body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0e0e12, #1c1f27);
  color: #f2f2f2;
  line-height: 1.6;
  text-align: center;
  padding: 0 1.2rem;
}

header {
  padding: 2rem 1rem 3rem;
}

h1 {
  font-size: 2.5rem;
  color: #00c2ff;
  margin-bottom: 0.5rem;
}

h2 {
  color: #00c2ff;
  margin-top: 2.5rem;
}

p, li {
  max-width: 700px;
  margin: 0.5rem auto;
  font-size: 1rem;
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: #00c2ff;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #00e0ff;
  transform: translateY(-2px);
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #aaa;
}
footer a {
  color: #00c2ff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

.hero-text {
  flex: 1 1 400px;
  padding: 1rem;
}

.hero-image {
  flex: 1 1 300px;
  padding: 1rem;
}

.hero-image img {
  max-width: 260px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
  }
}
/* Left align the How It Works section */
.how {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.how ol {
  padding-left: 20px;
}

.how li {
  margin: 0.8rem 0;
  line-height: 1.5;
}
