        .blog-hero {
            padding: 180px 10% 50px;
            position: relative;
            z-index: 2;
        }

        .blog-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .blog-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            animation: fadeInDownTitle 1s ease-out;
            line-height: 1.2;
        }

        @keyframes fadeInDownTitle {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            animation: floatUp 1s ease-out;
            margin: 0 auto;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Country Pills CSS */
        .country-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .country-pill {
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
        }

        .country-pill:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .country-pill.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .blog-section {
            padding: 2rem 10% 6rem;
            position: relative;
            z-index: 2;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-card .btn.secondary:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .blog-hero {
                padding: 140px 5% 30px;
            }

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

            .blog-hero-content p {
                font-size: 1.05rem;
                padding: 0 10px;
            }

            .blog-section {
                padding: 2rem 5% 4rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
