/* FAQ Page Styles */

.faq-container {
    background: #fff;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    background: #fff;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05em;
    color: #d4af37;
    transition: background 0.3s;
    position: relative;
    user-select: none;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question:after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: #d4af37;
}

.faq-question.active:after {
    content: '';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

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

.faq-answer-content {
    padding: 20px 30px 30px 30px;
    color: #333;
    font-size: 1em;
    line-height: 1.8;
}

.faq-answer-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
}

.faq-answer-content a:hover {
    color: #b8941f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1em;
    }
    
    .faq-answer-content {
        padding: 15px 20px 25px 20px;
    }
}
