/* ── FAQ PAGE ── */
.faq-section {
    padding: 60px 0 80px;
    background: #FFFBFB;
}

.faq-hero {
    margin-bottom: 60px;
}

.faq-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 48px;
    color: #570907;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #4B5563;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 30px;
    color: #111827;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #E4E4E7;
    border-radius: 16px;
    padding: 24px 36px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    font-size: 18px;
    color: #374151;
    flex-shrink: 0;
}

.faq-q-left span {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #374151;
}

.faq-arrow {
    font-size: 18px;
    color: #374151;
    flex-shrink: 0;
}

.faq-answer {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-top: 16px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}
.faq-icon {
    width: 20px;
    height: 24px;
    flex-shrink: 0;
}