/**
 * FAQs Page Styles
 * 常见问题页面样式
 */

/* ==================== Page Header ==================== */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(253, 145, 105, 0.2);
}

.legal-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 15px;
}

.legal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #9ca3af;
}

/* ==================== Content Container ==================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== FAQ Sections ==================== */
.faq-section {
    margin-bottom: 50px;
}

.faq-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #FD9169, #0B95E3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(253, 145, 105, 0.3);
}

/* ==================== FAQ Items ==================== */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(253, 145, 105, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 767px) {
    .legal-title {
        font-size: 1.8rem;
    }
    
    .faq-section .section-title {
        font-size: 1.3rem;
    }
    
    .faq-item {
        padding: 15px 18px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
}
