 /* PASTE ALL YOUR EXISTING CSS STYLES HERE - exactly as you have them */
        /* ---------- RESET & BASE ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f5f7fb;
            font-family: 'Circular Std Book', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            color: #1e293b;
            height: auto !important;
            padding: 200px 0px 0px 0px;
        }

        /* Header Navigation */
        .site-header {
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo a {
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            color: #4f46e5;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #4f46e5;
        }

        /* Main Container */
        .blog-page {
            max-width: 1280px;
            margin: 0 auto;
            margin-bottom: 150px;
            padding: 0 1.5rem;
        }

        /* Hero Section */
        .blog-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
            border-radius: 2rem;
        }

        .blog-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .blog-hero p {
            font-size: 2rem;
            color: #475569;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .categories-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .filter-btn {
            background: #f1f5f9;
            border: none;
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 1.5rem;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #00afc1;
            color: white;
            text-decoration: none;
        }

        .search-box {
            display: flex;
            gap: 0.5rem;
        }

        .search-box input {
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 2rem;
            font-size: 1.6rem;
            width: 250px;
            background: white;
        }

        .search-box button {
            background: #145d9d;
            border: none;
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            color: white;
            cursor: pointer;
            font-weight: 500;
            font-size: 1.5rem;
        }

        /* Blog Grid - Responsive Cards */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 1.25rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
        }

        .card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: #e2e8f0;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-category {
            display: inline-block;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #00afc1;
            background: #eef2ff;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            margin-bottom: 0.75rem;
        }

        .card-title {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .card-excerpt {
            color: #475569;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: #145d9d;
            font-weight: 600;
            font-size: 1.5rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .read-more:hover {
            gap: 0.5rem;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .page-link {
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 0.5rem;
            color: #475569;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .page-link:hover,
        .page-link.active {
            background: #145d9d;
            border-color: #145d9d;
            color: white;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 1rem;
            color: #64748b;
            grid-column: 1/-1;
        }

        /* Footer */
        .site-footer {
            background: white;
            border-top: 1px solid #e2e8f0;
            padding: 2rem 1.5rem;
            text-align: center;
            color: #64748b;
            font-size: 0.875rem;
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-box {
                width: 100%;
            }
            
            .search-box input {
                flex: 1;
            }
            
            .header-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 500px) {
            body {
                padding: 150px 0px 0px 0px;
            }
            
            .blog-page {
                margin-bottom: 70px;
                padding: 0 1rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }