.custom-faq{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:18px;
    margin-bottom:10px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,.04);
}

.faq-item.active{
    border-color:#eb781b;
    box-shadow:0 18px 45px rgba(79,70,229,.12);
}

.faq-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    cursor:pointer;
    transition:.3s;
}

.faq-header:hover{
    background:#fafbff;
}

.faq-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.faq-number{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#0556dd,#4d86e7);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}
.faq-item.active .faq-number{
    background:linear-gradient(135deg,#eb781b,#f1ac73);
}
.faq-title{
    margin:0;
    font-size:17px;
    font-weight:600;
    color:#1f2937;
    line-height:1.5;
}

.faq-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f3f5fa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#0556dd;
    transition:.35s;
}

.faq-item.active .faq-icon{
    background:#eb781b;
    color:#fff;
    transform:rotate(45deg);
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-content-inner{
    padding:10px 28px 28px 28px;
    color:#6b7280;
    font-size:16px;
    line-height:1.9;
    border-top:1px solid #eef2f7;
}

@media(max-width:768px){

    .faq-header{
        padding:18px;
    }

    .faq-left{
        gap:12px;
    }

    .faq-number{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:15px;
    }

    .faq-title{
        font-size:17px;
    }

    .faq-content-inner{
        padding:20px 18px 24px;
    }
}
.custom-faq{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:24px;
    max-width:1300px;
    margin:0 auto;
    align-items:start;
}

.faq-item{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,.04);
    height:fit-content;
}
@media (max-width:992px){

    .custom-faq{
        grid-template-columns:1fr;
        gap:18px;
    }

}

@media(max-width:768px){

    .faq-header{
        padding:18px;
    }

    .faq-left{
        gap:12px;
    }

    .faq-number{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:15px;
    }

    .faq-title{
        font-size:17px;
    }

    .faq-content-inner{
        padding:20px 18px 24px;
    }

}