.faq-page {
    margin-top: 88px;
    background: #fff;
    padding: 56px 20px 80px;
}

.faq-page-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-page-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.45;
}

.faq-page-lead {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto 40px;
}

.faq-accordion {
    border-top: 1px solid #e2e8f0;
}

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

.faq-accordion-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: start;
    cursor: pointer;
}

.faq-accordion-question {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.6;
}

.faq-accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.2s;
}

.faq-accordion-item.open .faq-accordion-icon {
    transform: rotate(180deg);
    color: #0f2766;
}

.faq-accordion-answer {
    padding: 0 0 22px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.9;
    text-align: start;
}

.faq-empty {
    text-align: center;
    color: #94a3b8;
    font-weight: 700;
    padding: 48px 0;
}

.faq-category-block + .faq-category-block {
    margin-top: 36px;
}

.faq-category-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f2766;
    margin: 0 0 16px;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .faq-page {
        padding-top: 36px;
    }

    .faq-accordion-trigger {
        padding: 18px 0;
    }

    .faq-accordion-question {
        font-size: 14px;
    }
}
