/*==================================================
FAQ SECTION
==================================================*/

.faq-section{

    padding:90px 0;

    background:#f8fafc;

}

.faq-list{

    max-width:900px;

    margin:50px auto 0;

}

.faq-item{

    background:#fff;

    border:1px solid #e2e8f0;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    transition:.3s;

}

.faq-item:hover{
background:#2563eb;
color:#fff;
    box-shadow:0 18px 45px rgba(37,99,235,.12);
    

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:24px 30px;

    cursor:pointer;

    text-align:left;

}

.faq-title{

    font-size:20px;

    font-weight:700;

    color:#0f172a;

    line-height:1.6;

}

.faq-icon{

    width:42px;

    height:42px;

    flex-shrink:0;

    border-radius:50%;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:700;

    transition:.3s;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

    background:#2563eb;

    color:#fff;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer-inner{

    padding:0 30px 28px;

    font-size:17px;

    line-height:1.9;

    color:#475569;

}

.faq-item.active{

    border-color:#2563eb;

}

/*=========================================
Tablet
=========================================*/

@media(max-width:992px){

    .faq-list{

        max-width:100%;

    }

}

/*=========================================
Mobile
=========================================*/

@media(max-width:768px){

    .faq-section{

        padding:70px 0;

    }

    .faq-question{

        padding:18px 20px;

        gap:18px;

    }

    .faq-title{

        font-size:17px;

    }

    .faq-icon{

        width:36px;

        height:36px;

        font-size:22px;

    }

    .faq-answer-inner{

        padding:0 20px 22px;

        font-size:15px;

        line-height:1.8;

    }

}