/*--------------------------------------------------------------
# Simple & Compact FAQ Section
--------------------------------------------------------------*/
.faq-modern {
    padding: 70px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-accordion-modern {
    margin-top: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

/* FAQ Item */
.faq-item-modern {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item-modern:last-child {
    border-bottom: none;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    flex: 1;
    padding-right: 16px;
}

/* FAQ Icon */
.faq-icon {
    font-size: 16px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer-content {
    padding: 0 24px 20px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* Section Header */
.faq-modern .section-header-modern {
    text-align: center;
    margin-bottom: 15px;
}

.faq-modern .section-header-modern h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.faq-modern .section-header-modern p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6b7280;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-modern {
        padding: 50px 0;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 20px 16px 20px;
        font-size: 13px;
    }

    .faq-modern .section-header-modern h2 {
        font-size: 26px;
    }
}