.new-homepage-block {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background-color: white;
}

.new-homepage-block .gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.new-homepage-block .gradient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-homepage-block .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.new-homepage-block .hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
}

.new-homepage-block .hero-text-content {
  max-width: 800px;
}

.new-homepage-block .hero-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 41px;
  color: #1a1a1a;
}

.new-homepage-block .hero-heading .purple-text {
  color: #982A86;
  font-weight: 600;
}

.new-homepage-block .hero-description {
  font-size: 20px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 46px;
}

.new-homepage-block .hero-description p {
  margin: 0;
}

.new-homepage-block .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 41px;
  flex-wrap: wrap;
}

.new-homepage-block .btn {
  background: #ffffff;
  color: #1B181B;
  border: 1px solid #982A86;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 100%;
  border-radius: 11px;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  margin-top: 0;
  box-shadow: 0 4px 14px rgba(164, 24, 107, 0.18);
  transition: all 0.3s ease;
}

.new-homepage-block .btn-primary {
  background: #ffffff;
  color: #1B181B;
  border: 1px solid #982A86;
}

.new-homepage-block .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.new-homepage-block .btn-secondary {
  background: #ffffff;
  color: #1B181B;
  border: 1px solid #982A86;
}

.new-homepage-block .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.new-homepage-block .compliance-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.new-homepage-block .badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-homepage-block .badge-image {
  max-width: 85px;
  height: auto;
  object-fit: contain;
}

.new-homepage-block .hero-image-content {
  width: 100%;
  max-width: 1100px;
}

.new-homepage-block .main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .new-homepage-block {
    padding: 60px 0 80px;
  }

  .new-homepage-block .hero-heading {
    font-size: 36px;
  }

  .new-homepage-block .hero-description {
    font-size: 18px;
  }

  .new-homepage-block .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .new-homepage-block .btn {
    width: 100%;
    text-align: center;
  }

  .new-homepage-block .compliance-badges {
    gap: 15px;
  }

  .new-homepage-block .badge-image {
    max-width: 50px;
  }
}

@media (max-width: 480px) {
  .new-homepage-block .hero-heading {
    font-size: 28px;
  }

  .new-homepage-block .hero-description {
    font-size: 16px;
  }

  .new-homepage-block .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
