/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 100%);
    color: white;
}

.faq-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* color: var(--gold-accent); - removed to use base.css consistent white styling */
    color: var(--white) !important; /* Force white color */
}

.faq-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.faq-accordion {
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-content h2 {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}
