
        .cta-button {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
        }

        /* Hero Section */
        .blog-hero {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1a1a1a;
            padding: 6rem 5% 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
        }

        .blog-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .blog-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .blog-hero p {
            font-size: 1.3rem;
            color: #2d2d2d;
            margin-bottom: 2rem;
        }

        /* Filter Section */
        .filter-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 5%;
        }

        .filter-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            background: white;
            color: #1a1a1a;
            border: 2px solid #fef3c7;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            border-color: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        /* Blog Grid */
        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 5%;
        }

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

        .blog-card {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.25);
            border-color: #fbbf24;
        }

        .blog-card-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .blog-category {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-date {
            color: #999;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .blog-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.3;
        }

        .blog-card h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-card h3 a:hover {
            color: #f59e0b;
        }

        .blog-excerpt {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #fef3c7;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #1a1a1a;
        }

        .author-info {
            flex-grow: 1;
        }

        .author-name {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 0.9rem;
        }

        .author-title {
            font-size: 0.8rem;
            color: #999;
        }

        .read-more {
            color: #f59e0b;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .read-more:hover {
            gap: 0.8rem;
        }

        /* Featured Post */
        .featured-post {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border: 2px solid #fbbf24;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .featured-label {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .featured-post h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 800;
            line-height: 1.2;
        }

        .featured-post h2 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .featured-post h2 a:hover {
            color: #f59e0b;
        }

        .featured-excerpt {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .featured-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
        }


        /* Responsive */
        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.5rem;
            }

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

            .featured-post {
                grid-template-columns: 1fr;
                padding: 2rem;
            }

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

            .nav-links {
                display: none;
            }

            .blog-hero::after {
                background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
            }

            .newsletter-section::before {
                background: linear-gradient(to top, transparent 49%, #ffffff 50%);
            }
        }