
.faq-container {
    max-width: 800px;
    margin: 6rem auto 2rem;
    padding: 0 1rem;
}
.faq-item {
    background: rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSequence 0.5s ease-out forwards;
}
.faq-item:nth-child(1) { animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation-delay: 0.4s; }
.faq-item:nth-child(3) { animation-delay: 0.6s; }
.faq-item:nth-child(4) { animation-delay: 0.8s; }

.faq-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

@keyframes fadeInSequence {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-item h2 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--light-text);
}
.faq-item p {
    color: var(--light-text);
    line-height: 1.6;
    opacity: 0.9;
}