/* FAQ page */

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #64748b;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

/* FAQ uses rating-button examples from flashcards */
.btn-again {
    background: #ef4444;
    color: white;
}

.btn-hard {
    background: #f59e0b;
    color: white;
}

.btn-good {
    background: #6366f1;
    color: white;
}

.btn-easy {
    background: #10b981;
    color: white;
}
