/* about.css */
.about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-slider .slide {
  display: none;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.about-slider .slide.active {
  display: block;
}


 

  

/* Затемнение для лучшей читаемости текста поверх фото */
.about-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

/* Убедитесь, что статистика поверх затемнения */
.absolute {
  z-index: 2;
}
