/* Carousel styles */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 1rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-button {
  background-color: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: var(--primary-dark);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicator.active {
  background-color: white;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
