
        body { background-color: #f8f9fa; }
        
        .blog-hero {
            background: linear-gradient(135deg, #ffffff 0%, #f4f7fe 100%);
            padding: 140px 2rem 70px;
            text-align: center;
            border-bottom: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .blog-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .grid-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .post-card:hover { 
            transform: translateY(-6px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: var(--blue);
        }
        
        .post-thumb { 
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .post-thumb img { 
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s;
        }
        
        .post-card:hover .post-thumb img { 
            transform: scale(1.06);
        }
        
        .post-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--blue);
            color: white;
            padding: 0.35rem 0.85rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .post-body { 
            padding: 1.75rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .post-cat { 
            color: var(--blue);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            letter-spacing: 0.5px;
        }
        
        .post-title { 
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.85rem;
            line-height: 1.3;
            color: var(--black);
            text-decoration: none;
            display: block;
            transition: color 0.2s;
        }
        
        .post-title:hover {
            color: var(--blue);
        }
        
        .post-exc { 
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            flex: 1;
            line-height: 1.6;
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--gray-500);
            padding-top: 1rem;
            border-top: 1px solid var(--gray-100);
        }
        
        .btn-read { 
            color: var(--blue);
            font-weight: 700;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.2s;
        }
        
        .btn-read:hover {
            gap: 0.75rem;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--gray-200);
        }
        
        .section-header h2 {
            font-size: 1.85rem;
            color: var(--black);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .section-header .icon {
            width: 42px;
            height: 42px;
            background: var(--blue-light);
            color: var(--blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
        }
        
        .view-all {
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            transition: gap 0.2s;
        }
        
        .view-all:hover {
            gap: 0.75rem;
        }
        
        .cta-box {
            background: white;
            border: 1px solid var(--gray-200);
            border-left: 4px solid var(--red);
            padding: 2rem;
            border-radius: 12px;
            margin: 4rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.06);
        }
        
        .cta-box h3 {
            margin: 0 0 0.5rem 0;
            color: var(--black);
            font-size: 1.4rem;
        }
        
        .cta-box p {
            margin: 0;
            color: var(--gray-600);
            font-size: 1rem;
        }
        
        @media(max-width: 1100px) {
            .grid-posts { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
        }
        
        @media(max-width: 768px) {
            .blog-hero { padding: 110px 1.5rem 60px; }
            .grid-posts { grid-template-columns: 1fr; gap: 1.5rem; }
            .cta-box { flex-direction: column; text-align: center; padding: 1.75rem; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .section-header h2 { font-size: 1.5rem; }
        }
        
        @media(max-width: 480px) {
            .blog-hero { padding: 90px 1rem 50px; }
            .post-title { font-size: 1.1rem; }
            .section-header h2 { font-size: 1.35rem; }
            .cta-box h3 { font-size: 1.2rem; }
        }
    