    body {
            font-family: 'Montserrat', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: black;
        }
        header {
            height: 50px;
            max-width: 1600px;
            margin: auto;
            background-color: #f8f8f8;
            text-align: left;
            padding-left: 10px;
            display: flex;
            align-items: center;
        }
        header img {
            height: 30px;
            max-width: 100%;
            margin-top: 8px;
            object-fit: contain;
        }
        .main-content {
            width: 100%;
            height: auto;
            background-color: black;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .hero-image {
            width: 100%;
            max-width: 1680px;
            height: 1600px;
            background-image: url('Visuel-Pub-1680x1878-v2.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Aplat avec le texte de description à 800px du haut */
        .text-overlay {
            position: absolute;
            top: 750px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0); /* Transparence */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            text-align: center;
            width: 90%;
            max-width: 800px;
            font-family: 'Montserrat', sans-serif;
            z-index: 5; 
        }
        .text-overlay h1 {
            font-size: 36px;
            margin: 0;
        }
        .text-overlay p {
            font-size: 18px;
            margin-top: 10px;
        }
        .accroche {
            position: absolute;
            top: 600px; 
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Angelface', sans-serif;
            font-size: 160px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            text-align: center;
            width: 100%;
            z-index: 4; /* Au-dessus de l'aplat */
        }



        .description {
            position: absolute;
            top: 850px; /* Placer la description juste en dessous de l'aplat */
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 18px;
            color: white;
            padding: 20px;
            font-family: 'Montserrat', sans-serif;
            width: 90%;
            max-width: 800px;
            z-index: 3; /* Au-dessus de l'image et sous l'aplat */
            background-color: rgba(0, 0, 0, 0.5); /* Transparence sur la description pour le fond visible */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                height: 60px;
                padding-left: 10px;
            }

            .text-overlay h1 {
                font-size: 28px;
            }

            .text-overlay p {
                font-size: 16px;
            }

            .top-text {
                font-size: 40px;
            }

            .description {
                font-size: 16px;
                margin: 10px;
            }
            .accroche {
                font-size: 110px;
            }
        }

        @media (max-width: 480px) {
            .text-overlay h1 {
                font-size: 24px;
            }

            .text-overlay p {
                font-size: 14px;
            }

            .top-text {
                font-size: 30px;
            }

            .description {
                font-size: 14px;
                margin: 5px;
            }
        }