 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Hero avec Carousel */
        .blog-hero {
            margin-top: 80px;
            height: 70vh;
            position: relative;
            overflow: hidden;
        }

        .hero-carousel {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .hero-slide:nth-child(1) {
            background-image: url('../Images/img9.jpeg');
        }

        .hero-slide:nth-child(2) {
            background-image: url('../Images/img3.jpeg');
        }

        .hero-slide:nth-child(3) {
            background-image: url('../Images/img1.jpeg');
        }

        .hero-slide:nth-child(4) {
            background-image: url('../Images/img4.jpeg');
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.75) 0%, rgba(155, 89, 182, 0.75) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.3rem;
            font-weight: 300;
        }

        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-dot.active {
            background: white;
            width: 40px;
            border-radius: 10px;
        }

        /* Blog Container */
        .blog-container {
            max-width: 100%;
            margin-top: 5%;
            margin: 10px auto;
            padding: 5rem 5% 3rem;
        }

        /* Article avec image de fond */
        .blog-article {
            position: relative;
            margin-bottom: 3rem;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
        }

        .blog-article:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
        }

        .blog-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .blog-article::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 2;
        }

        /* Images de fond pour chaque article */
        .blog-article.article-1::before {
            background-image: url('../Images/img6.jpeg');
        }

        .blog-article.article-2::before {
            background-image: url('../Images/img11.jpeg');
        }

        .blog-article.article-3::before {
            background-image: url('../Images/img12.jpeg');
        }

        .blog-article.article-4::before {
            background-image: url('../Images/img7.jpeg');
        }

        .blog-article.article-5::before {
            background-image: url('../Images/img13.jpeg');
        }

        .blog-article.article-6::before {
            background-image: url('../Images/img9.jpeg');
        }

        .blog-article.article-7::before {
            background-image: url('../Images/img3.jpeg');
        }

        .blog-article.article-8::before {
            background-image: url('../Images/img1.jpeg');
        }

        .article-content {
            position: relative;
            z-index: 3;
            padding: 3rem;
            width: 100%;
            color: white;
        }

        .article-category {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .article-excerpt {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 800px;
        }

        .read-more-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .read-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            background: #3498db;
            color: white;
        }

        /* Article complet élargi */
        .full-article-expanded {
            display: none;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            margin-top: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .full-article-expanded.active {
            display: block;
            animation: slideDown 0.5s ease;
        }

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

        .full-article-expanded h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 2rem 0 1rem;
        }

        .full-article-expanded p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .full-article-expanded ul, .full-article-expanded ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .full-article-expanded li {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .full-article-expanded strong {
            color: #2c3e50;
            font-weight: 700;
        }

        .close-article {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.8rem 2rem;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-article:hover {
            background: #c0392b;
            transform: scale(1.05);
        }

        /* Carousel d'images dans les articles */
        .article-image-carousel {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 15px;
            margin: 2rem 0;
        }

        .carousel-images {
            display: flex;
            height: 100%;
            transition: transform 0.6s ease;
        }

        .carousel-image {
            min-width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-hero {
                height: 50vh;
            }

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

            .hero-content p {
                font-size: 1.1rem;
            }

            .blog-container {
                padding: 3rem 5% 2rem;
            }

            .blog-article {
                min-height: 350px;
            }

            .article-content {
                padding: 2rem;
            }

            .article-title {
                font-size: 1.6rem;
            }

            .article-excerpt {
                font-size: 1rem;
            }

            .full-article-expanded {
                padding: 2rem 1.5rem;
            }

            .article-image-carousel {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .blog-hero {
                height: 40vh;
            }

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

            .hero-content p {
                font-size: 1rem;
            }

            .blog-article {
                min-height: 300px;
            }

            .article-content {
                padding: 1.5rem;
            }

            .article-title {
                font-size: 1.4rem;
            }

            .article-excerpt {
                font-size: 0.95rem;
            }

            .article-category {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }

            .read-more-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }