/* ============================================================================
   FAQ PAGE - MODERN DESIGN
   ============================================================================ */

.faq-page {
    width: 100%;
    min-height: 100vh;
    background: #fff
    ;
    padding: 100px 0 80px;
}

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

/* Hero Section */
.faq-hero {
    text-align: center;
    margin-bottom: 48px;
}

.faq-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    color: var(--color-gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Content */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-900);
    user-select: none;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

/* FAQ Icon */
.faq-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

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

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 24px 24px;
}

/* FAQ Q&A */
.faq-qa {
    margin-bottom: 20px;
}

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

.faq-qa-question {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-qa-answer {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .faq-page {
        padding: 80px 0 60px;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-hero {
        margin-bottom: 32px;
    }

    .faq-title {
        font-size: var(--text-2xl);
    }

    .faq-subtitle {
        font-size: var(--text-base);
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }

    .faq-qa-question {
        font-size: 14px;
    }

    .faq-qa-answer {
        font-size: 13px;
    }
}
