/* ========================================
   FAQ COMMON STYLES - LinumSerenum
   ======================================== */

/* FAQ Section */
.faq-section {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.faq-section h2 {
    font-family: 'Alegreya Sans', sans-serif;
    color: var(--border-heading-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* FAQ section - keep accordions closed on all screen sizes */
.faq-section .accordion-collapse {
    display: none !important;
}

.faq-section .accordion-collapse.show {
    display: block !important;
}

.faq-section .accordion-button {
    display: flex !important;
    background-color: transparent !important;
    border: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .faq-section {
        margin-bottom: 0 !important;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}