.single-blog-details {
    margin-top: 64px;
    border: 1px solid #DFDFDF;
    padding: 16px;
    border-radius: 10px;
}
.single-blog-details h1{
    font-size: 28px;
    font-weight: 700;
}
.single-blog-details ul{
    list-style: none;
    display: flex;
    padding-left: 0;
}
.services-list{
    line-height: 28px;
    padding-right: 12px;
}
.services-list li a{
    text-decoration: none;
}
.single-blog-details ul li{
    padding: 0 16px 0 16px;
    border-left: 1px solid #B8B8B8;
}
.single-blog-details ul li a{
    text-decoration: none;
    color: #000;
}
.single-blog-details ul li:last-child{
    border-left: none;
}
.single-blog-content{
    margin-top: 48px;
}
.single-blog-content h2,.single-blog-content h3,.single-blog-content h4,.single-blog-content h5{
    font-size: 20px;
    font-weight: 700;
    color: #104E92;
    margin-bottom: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.single-blog-content h2::before,.single-blog-content h3::before,.single-blog-content h4::before,.single-blog-content h5::before{
    content: "\f309";                /* کد یونیکد با حروف کوچک */
    font-family: "bootstrap-icons";  /* نام فونت آیکون (بسته فونت bootstrap-icons) */
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    speak: none;
    display: inline-block;
    font-size: 1.1em;                /* اندازه آیکون را اینجا تنظیم کن */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.single-blog-content p{
    font-size: 16px;
    font-weight: normal;
    color: #6A6A6A;
    text-align: justify;
    line-height: 28px;
}
.single-blog-content img{
    width: 100%;
    margin-bottom: 32px;
}
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    background: linear-gradient(225deg,
    #057FD7 0%,
    #40BFFF 30%,
    #2BC3D2 65%,
    #55D555 100%
    );
}

.icon-box i {
    line-height: 1;
}
 ul.table-of-content{
    padding-right: 28px;
    line-height: 28px;
}
 ul.table-of-content li a{
    font-size: 16px;
    color: #6A6A6A;
    text-decoration: none;
}
ul.table-of-content ol{
    padding: 9px;
}
ul.table-of-content ol li a{
    font-size: 14px;
    color: #919191;
}
.sidebar-title {
    color: #104E92;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px;
}
.service {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start; /* آیتم‌ها از بالا شروع بشن */
    justify-content: center;
    flex-shrink: 0;
}

.service img {
    max-width: 24px;
    height: auto;
    display: block;
    margin-top: 8px; /* تصویر رو میاره پایین‌تر */
    /* یا: transform: translateY(8px); */
}
.single-blog-details ul {
    display: flex;
    flex-wrap: nowrap; /* حالت پیش‌فرض: همه در یک خط */
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-blog-details ul li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* حالت موبایل */
@media (max-width: 576px) {
    .single-blog-details ul {
        flex-wrap: wrap;
        margin-top: 32px;
    }
    .single-blog-details ul li {
        width: 45%; /* هر ردیف دو تا */
    }
    .single-blog-details {
        margin: 32px 0;
        border: 1px solid #DFDFDF;
        padding: 16px;
        border-radius: 10px;
    }
    .single-blog-details h1 {
        font-size: 20px;
        font-weight: 600;
    }
}

