/* FAQ Section */
.faq {
    padding: 100px 8%;
    background-color: #0d0d0d;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-top {
    text-align: center;
    margin-bottom: 60px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: scale(1.02);
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--neon-green);
}

.chevron {
    transition: transform 0.3s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: var(--neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary large enough height */
    padding: 0 30px 24px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 16px 40px; /* Consistent padding */
    }

    .faq-top {
        margin-bottom: 32px;
    }

    .faq-question {
        padding: 20px 16px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}