body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-text {
  flex: 1 1 500px;
  padding: 40px;
}

.hero-text h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #000;
}

.hero-text p {
  font-size: 1rem;
  color: #555;
}

.btn-green {
  background-color: #8bc34a;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  color: white;
  transition: 0.3s;
}

.btn-green:hover {
  background-color: #76a840;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  background-color: #8bc34a;
  padding: 50px;
  clip-path: ellipse(80% 100% at 100% 50%);
}

.hero-image img {
  max-width: 250px;
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-image {
    clip-path: none;
    width: 100%;
  }
}

