.faq-container {
    max-width: 800px;
    margin: 50px auto;
}

.faq-box {
    background-color: rgba(0,0,0,0.85);
    color: white;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-box:hover {
    background-color: rgba(0,0,0,0.95);
}

.faq-box h3 {
    margin: 0;
    color: rgb(255, 238, 0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    margin-top: 10px;
}

.faq-box.active .faq-answer {
    max-height: 200px;
}