@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #333;
  text-align: center;
}

header {
  padding: 60px 20px 20px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

h1 {
  font-size: 2.3em;
  color: #fff;
  margin-top: 20px;
}

p {
  color: #777a77;
  font-size: 1.1em;
  max-width: 600px;
  margin: 15px auto;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 25px;
}

.btn:hover {
  background: #1EBE5B;
  transform: scale(1.05);
}

.steps {
  padding: 50px 20px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 60px;
}

.steps h2 {
  color: #fff;
  font-size: 1.8em;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.step {
  background: white;
  border-radius: 20px;
  width: 260px;
  margin: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.emoji {
  font-size: 2em;
}

footer {
  padding: 20px;
  background: rgba(255,255,255,0.5);
  font-size: 0.9em;
  color: #333;
}
