<style>
.custom-carousel {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.carousel-image {
  display: inline-block;
  width: 100%;
  animation: scroll 20s linear infinite;
}

.carousel-image img {
  width: 100%;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
</style>
