/* Particles container styles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
  background: transparent;
}

/* Ensure hero section content stays above particles */
.hero-section__content {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}
.hero-section .hero-section__content {
  margin-top: 4rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.hero-section .hero-section__content .hero-section__badge {
  color: #0D9488;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #CCFBF1;
  border-radius: 2rem;
  padding: 1.2rem 1.6rem;
}
.hero-section .hero-section__content .hero-section__heading {
  font-size: 5rem;
  font-weight: 700;
  line-height: 6.5rem;
  text-align: center;
}
.hero-section .hero-section__content .hero-section__body-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.5rem;
  text-align: center;
}
.hero-section .hero-section__content .hero-section__body-text span {
  color: #4B5563;
}
@media (max-width: 1200px) {
  .hero-section .hero-section__content {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-section__content {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-section__content {
    width: 90%;
  }
}/*# sourceMappingURL=hero-section.css.map */