/*==================================================
  FAQ Accordion
==================================================*/

.sv-faq{

display:flex;

flex-direction:column;

gap:14px;

}

.sv-faq-item{

background:#fff;

border:1px solid #e5e7eb;

border-radius:14px;

overflow:hidden;

}

.sv-faq-question{

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 22px;

cursor:pointer;

font-size:18px;

font-weight:600;

background:#fff;

border:none;

}

.sv-faq-question:hover{

background:#f8fafc;
color:#000000 !important;

}

.sv-faq-answer{

display:none;

padding:20px 22px;

line-height:1.8;

color:#475569;

}

.sv-faq-item.active .sv-faq-answer{

display:block;

}

.sv-faq-icon{

font-size:24px;

font-weight:700;

color:#2563eb;

}


.sv-faq-item.active .sv-faq-icon{
    transform:rotate(45deg);
}