.carousel-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-wrapper {
  overflow: hidden;

}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 40px 30px;
}

.slide-header {
  text-align: center;

}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.slide-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #E73446 0%, #E73446 33%, #E17000 33%, #E17000 66%, #BED600 66%, #BED600 100%);
  border-radius: 2px;
}

.slide-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.video-container {
  width: 100%;
  aspect-ratio: 16/7;

  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.video-container iframe {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

.video-placeholder {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.features-list {
  list-style: none;
  padding-bottom: 0;
  padding-left: 0px !important;
  max-width: 600px;
  margin: 0 auto;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  margin-bottom: 16px;
  font-size: 20px;
  color: #000;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 12px;
  margin-top: 2px;
}

.cta-button {
  display: block;
  margin: 0 auto;
  width: 40%;
  padding: 16px 24px;
  background: #0033A0;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background: #002580;
  color: #fff !important;
}

.video-container video{
  width: 80% !important;
  border-radius: 12px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none;
}

.carousel-arrow {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}

/*.carousel-arrow:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
*/}

.carousel-arrow svg {
  width: 50px;
  height: 50px;
  fill: #0C2EA0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0033A0;
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .carousel-slide {
    padding: 30px 20px;
  }

  .slide-title {
    font-size: 32px;
  }

  .slide-subtitle {
    font-size: 16px;
    max-width: 100%;
    padding: 15px;
  }

  .video-container iframe,
  .video-container video {
    width: 100% !important;
  }

  .features-list {
    padding-bottom: 20px;
  }

  .features-list li {
    font-size: 16px;
    align-items: center;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .carousel-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    pointer-events: all;
  }

  .carousel-arrow {
    position: static;
  }

  .cta-button {
    width: 100%;
    font-size: 18px;
    padding: 14px 20px;
  }

  .carousel-dots {
    order: -1;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 28px;
  }

  .slide-subtitle {
    font-size: 14px;
  }

  .features-list li {
    font-size: 14px;
  }

  .cta-button {
    font-size: 16px;
  }
}