/* ==========================================================================
   MODERN FAQ SECTION STYLES
   ========================================================================== */

.modern-faq-section {
    background: #f8fafc;
    padding-top: 100px !important;
    padding-bottom: 90px !important;
}

@media (max-width: 767px) {
    .modern-faq-section {
        padding-top: 70px !important;
        padding-bottom: 60px !important;
    }
}

.faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: border-color 0.25s ease;
}

.faq-card:hover {
    border-color: #ffd6be;
}

.faq-card .card-header {
    background: #ffffff;
    padding: 18px 24px;
    border: none;
    text-decoration: none !important;
    display: block;
}

.faq-card .card-header h6 {
    font-size: 16.5px;
    font-weight: 700;
    color: #071a52;
}

.faq-chevron {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-card .card-header[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: #ff7b2c;
}

.faq-card .card-body {
    padding: 0 24px 22px 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    border-top: none;
}

.text-orange {
    color: #ff7b2c !important;
}