/* FAQ Section */
.faq-section {
    background-color: var(--deep-space);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--space-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--neon-violet-glow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--starlight);
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.faq-question:hover {
    color: var(--cyber-aqua);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--cyber-aqua);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--cosmic-text);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer ul {
    list-style: none;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--matrix-green);
    text-shadow: 0 0 8px var(--matrix-green-glow);
}
