.faq-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #0d0d0d;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.faq-container h2.gold {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(to right, #f5d76e, #e09f3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background-color: #262626;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    color: #f5d76e;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
}
