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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.faq-question {
    padding: 20px;
    background: rgba(27, 31, 59, 0.5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(27, 31, 59, 0.7);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.faq-question i {
    font-size: 20px;
    color: #00E5FF;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #6366F1;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(10, 10, 10, 0.3);
}

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

.faq-answer p {
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}
