.faq-page {
    background: var(--cnc-bg);
}

.faq-hero {
    background: var(--cnc-navy);
    padding: 72px 40px 64px;
    text-align: center;
}

.faq-hero__inner,
.faq-content__inner,
.faq-category-bar__inner {
    max-width: 760px;
    margin: 0 auto;
}

.faq-hero__eyebrow {
    display: inline-block;
    background: var(--cnc-accent);
    color: var(--cnc-navy);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-hero__title,
.faq-section__title,
.faq-cta__title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--cnc-navy);
    margin: 0;
}

.faq-hero__title {
    font-size: clamp(44px, 6vw, 72px);
    color: #ffffff;
    margin-bottom: 16px;
}

.faq-hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto;
}

.faq-category-bar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 16px 40px;
}

.faq-category-bar__inner {
    max-width: 1200px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-bar__button {
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: #f4f1eb;
    color: var(--cnc-navy);
    font-size: 13px;
    font-weight: 500;
}

.faq-category-bar__button.is-active {
    background: var(--cnc-navy);
    color: #ffffff;
}

.faq-content {
    padding: 60px 40px 100px;
}

.faq-section {
    margin-bottom: 52px;
}

.faq-section__title {
    font-size: 30px;
    margin-bottom: 8px;
}

.faq-section__panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 0 28px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #eeeeee;
}

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

.faq-item__button {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.faq-item__question {
    font-size: 16px;
    font-weight: 600;
    color: var(--cnc-navy);
    line-height: 1.4;
}

.faq-item__icon {
    font-size: 20px;
    color: #aaaaaa;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer-wrap {
    padding-bottom: 20px;
}

.faq-item__answer {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
}

.faq-cta {
    background: var(--cnc-accent);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    margin-top: 20px;
}

.faq-cta__title {
    font-size: 26px;
    margin-bottom: 8px;
}

.faq-cta__copy {
    font-size: 15px;
    color: rgba(43, 58, 74, 0.7);
    margin: 0 0 20px;
}

.faq-cta__button {
    display: inline-block;
    background: var(--cnc-navy);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-hero,
    .faq-category-bar,
    .faq-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-section__panel {
        padding-left: 20px;
        padding-right: 20px;
    }
}
