    /* Style du carrousel */
    body {
      background-color: black;
      color: white;
      padding: 0;
      margin: 0;
    }

    .custom-swiper-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }

    .custom-swiper-container .swiper-wrapper {
      display: flex;
    }

    .custom-swiper-container .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .custom-swiper-container .swiper-pagination {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      text-align: center;
    }

    .custom-swiper-container .swiper-pagination-bullet {
      background-color: white;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 4px;
    }

    .custom-swiper-container .swiper-pagination-bullet-active {
      background-color: red;
    }

    .custom-swiper-container .swiper-slide img {
      object-fit: cover; /* Couvre toute la largeur et la hauteur sans déformation */
      width: 100%; /* L'image occupe toute la largeur du slide */
      height: 100%; /* L'image occupe toute la hauteur du slide */
    }

    /* Adaptation pour les petits écrans */
    @media (max-width: 600px) {
      .custom-swiper-container .swiper-slide img {
        width: 100%; /* Les images occuperont toute la largeur */
        height: auto; /* Conserver le ratio sans distorsion */
      }
    }