        /* Blog Page Specific Styles */
        .blog-hero {
            background:
                linear-gradient(135deg, rgba(17, 24, 39, 0.35) 0%, rgba(31, 41, 55, 0.4) 100%),
                url('images/banniere1.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: rgba(241, 196, 15, 0.15);
            border-radius: 50%;
            filter: blur(60px);
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: rgba(26, 188, 156, 0.15);
            border-radius: 50%;
            filter: blur(80px);
        }

        .blog-hero h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
        }

        .blog-hero .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .blog-hero .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .blog-hero .breadcrumb a:hover {
            color: white;
        }

        /* Featured Articles */
        .featured-section {
            padding: 60px 0;
            background: linear-gradient(180deg, #F0FDF9 0%, #FFFFFF 100%);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .featured-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .featured-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .featured-card.main {
            grid-row: span 2;
        }

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

        .featured-card.main img {
            height: 350px;
        }

        .featured-card-content {
            padding: 1.5rem;
        }

        .featured-card .category {
            display: inline-block;
            background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .featured-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .featured-card.main h3 {
            font-size: 1.5rem;
        }

        .featured-card p {
            color: #6B7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .featured-card .meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #9CA3AF;
        }

        .featured-card .meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Articles Grid */
        .articles-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            color: #6B7280;
            font-size: 1.1rem;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #E5E7EB;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .article-card:hover {
            border-color: #1ABC9C;
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(26, 188, 156, 0.15);
        }

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

        .article-card-content {
            padding: 1.5rem;
        }

        .article-card .tag {
            display: inline-block;
            background: #F0FDF9;
            color: #1ABC9C;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .article-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .article-card p {
            color: #6B7280;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .article-card .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            color: #1ABC9C;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .article-card .read-more .material-symbols-outlined {
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .article-card:hover .read-more .material-symbols-outlined {
            transform: translateX(4px);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pagination a {
            background: white;
            color: #374151;
            border: 1px solid #E5E7EB;
        }

        .pagination a:hover {
            background: #1ABC9C;
            color: white;
            border-color: #1ABC9C;
        }

        .pagination .current {
            background: #1ABC9C;
            color: white;
        }

        .pagination .dots {
            color: #9CA3AF;
            border: none;
            background: none;
        }

        .pagination .next-page {
            background: linear-gradient(135deg, #1ABC9C, #16A085);
            color: white;
            border: none;
            padding: 0 20px;
        }

        .pagination .next-page:hover {
            background: linear-gradient(135deg, #16A085, #138D75);
            transform: translateX(2px);
        }

        /* Newsletter CTA */
        .newsletter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .newsletter-container h2 {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .newsletter-container p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 450px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-form button {
            background: #F9D423;
            color: #111827;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #F5C500;
            transform: scale(1.02);
        }

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

            .featured-card.main {
                grid-row: span 1;
            }

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

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