/* FAQ SECTION */

.faq-section{
    padding:80px 0;
    background:#f8fafc;
}

.faq-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#0f172a;
}

.faq-container{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    text-align:left;
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#0f172a;
}

.faq-question span{
    font-size:24px;
    color:#0066ff;
    font-weight:bold;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    line-height:1.8;
    color:#555;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question{
    background:#0066ff;
    color:#fff;
}

.faq-item.active .faq-question span{
    color:#fff;
}