.faq-accordion {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    background: #f0f7ff;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e0f2ff;
}

.faq-answer {
    padding: 15px;
    display: none;
    background: #f8fafc;
    border-radius: 0 0 6px 6px;
    transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}