
        .blog-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .blog-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .blog-hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .featured-post-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-featured h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
        }

        .featured-post {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .featured-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .featured-content {
            padding: 40px;
        }

        .post-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .post-date, .post-category {
            font-size: 0.9rem;
            color: #666;
        }

        .post-category {
            background: #f0f0f0;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .featured-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }

        .featured-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .blog-posts-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .blog-post-card:hover {
            transform: translateY(-5px);
        }

        .post-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .post-content {
            padding: 25px;
        }

        .post-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .post-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        .newsletter-container {
            background: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
        }

        .newsletter-content h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }

        .categories-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .categories-container h2 {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .category-card h3 {
            padding: 20px;
            margin: 0;
            color: #333;
        }

        .cta-container {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .nav-normal .links .active {
            color: #667eea;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .featured-post {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .blog-hero-content h1 {
                font-size: 2rem;
            }

            .posts-grid {
                grid-template-columns: 1fr;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

