* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #f7fff8;
  color: #1f1f28;
}
.hero {
  background: linear-gradient(120deg, #a2f2ff 0%, #ffb6a2 100%);
  padding: 80px 0;
  text-align: center;
  color: #1f1f28;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
}
.btn-cta {
  background-color: #1f1f28;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-cta:hover {
  background-color: #333;
}
.feature-icon {
  font-size: 2.5rem;
  color: #ffb6a2;
}
.section-bg {
  background-color: #e3faf5;
}
