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

        .blog-hero h1 {
            font-size: 44px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .blog-meta {
            font-size: 15px;
            opacity: 0.88;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 7px;
        }

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

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            padding: 0 20px;
        }

        .blog-main {
            flex: 2;
            background: var(--white);
            border-radius: 16px;
            padding: 52px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        }

        .blog-main p {
            line-height: 1.85;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .blog-main h2 {
            font-size: 26px;
            margin-top: 46px;
            margin-bottom: 16px;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 2px solid #e5e7eb;
        }

        .blog-main h3 {
            font-size: 19px;
            margin-top: 28px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .blog-main ul {
            padding-left: 22px;
            margin-bottom: 18px;
        }

        .blog-main ul li {
            margin-bottom: 12px;
            line-height: 1.75;
            color: var(--text-dark);
        }

        .blog-sidebar {
            flex: 1;
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .blog-sidebar h4 {
            color: var(--primary-color);
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .recent-blog-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
            padding-bottom: 18px;
            border-bottom: 1px solid #f3f4f6;
        }

        .recent-blog-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

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

        .recent-blog-thumb {
            width: 76px;
            height: 58px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

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

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

        .intro-banner {
            background: var(--gradient-primary);
            color: white;
            border-radius: 14px;
            padding: 32px 36px;
            margin: 32px 0;
            display: flex;
            align-items: flex-start;
            gap: 22px;
        }

        .intro-banner .banner-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .intro-banner p {
            margin: 0;
            font-size: 16px;
            line-height: 1.85;
            color: white;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-left: 4px solid #22c55e;
            border-radius: 10px;
            padding: 22px 26px;
            margin: 28px 0;
        }

        .back-to-blog a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--primary-color);
            padding: 10px 22px;
            border-radius: 8px;
            transition: background 0.3s ease, color 0.3s ease;
            font-size: 15px;
        }

        .back-to-blog a:hover {
            background: var(--primary-color);
            color: white;
        }

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

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

            .blog-main {
                padding: 32px 24px;
            }
        }

        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 28px;
            }
        }

