        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
            background-color: #F5F5F5;
        }
        
        header {
            background: #FFFFFF;
            padding: 20px;
        }
        .logo {
            max-width: 250px;
        }
        section {
            padding: 10px 10px;
        }
        .carousel {
            overflow: hidden;
            width: 100%;
            position: relative;
        }
.carousel-inner {
            display: flex;
            transition: transform 1s ease-in-out;
        }

        .avis {
            flex: 0 0 33.33%; /* 3 avis à la fois en desktop */
            padding: 20px;
            box-sizing: border-box;
            text-align: center;
        }
        .photo-avis {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #ccc;
        }
       .bulle {
            position: relative;
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            margin-top: 10px;
            display: inline-block;
            max-width: 600px;
            box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
           white-space: normal;            }

        }
        .bulle:after {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 10px;
            border-style: solid;
            border-color: transparent transparent #fff transparent;
        }
        
           form {
            max-width: 400px;
            margin: 20px auto;
            background: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
        }
        input, textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            background: #2C3E50;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
      .carousel-container {
            overflow: hidden;
            width: 100%;
            background-color: #fff;
            position: relative;
            padding: 20px 0;
        }
        .carousel-track {
            display: flex;
            transition: transform 1s ease-in-out;
            gap: 20px; /* Ajoute un espace entre les images */
        }
        .carousel-item {
            min-width: 320px;
            text-align: center;
            margin: 0 10px;
        }
        .carousel-item img {
            width: 300px;
            height: auto;
            border-radius: 10px;
        }
       .carousel-item p {
            margin-top: 5px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Arial Black', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .carousel-item p img {
            height: 40px;
            width: auto;
            margin-bottom: 5px;
        } img.icon {
            width: 100px;
padding: 3px;        }
        
        @media screen and (max-width: 768px) {
            .carousel-item img {
                width: 150px;
            }
            .carousel-item {
                min-width: 170px;
            }
  .carousel-inner {
                width: 100%;
            }
            .bulle {
                max-width: 90%;
white-space: normal;            }
            
            .avis {
                flex: 0 0 100%; /* 1 avis à la fois sur mobile */
            }
        }   
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #F5F5F5;
            margin: 0;
            padding: 0;
        }
     .about-section {
            padding: 10px 10px;
            background-color: #fff;
            text-align: center;
        }
        .about-section h2 {
            color: #2C3E50;
        }
        .about-section p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.6;
            color: #555;
        }
        .features-section {
            display: flex;
            align-items: stretch; /* Permet aux éléments d'avoir la même hauteur */
            justify-content: center;
            flex-wrap: wrap;
            padding: 10px 10px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 65%;
            text-align: center;
            padding: 20px;
        }
        .feature-box {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
        .feature-box img {
            width: 80px;
            margin-bottom: 10px;
        }
        .feature-box h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .feature-box p {
            font-size: 14px;
            color: #555;
        }
        .features-image {
            flex: 1;
            max-width: 35%;
            text-align: center;
            display: flex;
            align-items: flex-start; /* Alignement en haut */
            justify-content: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            min-height: 100%; /* Ajuste la hauteur du div à celle de la grille */
        }
        .features-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: contain;
            
            
        }
    
    .contact-section {
            display: flex;
            justify-content: space-around;
            align-items: stretch;
            flex-wrap: wrap;
            padding: 20px 20px;
        }
        .contact-info, .contact-form {
            width: 45%;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 5px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        .contact-form button {
            background: #007BFF;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }
    
    .footer {
            background: #2C3E50;
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: 50px;
        }
        @media screen and (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
            .features-image {
                max-width: 100%;
                min-height: auto;
            }
            
            
        }
        @media screen and (max-width: 768px) {
            .features-section {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .features-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            .features-image {
                max-width: 100%;
                min-height: auto;
            }
            .features-image img {
                width: 100%;
                height: auto;
            }
              .contact-section {
                flex-direction: column;
                align-items: center;
            }
            .contact-info, .contact-form {
                width: 90%;
                margin-bottom: 20px;
            }
            
            img.icon {
            width: 50px;
padding: 3px;        }
        }
    /* CSS Document */

