    .blog-desc p span a {
        color: #007bff !important;
        text-decoration: underline !important;
    }

    /* Main container styling */
    .blog-wrapper {
        background-color: #f8f9fa;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    /* Container centering and max-width */
    .blog-container {
        max-width: 1200px;
        margin: 11px auto;
        padding: 0 20px;
    }

    /* Main content area */
    .blog-content {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 30px;
    }

    /* Header section with breadcrumb and title */
    .blog-header {
        background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
        padding: 40px 50px;
        text-align: center;
        color: white;
        position: relative;
    }

    .blog-header::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background-size: cover;
    }

    /* Breadcrumb navigation */
    .breadcrumb-nav {
        margin-bottom: 20px;
        font-size: 14px;
        opacity: 0.9;
    }

    .breadcrumb-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .breadcrumb-nav a:hover {
        color: #ffd700;
        text-decoration: underline;
    }

    .breadcrumb-separator {
        margin: 0 8px;
        opacity: 0.7;
    }

    /* Blog title styling */
    .blog-title {
        font-size: 3rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Banner image section */
    .banner-section {
        padding: 0;
        background-color: white;
    }

    .banner {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    /* Main content section */
    .content-section {
        padding: 50px;
    }

    /* Blog description content styling */
    .blog-desc {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #333;
        text-align: justify;
    }

    .blog-desc h1,
    .blog-desc h2,
    .blog-desc h3 {
        margin-top: 40px;
        margin-bottom: 20px;
        color: #007bff;
        font-weight: 600;
    }

    .blog-desc h1 {
        font-size: 2.2rem;
        border-bottom: 3px solid #007bff;
        padding-bottom: 10px;
    }

    .blog-desc h2 {
        font-size: 1.8rem;
    }

    .blog-desc h3 {
        font-size: 1.4rem;
    }

    .blog-desc p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .blog-desc ul,
    .blog-desc ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    .blog-desc li {
        margin-bottom: 8px;
    }

    .blog-desc table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .blog-desc table thead {
        background-color: #007bff;
        color: white;
    }

    .blog-desc table tbody tr td {
        padding: 20px 15px !important;
        border-bottom: 1px solid #eee;
    }

    .blog-desc table tbody tr:hover {
        background-color: #f8f9fa;
    }

    /* Sidebar styling */
    .sidebar {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        padding: 30px;
        height: fit-content;
        position: sticky;
        top: 100px;
    }

    .sidebar-title {
        color: #007bff;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .sidebar-content {
        text-align: center;
        color: #666;
    }

    .share-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: transform 0.3s ease;
        font-weight: bold;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        color: white;
    }

    .share-btn.facebook {
        background-color: #3b5998;
    }

    .share-btn.twitter {
        background-color: #1da1f2;
    }

    .share-btn.linkedin {
        background-color: #0077b5;
    }

    /* Layout grid */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 30px;
        align-items: start;
    }

    /* Mobile responsive styles */
    @media only screen and (max-width: 767px) {
        .blog-wrapper {
            padding-top: 60px;
            padding-bottom: 40px;
        }

        .blog-container {
            padding: 0 15px;
        }

        .blog-header {
            padding: 30px 20px;
        }

        .blog-title {
            font-size: 2rem;
        }

        .banner {
            height: 250px;
            object-fit: fill;
        }

        .content-section {
            padding: 30px 20px;
        }

        .blog-desc {
            font-size: 1rem;
        }

        .blog-desc h1 {
            font-size: 1.8rem;
        }

        .blog-desc h2 {
            font-size: 1.2rem;
        }

        .blog-desc ul,
        .blog-desc ol {
            padding-left: 20px;
        }

        .content-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .sidebar {
            position: static;
            margin-top: 20px;
            padding: 20px;
        }
    }

    /* Tablet responsive styles */
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
        .blog-wrapper {
            padding-top: 70px;
        }

        .blog-title {
            font-size: 2.5rem;
        }

        .blog-container {
            max-width: 900px;
        }

        .content-grid {
            grid-template-columns: 1fr 250px;
            gap: 25px;
        }

        .content-section {
            padding: 40px;
        }
    }

    /* Large desktop styles */
    @media only screen and (min-width: 1600px) {
        .blog-container {
            max-width: 1400px;
        }

        .content-grid {
            grid-template-columns: 1fr 350px;
        }
    }

    /* Animation for loading */
    .blog-content {
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .date {
        float: inline-end;
    }

    .recent-posts-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .recent-post-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .recent-post-item a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

    .recent-post-item img {
        border-radius: 6px;
    }

    .recent-post-item span {
        flex: 1;
    }