.carousel-container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  margin-top: 60px;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 277px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.carousel-item {
  position: absolute;
  width: 441.6px;
  /*min-height: 250px;*/
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) translateX(0) translateZ(0) scale(0.9);
  opacity: 0.7;
  z-index: 1;
}
.carousel-item.active {
  width: 489px;
  /*min-height: 288px;*/
  transform: translate(-50%, -50%) translateX(0) translateZ(0) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(29, 115, 224, 0.5);
}
.active .card-title {
  color:#1d73e0;
}
/**/
.carousel-item.prev {
  transform: translate(calc(-50% - 441px * 0.9), -50%) translateZ(-150px)
    scale(0.9) rotateY(0deg);
  opacity: 0.7;
  z-index: 5;
}
.carousel-item.next {
  transform: translate(calc(-50% + 441px * 0.9), -50%) translateZ(-150px)
    scale(0.9) rotateY(-0deg);
  opacity: 0.7;
  z-index: 5;
}
.carousel-item.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) translateZ(-400px) scale(0.4);
  z-index: 0;
  pointer-events: none;
}
.card-content {
  padding-top: 30px;
  padding-bottom: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-image {
  width: 79px;
  height: 79px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image img {
  width: 79px;
  height: 79px;
}
.card-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.carousel-indicators {
  margin-top: 35px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.indicator {
  width: 9px;
  height: 9px;
  background: #b3b3b3;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.indicator.active {
  background: #1d73e0;
}
