    .blog-details-area {
        background: #f7f8fb;
    }

    .blog-details-wrap {
        max-width: 1080px;
        margin: 0 auto;
    }

    .blog-details-card {
        overflow: hidden;
        border-radius: 28px;
        background: #ffffff;
        box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
    }

    .blog-details-image {
        position: relative;
        overflow: hidden;
        min-height: 360px;
        background: #f3f4f6;
    }

    .blog-details-image img {
        display: block;
        width: 100%;
        height: 520px;
        object-fit: cover;
    }

    .blog-details-content {
        padding: 42px 46px 48px;
    }

    .blog-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        color: #6b7280;
        font-size: 14px;
        font-weight: 600;
    }

    .blog-meta span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 13px;
        border-radius: 999px;
        background: rgba(255, 85, 51, 0.08);
        color: #ff5533;
    }

    .blog-details-title {
        margin-bottom: 18px;
        color: #111827;
        font-size: 42px;
        font-weight: 900;
        line-height: 1.22;
    }

    .blog-details-excerpt {
        margin-bottom: 32px;
        padding: 20px 22px;
        border-left: 4px solid #ff5533;
        border-radius: 18px;
        color: #4b5563;
        font-size: 17px;
        line-height: 1.85;
        background: rgba(255, 85, 51, 0.06);
    }

    .blog-content-body {
        color: #374151;
        font-size: 16px;
        line-height: 1.9;
    }

    .blog-content-body h1,
    .blog-content-body h2,
    .blog-content-body h3,
    .blog-content-body h4,
    .blog-content-body h5,
    .blog-content-body h6 {
        margin-top: 30px;
        margin-bottom: 15px;
        color: #111827;
        font-weight: 900;
        line-height: 1.35;
    }

    .blog-content-body h2 {
        font-size: 30px;
    }

    .blog-content-body h3 {
        font-size: 24px;
    }

    .blog-content-body p {
        margin-bottom: 18px;
    }

    .blog-content-body ul,
    .blog-content-body ol {
        margin-bottom: 22px;
        padding-left: 24px;
    }

    .blog-content-body li {
        margin-bottom: 8px;
    }

    .blog-content-body img {
        max-width: 100%;
        height: auto;
        margin: 24px 0;
        border-radius: 20px;
    }

    .blog-content-body blockquote {
        margin: 28px 0;
        padding: 22px 26px;
        border-left: 4px solid #ff5533;
        border-radius: 18px;
        color: #111827;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.8;
        background: #fff7f4;
    }

    .blog-content-body a {
        color: #ff5533;
        font-weight: 700;
        text-decoration: underline;
    }

    .blog-back-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-top: 34px;
        padding-top: 28px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .blog-back-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 13px 22px;
        border: 0;
        border-radius: 999px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        background: #ff5533;
        box-shadow: 0 14px 28px rgba(255, 85, 51, 0.22);
        transition: all 0.25s ease;
    }

    .blog-back-btn:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(255, 85, 51, 0.30);
    }

    .blog-share-box {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 9px;
    }

    .blog-share-title {
        margin-right: 4px;
        color: #111827;
        font-size: 14px;
        font-weight: 900;
    }

    .blog-share-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
        transition: all 0.25s ease;
    }

    .blog-share-btn:hover {
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
    }

    .blog-share-btn.facebook {
        background: #1877f2;
    }

    .blog-share-btn.twitter {
        background: #111827;
    }

    .blog-share-btn.instagram {
        background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    }

    .blog-share-btn.whatsapp {
        background: #25d366;
    }

    .blog-share-btn.copy-link {
        background: #ff5533;
    }

    .blog-share-btn.copied {
        background: #16a34a;
    }

    .recent-posts-box {
        margin-top: 42px;
    }

    .recent-posts-title {
        margin-bottom: 22px;
        color: #111827;
        font-size: 26px;
        font-weight: 900;
    }

    .recent-post-card {
        height: 100%;
        overflow: hidden;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
        transition: all 0.25s ease;
    }

    .recent-post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
    }

    .recent-post-image {
        display: block;
        height: 190px;
        overflow: hidden;
        background: #f3f4f6;
    }

    .recent-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.35s ease;
    }

    .recent-post-card:hover .recent-post-image img {
        transform: scale(1.05);
    }

    .recent-post-content {
        padding: 22px;
    }

    .recent-post-content h3 {
        margin-bottom: 10px;
        color: #111827;
        font-size: 18px;
        font-weight: 900;
        line-height: 1.45;
    }

    .recent-post-content h3 a {
        color: inherit;
    }

    .recent-post-content h3 a:hover {
        color: #ff5533;
    }

    .recent-post-content p {
        margin-bottom: 0;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
    }

    @media (max-width: 991px) {
        .blog-details-title {
            font-size: 34px;
        }

        .blog-details-image img {
            height: 420px;
        }

        .blog-details-content {
            padding: 34px 30px 38px;
        }

        .blog-back-box {
            align-items: flex-start;
            flex-direction: column;
        }

        .blog-share-box {
            justify-content: flex-start;
        }
    }

    @media (max-width: 767px) {
        .blog-details-title {
            font-size: 27px;
        }

        .blog-details-image {
            min-height: auto;
        }

        .blog-details-image img {
            height: 300px;
        }

        .blog-details-content {
            padding: 26px 20px 30px;
        }

        .blog-details-excerpt {
            font-size: 15px;
        }

        .blog-share-title {
            width: 100%;
            margin-right: 0;
            margin-bottom: 3px;
        }
    }
.blog-content-body ul,
.blog-content-body ol {
    margin: 22px 0 26px;
    padding-left: 0;
    list-style: none;
}

.blog-content-body ul li,
.blog-content-body ol li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 34px;
    color: #374151;
    font-size: 16px;
    line-height: 1.85;
}

.blog-content-body ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 13px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5533;
    box-shadow: 0 0 0 6px rgba(255, 85, 51, 0.12);
}

.blog-content-body ol {
    counter-reset: blog-counter;
}

.blog-content-body ol li {
    counter-increment: blog-counter;
}

.blog-content-body ol li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff5533;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(255, 85, 51, 0.22);
}

.blog-content-body li strong {
    color: #111827;
    font-weight: 800;
}

@media (max-width: 767px) {
    .blog-content-body ul li,
    .blog-content-body ol li {
        padding-left: 30px;
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-content-body ul li::before {
        width: 8px;
        height: 8px;
        top: 12px;
    }
}
