 /* ==========================
    FAQ SECTION
 =========================== */

.faq{

    padding:110px 0;

    background:#F0F6FF;

}


/* ==========================
   SECTION HEADING
=========================== */

.faq .section-heading{

    max-width:720px;

    margin:0 auto 60px;

    text-align:center;

}

.faq .section-heading span{

    display:inline-block;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1.5px;

    margin-bottom:15px;

}

.faq .section-heading h2{

    color:#111827;

    font-size:clamp(32px,4vw,44px);

    line-height:1.15;

    margin:0 0 18px;

}

.faq .section-heading p{

    color:#64748B;

    font-size:17px;

    line-height:1.7;

}


/* ==========================
   FAQ WRAPPER
=========================== */

.faq-wrapper{

    max-width:850px;

    margin:0 auto;

}


/* ==========================
   FAQ ITEM
=========================== */

.faq-item{

    position:relative;

    background:#fff;

    border:1px solid #DCE6F5;

    border-radius:14px;

    margin-bottom:16px;

    overflow:hidden;

    transition:.3s ease;

}

.faq-item:hover{

    border-color:#93C5FD;

    box-shadow:0 10px 30px rgba(37,99,235,.08);

}


/* Blue active indicator */

.faq-item.active{

    border-color:#93C5FD;

    box-shadow:0 12px 30px rgba(37,99,235,.10);

}

.faq-item.active::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    bottom:0;

    width:4px;

    background:#2563EB;

}


/* ==========================
   QUESTION
=========================== */

.faq-question{

    width:100%;

    border:none;

    background:none;

    padding:24px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    cursor:pointer;

    color:#1E293B;

    font-size:17px;

    font-weight:650;

    line-height:1.4;

    text-align:left;

}


/* ==========================
   ICON
=========================== */

.faq-question .icon{

    width:34px;

    height:34px;

    min-width:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#EFF6FF;

    color:#2563EB;

    font-size:22px;

    font-weight:500;

    transition:.3s ease;

}

.faq-item.active .faq-question .icon{

    background:#2563EB;

    color:#fff;

}


/* ==========================
   ANSWER
=========================== */

.faq-answer{

    display:none;

    padding:0 28px 25px;

}

.faq-answer p{

    margin:0;

    padding-top:2px;

    color:#64748B;

    font-size:15px;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}


/* ==========================
   MOBILE
=========================== */

@media(max-width:768px){

    .faq{

        padding:75px 0;

    }

    .faq .section-heading{

        margin-bottom:40px;

    }

    .faq .section-heading h2{

        font-size:32px;

    }

    .faq .section-heading p{

        font-size:16px;

    }

    .faq-question{

        padding:20px;

        font-size:16px;

    }

    .faq-answer{

        padding:0 20px 20px;

    }

    .faq-question .icon{

        width:30px;

        height:30px;

        min-width:30px;

        font-size:20px;

    }

}