   #home-content-block {
      margin-top: 0px;
      padding-top: 0px;
   }
    .carousel-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 100%;
      margin: auto;
    }

    .carousel {
      width: 100%;
      max-width: 900px;
      aspect-ratio: 16 / 9;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      border: 1px solid #ddd;
      background-color: #fff;
    }

    .slides img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slides img.active {
      opacity: 1;
    }

    .dots {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
    }

    .dots span.active {
      background: #006859;
    }

@media (max-width: 860px) {
  .dots {
    display: none;
  }

  .content-block#home-images {
    margin: 0;
    padding: 0;
  }
}
