.faq-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
    background-color: #0F0F0F;
}

.faq-container h1 {
    text-align: center;
    color: #C3A984;
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #C3A984;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C3A984, transparent);
}

.faq-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-question {
    background: rgba(195, 169, 132, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.question-button {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.question-button:hover {
    background: rgba(195, 169, 132, 0.1);
}

.arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow::before,
.arrow::after {
    content: '';
    position: absolute;
    background: #C3A984;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}

.arrow::before {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.arrow::after {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-question.active .arrow::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

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

.answer p {
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.faq-intro {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 100px auto 40px;
        padding: 0 15px;
        background-color: #0F0F0F;
    }

    .faq-container h1 {
        font-size: 2.5rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .question-button {
        font-size: 1rem;
        padding: 15px;
    }
}
