.hero-banner {
  margin-top: 80px;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1D1D3A, #1573D4);
  color: #FFFBF2;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #FFFBF2, #B6D23C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #FFFBF2;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-section {
  padding: 4rem 0;
  background: #FFFBF2;
}

.carousel-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1D1D3A;
  position: relative;
}

.carousel-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1573D4;
  border-radius: 2px;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(29, 29, 58, 0.1);
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 400px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(29, 29, 58, 0.8));
  color: #FFFBF2;
  padding: 2rem;
  text-align: center;
}

.slide-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.slide-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.slide-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #B6D23C;
  color: #1D1D3A;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid #B6D23C;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slide-btn:hover {
  background: #a4bf36;
  transform: translateY(-2px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 251, 242, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #1D1D3A;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
  background: #FFFBF2;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(29, 29, 58, 0.2);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 251, 242, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator.active {
  background: #FFFBF2;
  transform: scale(1.2);
}

.featured-products {
  padding: 4rem 0;
  background: rgba(29, 29, 58, 0.03);
}

.featured-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1D1D3A;
  position: relative;
}

.featured-products h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1573D4;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
  
  .carousel-section h2,
  .featured-products h2 {
    font-size: 2rem;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content h3 {
    font-size: 1.4rem;
  }
}