/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.faq-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #F37039;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--heading-font);
    font-size: 15.5px;
    font-weight: 600;
    color: #002245;
}

.faq-question i {
    flex: none;
    color: #F37039;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--body-text-color);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 10px;
    text-align: left;
}

.faq-answer ul.policy-list {
    margin: 5px 0 10px;
}

@media (max-width: 576px) {
    .faq-question {
        padding: 14px 16px;
        font-size: 14.5px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}
