/* ==========================================================================
    FAQ PAGE STYLES
    Handles the layout and typography for the Frequently Asked Questions page.
   ========================================================================== */

.faq-page-container {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.faq-content-card {
    background-color: var(--surface-white-color);
    border: 1px solid var(--border-light-color);
    border-radius: 12px;
    padding: 60px 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark-color);
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-muted-color);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.faq-item {
    margin-bottom: 30px;
    padding-left: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-muted-color);
    line-height: 1.6;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .faq-content-card {
        padding: 40px 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-item {
        padding-left: 0;
    }
}