.faq {
    background-color: #1A1A1A;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.faq-question.active {
    background-color: #FFD700;
    color: #000000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #CCCCCC;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}
