.image-slideshow {
  width: 100%;
  margin: 50px 0;
  padding: 20px;
  background: #f0f4f8;
  text-align: center;
  border-radius: 20px;
}

.slider-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #0c2d56;
}

.slider-subline {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.slideshow-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-image.active {
  opacity: 1;
  z-index: 1;
}

