/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    padding: 6rem 0;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706, #92400e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    font-style: italic;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    align-self: stretch;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: inherit;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(245, 158, 11, 0.1);
}

.faq-question:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

.faq-question h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #f59e0b;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    transition: all 0.3s ease;
    height: 0;
}

.faq-item.active .faq-answer {
    height: auto;
}

.faq-answer p {
    padding: 1rem 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .faq-grid {
        margin: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer p {
        padding: 0.8rem 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
}