/* Слайдер */

.container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.slider {
  overflow: hidden;
  border-radius: 8px;
  transition: 0.2s;
}

.image {
  display: none; /* Все слайды изначально скрыты */
}

.image.active {
  display: block; /* Активный слайд показывается */
  transition: 0.2s;
}

.image img {
  width: 7 0%;
  height: auto;
  display: block;
  transition: 0.2s;
}

/* Стили кнопок */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Индикаторы */
.slider-indicators {
  text-align: center;
  margin-top: 15px;
}

.indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background: #333;
}
