/* ===================================================
   FAQ SECTION
=================================================== */

.faq-section{

    padding:120px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.faq-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.faq-header .section-title{

    margin:20px 0;

}

.faq-header .section-description{

    color:#64748b;

    font-size:18px;

    line-height:1.9;

}

.faq-list{

    max-width:900px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.faq-item{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.faq-item:hover{

    border-color:#12c2a3;

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(18,194,163,.12);

}

.faq-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    padding:28px 34px;

    text-align:left;

}

.faq-question span{

    font-size:20px;

    font-weight:700;

    color:#0f172a;

}

.faq-question i{

    width:24px;

    height:24px;

    color:#12c2a3;

    transition:.35s;

    flex-shrink:0;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 34px 30px;

    color:#64748b;

    line-height:1.9;

    font-size:16px;

}

.faq-item.active{

    border-color:#12c2a3;

    box-shadow:0 20px 50px rgba(18,194,163,.15);

}

.faq-item.active i{

    transform:rotate(45deg);

}

@media (max-width:992px){

.faq-section{

    padding:90px 0;

}

.faq-question{

    padding:24px;

}

.faq-question span{

    font-size:18px;

}

}

@media (max-width:576px){

.faq-section{

    padding:70px 0;

}

.faq-question{

    padding:20px;

}

.faq-question span{

    font-size:16px;

    line-height:1.6;

}

.faq-answer p{

    padding:0 20px 24px;

    font-size:15px;

}

}