/* FAQ Section - Modern Restyle */
.faq-section {
    padding: 80px 0;
    background-color: #0b0c10;
    position: relative;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #66fcf1;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.faq-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #66fcf1;
    border-radius: 2px;
}

.faq-container {
    background: #1f2833;
    border-radius: 16px;
    border: 1px solid rgba(102, 252, 241, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    padding: 25px 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
    background: rgba(102, 252, 241, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: rgba(102, 252, 241, 0.1);
    border: 2px solid #66fcf1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-toggle i {
    color: #66fcf1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-left: 30px;
}

.faq-answer p {
    margin: 20px 0 0;
    color: #c5c6c7;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1rem;
}

/* Active State */
.faq-item.active {
    background: rgba(102, 252, 241, 0.05);
    border-bottom-color: #66fcf1;
}

.faq-item.active .faq-toggle {
    background: #66fcf1;
    transform: rotate(135deg);
}

.faq-item.active .faq-toggle i {
    color: #0b0c10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-item {
        padding: 15px;
    }
}