.faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 220, 130, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: #00DC82;
}

.faq-toggle.open {
    transform: rotate(180deg);
}

.faq-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-content.closed {
    max-height: 0;
    opacity: 0;
}

.faq-content.open {
    max-height: 500px;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.875rem;
    }
}
