.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 16px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    background-color: #fff;
}

.faq-tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* Gap between tab items */
    margin-bottom: 40px;
    flex-wrap: wrap;
    /* Allow tabs to wrap on smaller screens */
}

.faq-tab-item {
    padding: 15px 25px;
    background-color: #f4f4f4;
    /* Light grey background for tabs */
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* Icon above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
    /* Minimum width for each tab */
}

.faq-tab-item:hover,
.faq-tab-item.active {
    background-color: #e2e2e2;
    /* Slightly darker grey for hover/active */
    color: #000;
}

.faq-tab-icon {
    margin-bottom: 8px;
}

.faq-tab-icon img {
    width: auto;
    height: 40px;
    stroke: #555;
    /* Default icon color */
}

.faq-tab-item:hover .faq-tab-icon img,
.faq-tab-item.active .faq-tab-icon img {
    stroke: #000;
    /* Icon color for hover/active */
}

.faq-tab-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.faq-category-content {
    display: none;
    /* Hidden by default */
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 30px;
    /* Gap between columns */
    margin-top: 20px;
}

.faq-category-content.active {
    display: grid;
    /* Show active category */
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Gap between FAQ items within a column */
}

.faq-item {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    /* Separator line */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #000;
    /* Highlight on hover */
}

.faq-answer {
    font-size: 15px;
    color: #59595f;
    line-height: 1.7;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 0px;
}

.faq-item.open .faq-answer {
    padding: 0px 0px 20px 0px;
    /* Padding when open */
    max-height: 500px;
    /* Adjust as needed, should be larger than any possible answer */
}

.faq-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    position: relative;
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .faq-tabs-container {
        justify-content: flex-start;
        /* Align tabs to the start */
    }

    .faq-tab-item {
        min-width: 100px;
        padding: 12px 18px;
    }

    .faq-category-content {
        grid-template-columns: 1fr;
        /* Single column on tablets */
        gap: 0;
        /* Remove column gap, rely on item gap */
    }

    .faq-column {
        gap: 0;
        /* Remove gap, rely on item borders */
    }

    .faq-column:not(:last-child) .faq-item:last-child {
        /* Add bottom border if it's not the very last item on the page in single column view */
        border-bottom: 1px solid #e0e0e0;
    }

    .faq-column:last-child .faq-item:last-child {
        border-bottom: none;
    }

}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-tab-item {
        flex-basis: calc(33.333% - 10px);
        /* Adjust for 3 tabs per row roughly */
        min-width: auto;
        padding: 10px 15px;
    }

    .faq-tab-icon {
        /* width: 24px; */
        /* height: 24px; */
        margin-bottom: 6px;
    }

    .faq-tab-text {
        font-size: 13px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px 0;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-tabs-container {
        gap: 8px;
    }

    .faq-tab-item {
        flex-basis: calc(50% - 8px);
        /* Two tabs per row */
        padding: 10px;
    }

    .faq-tab-text {
        font-size: 12px;
    }
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 40px 0 0;
}

.site-footer {
    background: #fff !important;
}

.site-footer .footer-content {
    padding: 0 !important;
}

.container {
    max-width: 1680px;
    padding: 0;
}

.faq-subtitle {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-top: 20px;
}