body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5faff;
  color: #000;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  background: #0052ff;
  color: white;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
}
.hero h1 span {
  color: #00cc00;
}
.hero p {
  font-size: 1.1rem;
  margin-top: 15px;
}

.cta-button {
  display: block;
  width: 100%;
  max-width: 500px;
  background: #00cc00;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  margin: 25px auto;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #00b300;
}

.steps {
  margin-top: 40px;
}
.step {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-circle {
  background: #0052ff;
  color: white;
  font-weight: 600;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  flex-shrink: 0;
}
.step-content h3 {
  margin: 0;
  font-weight: 600;
}
.step-content p {
  margin: 5px 0 0;
}

.testimonial {
  background: #eaf3ff;
  border-left: 4px solid #0052ff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.testimonial .name {
  color: #0052ff;
  font-weight: 700;
}
.testimonial .stars {
  color: #ffc107;
  margin: 5px 0;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #777;
}
