/* FAQ Page Specific Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    border: 1px solid rgba(0, 138, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 138, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 15px rgba(0, 138, 255, 0.7);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-mono);
    text-shadow: 0 0 8px rgba(0, 138, 255, 0.8);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 138, 255, 0.1);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--neon-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-white);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 138, 255, 0.3);
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}