.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #3598f3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    background: #3598f3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bold;
  }
}
