/* ── FAQ Section ── */
.faq-section {
    padding: 4rem 0 5rem;
    background: #fff;
}

.faq-heading {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

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

.faq-item:first-child {
    border-top: 1px solid #e4e8ed;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq-question:hover {
    color: #3a6d8c;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #3a6d8c;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 1rem 1.2rem;
    font-size: 0.98rem;
    color: #444;
    line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .faq-heading {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.98rem;
    }
}
