/*.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 400px;
}
.slide {
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.next-btn {
  background: none;
  border: 1px solid #000;
  padding: 10px 20px;
  cursor: pointer;
  text-transform: uppercase;
}
.dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}
.dot.active {
  background-color: #000;
}
*/