* { box-sizing: border-box; margin: 0; padding: 0; }
    .carousel-container {
      max-width: 900px;
      margin: 10px;
      overflow: hidden;
      position: relative;
      border-radius: 0px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .carousel-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }
    .carousel-slide {
      min-width: 100%;
      height: 350px;
    }
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Flèches */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      border: none;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      padding: 0.5rem 1rem;
      z-index: 2;
      border-radius: 50%;
    }
    .prev { left: 10px; }
    .next { right: 10px; }

    /* Points indicateurs */
    .carousel-dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .dot {
      width: 12px;
      height: 12px;
      background-color: rgba(255,255,255,0.6);
      border-radius: 50%;
      cursor: pointer;
    }
    .dot.active {
      background-color: white;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .carousel-slide {
        height: 200px;
      }
    }
    .caption {
      position: absolute;
      bottom: 40px;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 1rem;
      font-family: sans-serif;
    }