    /* Blog Specific Styles */
    .blog-hero {
        background: linear-gradient(135deg, rgba(47, 48, 58, 0.85) 0%, rgba(28, 37, 65, 0.9) 100%), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
        background-size: cover;
        color: #fff;
        padding: 8rem 1rem;
        text-align: center;
    }

    .blog-hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .blog-hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .blog-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .blog-search {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    .blog-search input {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        border: none;
        font-size: 1rem;
        padding-right: 50px;
    }

    .blog-search button {
        position: absolute;
        right: 5px;
        top: 5px;
        background: #4f46e5;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .blog-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 3rem auto;
        padding: 0 1rem;
        gap: 2rem;
    }

    .blog-posts {
        flex: 1;
        min-width: 300px;
    }

    .blog-sidebar {
        width: 300px;
    }

    .blog-post {
        margin-bottom: 3rem;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
    }

    .blog-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .blog-post-image {
        height: 220px;
        overflow: hidden;
    }

    .blog-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-post:hover .blog-post-image img {
        transform: scale(1.05);
    }

    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .blog-post-meta {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: #666;
        font-size: 0.9rem;
    }

    .blog-post-meta span {
        margin-right: 1rem;
        display: flex;
        align-items: center;
    }

    .blog-post-meta i {
        margin-right: 0.3rem;
        font-size: 0.8rem;
    }

    .blog-post-excerpt {
        margin-bottom: 1.5rem;
        color: #555;
        line-height: 1.6;
    }

    .blog-post-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .blog-post-category {
        background: #f0f0f0;
        color: #444;
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .blog-post-category:hover {
        background: #4f46e5;
        color: white;
    }

    .btn-read-more {
        display: inline-block;
        background: #4f46e5;
        color: white;
        padding: 0.7rem 1.5rem;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-read-more:hover {
        background: #4338ca;
        transform: translateY(-2px);
    }

    .sidebar-widget {
        background: #fff;
        border-radius: 8px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .sidebar-widget h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
        color: #333;
    }

    .sidebar-widget ul {
        list-style: none;
    }

    .sidebar-widget li {
        margin-bottom: 0.8rem;
    }

    .sidebar-widget a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }

    .sidebar-widget a:before {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 0.5rem;
        font-size: 0.7rem;
        color: #4f46e5;
    }

    .sidebar-widget a:hover {
        color: #4f46e5;
    }

    .popular-posts .popular-post {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .popular-post-thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .popular-post-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .popular-post-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .tags-widget {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tag {
        background: #f0f0f0;
        color: #444;
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .tag:hover {
        background: #4f46e5;
        color: white;
    }

    .blog-pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 3rem 0;
    }

    .page-link {
        display: inline-block;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .page-link:hover, .page-link.active {
        background: #4f46e5;
        color: white;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .blog-sidebar {
            width: 100%;
            order: -1;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .sidebar-widget {
            flex: 1;
            min-width: 250px;
        }
    }

    @media (max-width: 768px) {
        .blog-hero h1 {
            font-size: 2.2rem;
        }
        
        .blog-hero p {
            font-size: 1rem;
        }
        
        .blog-post-image {
            height: 180px;
        }
    }

    @media (max-width: 576px) {
        .blog-hero {
            padding: 6rem 1rem;
        }
        
        .blog-hero h1 {
            font-size: 1.8rem;
        }
        
        .blog-post-content {
            padding: 1rem;
        }
    }
