/* ======================
   STYLES du hero de l'index
   ====================== */

        .hero {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #6050dcff;
            padding: 20px;
        }
        
        .hero { position: relative; overflow: hidden; }
	.hero-bg {
  	position: absolute; inset: 0;
  	object-fit: cover;
  	width: 100%; height: 100%;
  	z-index: -1;
	}


        .hero h1 {
            font-size: 3em;
            margin: 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            max-width: 800px;
            margin: 20px auto;
        }

        /* Styles pour les sections */
        section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .paragraph-box {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        /* Style spécifique pour le paragraph-box du CTA */
        .cta .paragraph-box {
            background-color: #4CAF50;
            color: white;
        }

        .cta .paragraph-box h2 {
            color: white;
        }

        .cta .paragraph-box p {
            color: white;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #3e8e41;
        }

        /* Styles pour le footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                height: 400px;
            }

            .hero h1 {
                font-size: 2em;
            }

            section {
                padding: 30px 15px;
            }
        }