.blog-hero {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 100px 0 60px;
            text-align: center;
        }

        .blog-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .blog-meta {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .blog-content {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            background: transparent;
            padding: 0;
            box-shadow: none;
        }

        .blog-main {
            flex: 2;
            background: var(--white);
            border-radius: 15px;
            padding: 50px;
            box-shadow: var(--shadow-md);
        }

        .blog-sidebar {
            flex: 1;
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            height: fit-content;
        }

        .blog-sidebar h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .recent-blog-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }

        .recent-blog-item:hover {
            transform: translateX(5px);
        }

        .recent-blog-thumb {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 6px;
        }

        .recent-blog-info h5 {
            font-size: 14px;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.4;
        }

        .blog-featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
            }

            .blog-sidebar {
                width: 100%;
            }
        }

