.faq-accordion-wrapper{
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
}

.faq-item{
    border-bottom:1px solid #ddd;
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-title{
    padding:18px 20px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;

    font-family:'Poppins';
    font-style:normal;
    font-weight:500;
    font-size:22px;
    line-height:28px;
    color:#232323;
}

.faq-item.active .faq-title{
    background:#0d6efd;
    color:#fff;
}

.faq-icon{
    position:relative;
    width:20px;
    height:20px;
    margin-left:15px;
    flex-shrink:0;
}

.faq-icon img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto;
    transition:0.3s ease;
}

.faq-icon .icon-active{
    opacity:0;
}

.faq-item.active .faq-icon .icon-normal{
    opacity:0;
}

.faq-item.active .faq-icon .icon-active{
    opacity:1;
}

.faq-content{
    display:none;
    padding:18px 20px;
    background:#f8f9fc;
    line-height:1.8;
    color:#555;
}