.carousel-section {  
  background: #0f293e;
  padding-bottom: 2rem;
}

.carousel {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  background: #0f293e;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-images img {
  flex-shrink: 0;
  min-width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  background-color: #0f293e;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

@media screen and (max-width: 768px) {
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.6rem;
  }
}
