.faq-hero {
    position: relative;
    padding: 100px 0 70px;
    background:
        linear-gradient(135deg, rgba(9, 90, 75, 0.93), rgba(0, 25, 97, 0.90)),
        url("../img/faq-banner.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%);
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.faq-hero__content h1 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.08;
    margin-bottom: 14px;
}

.faq-hero__content p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 650px;
    margin-bottom: 0;
    font-size: 1rem;
}

.faq-hero__meta {
    display: flex;
    justify-content: flex-end;
}

.faq-hero__stat {
    min-width: 220px;
    padding: 22px 22px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.faq-hero__stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 700;
}

.faq-hero__stat-value {
    display: block;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Exo", sans-serif;
}

.faq-main {
    background: #f7f9fc;
    padding-top: 52px;
    padding-bottom: 72px;
}

.faq-toolbar {
    margin-bottom: 26px;
}

.faq-search-wrap {
    position: relative;
    margin-bottom: 18px;
}

.faq-search-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 1.1rem;
}

#faqSearch {
    width: 100%;
    min-height: 54px;
    padding: 12px 16px 12px 46px;
    border: 1px solid #dbe5ee;
    background: #fff;
    color: #183247;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.04);
    outline: none;
}

#faqSearch:focus {
    border-color: #095a4b;
    box-shadow: 0 0 0 0.15rem rgba(9, 90, 75, 0.08);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-category-btn {
    border: 1px solid #dbe5ee;
    background: #fff;
    color: #25435c;
    font-weight: 600;
    padding: 10px 14px;
    transition: all 0.2s ease;
}

.faq-category-btn:hover,
.faq-category-btn.is-active {
    background: #095a4b;
    border-color: #095a4b;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 8px 22px rgba(20, 44, 88, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    text-align: left;
    color: #183247;
}

.faq-question__text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600;
}

.faq-question__icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe5ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #095a4b;
    transition: all 0.2s ease;
}

.faq-question__icon i {
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid transparent;
}

.faq-answer__inner {
    padding: 0 24px 22px;
}

.faq-answer__category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: #f2f7fb;
    color: #095a4b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-answer p {
    margin-bottom: 0;
    color: #667085;
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    border-top-color: #eef3f7;
}

.faq-item.is-open .faq-question__icon {
    background: #095a4b;
    border-color: #095a4b;
    color: #fff;
}

.faq-item.is-open .faq-question__icon i::before {
    content: "\eb8b";
}

.faq-empty {
    background: #fff;
    border: 1px solid #e8eef5;
    box-shadow: 0 10px 24px rgba(20, 44, 88, 0.05);
    padding: 56px 24px;
    text-align: center;
    margin-top: 12px;
}

.faq-empty i {
    font-size: 2.4rem;
    color: #095a4b;
    display: inline-block;
    margin-bottom: 14px;
}

.faq-empty h3 {
    color: #095a4b;
    margin-bottom: 10px;
}

.faq-empty p {
    margin-bottom: 0;
    color: #667085;
}

body.theme-dark .faq-main {
    background: #121212;
}

body.theme-dark .faq-item,
body.theme-dark .faq-empty,
body.theme-dark #faqSearch,
body.theme-dark .faq-category-btn {
    background: #171717 !important;
    color: #d6deea !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 5px #55555559;
}

body.theme-dark .faq-question__text,
body.theme-dark .faq-empty h3 {
    color: #ededf3 !important;
}

body.theme-dark .faq-answer p,
body.theme-dark .faq-empty p {
    color: #c9d4e1 !important;
}

body.theme-dark .faq-answer__category {
    background: rgba(255, 255, 255, 0.08);
    color: #f0f3f8;
}

@media (max-width: 991.98px) {
    .faq-hero {
        padding: 86px 0 60px;
    }

    .faq-hero__content h1 {
        font-size: 2.4rem;
    }

    .faq-hero__meta {
        justify-content: flex-start;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .faq-hero {
        padding: 74px 0 54px;
    }

    .faq-hero__content h1 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 18px 18px;
    }

    .faq-answer__inner {
        padding: 0 18px 18px;
    }
}

@media (max-width: 575.98px) {
    .faq-hero__content h1 {
        font-size: 1.8rem;
    }

    .faq-hero__stat {
        width: 100%;
    }

    .faq-question__text {
        font-size: 0.98rem;
    }
}