/* FAQ Section Styles */
#faq {
    padding: 80px 0;
    background-color: var(--dark-secondary);
}

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

.faq-item {
    background-color: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(76, 201, 240, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(76, 201, 240, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-toggle {
    color: var(--neon-blue);
    font-size: 1rem;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(76, 201, 240, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: rgba(247, 37, 133, 0.1);
    color: var(--neon-magenta);
}

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(76, 201, 240, 0.3);
}
