body{
    font-family:IRANYekan;
    background:#f3f4f6;
    margin:0;
    color:#333;
    }
    
    .faq-containerx{
    max-width:900px;
    margin:auto;
    padding:25px;
    }
    
    .faq-titlex{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:40px;
    }
    
    .faq-categoryx{
    margin-top:40px;
    }
    
    .faq-category-titlex{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    color:#444;
    }
    
    .faq-itemx{
    background:#e9eaee;
    border-radius:8px;
    margin-bottom:10px;
    overflow:hidden;
    transition:0.3s;
    }
    
    .faq-questionx{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 18px;
    cursor:pointer;
    font-size:14px;
    }
    
    .faq-leftx{
    display:flex;
    align-items:center;
    gap:10px;
    }
    
    .faq-iconx{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    color:#555;
    border:1px solid #ccc;
    transition:0.3s;
    }
    
    .faq-itemx.activex .faq-iconx{
    transform:rotate(45deg);
    background:#1e73be;
    color:#fff;
    border-color:#1e73be;
    }
    
    .faq-answerx{
    max-height:0;
    overflow:hidden;
    background:#fff;
    padding:0 18px;
    font-size:13px;
    line-height:1.9;
    color:#555;
    transition:max-height .35s ease;
    }
    
    .faq-itemx.activex .faq-answerx{
    max-height:300px;
    padding:15px 18px;
    }
    
    @media(max-width:768px){
    .faq-titlex{
    font-size:22px;
    }
    }
    