
/* 常见问题 (FAQ) */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.faq-question::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: #658AE4;
}

.faq-answer {
    color: #475569;
    line-height: 1.7;
    font-size: 1.1rem;
    padding-left: 24px;
    position: relative;
}

.faq-answer::before {
    content: 'A.';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #10b981;
}
