/* Feature: Glassmorphism FAQ Accordion with Smooth Transitions */

.faq-section {
    padding: 80px 50px;
    background-color: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #38bdf8;
}

.faq-icon {
    font-size: 24px;
    color: #38bdf8;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    .faq-question {
        font-size: 15px;
        padding: 15px 20px;
    }
}