h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5rem;
    color: #333;
  }

  .carousel-container {
    width: 60%;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Conteneur pour uniformiser les images */
  .image-wrapper {
    width: 100%; /* Largeur dynamique */
    aspect-ratio: 16 / 9; /* Ratio fixe pour uniformiser toutes les images */
    overflow: hidden; /* Masque le contenu qui dépasse */
    border-radius: 15px; /* Coins arrondis */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Ombre */
  }

  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Adapte l'image pour remplir le conteneur sans déformation */
  }

  /* Points de navigation */
  .slick-dots li button:before {
    color: #333;
    font-size: 16px;
  }
  .slick-dots li.slick-active button:before {
    color: #ffb703;
  }

  /* Flèches */
  .slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #ffb703;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .slick-prev {
    left: -50px;
  }
  .slick-next {
    right: -50px;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: #024047;
  }

  /* Design réactif pour les écrans plus petits */
  @media (max-width: 768px) {
    .image-wrapper {
      aspect-ratio: 4 / 3; /* Ratio ajusté pour les petits écrans */
    }
    .slick-prev, .slick-next {
      width: 30px;
      height: 30px;
    }
    .slick-prev:before, .slick-next:before {
      font-size: 16px;
    }
  }