.hero-how-section-container {
  /* height: 100vh; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.hero-how-section {
  display: flex;
  justify-content: center;
  padding: 200px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 160px;
}

.hero-how-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  /* margin-left: 20px; */
  min-width: 280px;
  gap: 40px;
  color: #fff;
  box-sizing: border-box;
}

.hero-how-left h1 {
  font-family: "Baloo Bhaijaan 2", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0;
  color: var(--text-dark);
}

.hero-how-left p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-gray);
  max-width: 90%;
}

.hero-how-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: start;
  padding-bottom: 0.3125rem;
  overflow-x: visible;
}

.hero-how-buttons a {
  text-decoration: none;
}

.btn-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 394px;
  height: 64px;
  border-radius: 999px;
  border: none;
  gap: 24px;
  background-color: #3fb84b;
  /* Font inside the button */
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}

.btn-hero:hover {
  background-color: #45c75a;
  color: #fff;
  border: 2px solid #45c75a;
  box-shadow: var(--XXSoftXSsoft) var(--YYSoftXSsoft) var(--BlurBlurSoftXSsoft)
      var(--SpreadSpreadSoftXSsoft) var(--PrimaryButtonsShadow),
    var(--XXHardXShard) var(--YYHardXShard) var(--BlurBlurHardXShard)
      var(--SpreadSpreadHardXShard) var(--PrimaryButtonsShadow);
}

.hero-how-buttons .btn-icon {
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hero-how-buttons .btn-icon path {
  fill: #fff;
  transition: fill 0.3s ease;
}

.hero-right {
  flex: 1 1 300px;
  position: relative;
  min-width: 280px;
  max-width: 700px;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.hero-right img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Responsive Breakpoints */
@media (max-width: 1500px) {
  .hero-how-section {
    padding: 130px;
  }
}

@media (max-width: 1200px) {
  .hero-how-section {
    gap: 2.5rem;
  }

  .hero-how-left {
    gap: 20px;
  }

  .hero-how-left h1 {
    font-size: 48px;
  }
  .hero-how-left p {
    padding-right: 0;
    font-size: 20px;
  }

  .btn-hero {
    font-size: 16px;
    width: 300px;
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .hero-how-section {
    flex-direction: column-reverse;
    gap: 2rem;
    /* padding: 0.625rem 0.75rem 0 0.75rem; */
    padding: 0;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .hero-how-left p {
    max-width: 100%;
  }

  .hero-how-left,
  .hero-right {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    position: static;
  }

  .hero-how-left p {
    margin-left: auto;
    margin-right: auto;
    max-width: 830px;
  }

  .hero-how-buttons {
    justify-content: center;
  }

  .hero-right {
    max-width: 20rem;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-how-section {
    margin-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero-how-section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    /* margin-top: 20vh; */
  }

  .hero-how-section {
    gap: 2.5rem;
    margin-bottom: 100px;
  }

  .hero-how-left {
    gap: 0;
  }

  .hero-how-left h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .hero-how-left p {
    margin-bottom: 1.5rem;
    font-size: 16px;
  }

  .btn-hero {
    width: 100%;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .hero-how-section {
    margin-bottom: 150px;
  }
}
