/* ========================================
   FAQ PAGE - SIMPLE OPEN DESIGN
   ======================================== */

.faq-section-new {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.faq-wrapper-new {
    max-width: 100%;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* FAQ Item - Always Open */
.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

/* FAQ Question - Just a Title */
.faq-question {
    color: var(--text-gold);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question::before {
    content: '💡';
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* FAQ Answer - Always Visible */
.faq-answer-content {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 2rem;
}

/* Different Icons for Different Categories */
.faq-category:nth-child(1) .faq-question::before { content: '💡'; }
.faq-category:nth-child(2) .faq-question::before { content: '💰'; }
.faq-category:nth-child(3) .faq-question::before { content: '💳'; }
.faq-category:nth-child(4) .faq-question::before { content: '🏦'; }
.faq-category:nth-child(5) .faq-question::before { content: '🤝'; }
.faq-category:nth-child(6) .faq-question::before { content: '🔒'; }
.faq-category:nth-child(7) .faq-question::before { content: '💬'; }

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .faq-section-new {
        padding: 3rem 0;
    }
    
    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-answer-content {
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .faq-question::before {
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}
