
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #111827;
  position: sticky;
  top: 0;
}

.logo {
  font-weight: bold;
  color: #38bdf8;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.nav-links a:hover {
  color: #38bdf8;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

.hero h1 {
  font-size: 2.5rem;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: #111827;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #111827;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
}

.number {
  background: #38bdf8;
  color: black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #111827;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.featured {
  background: #1d4ed8;
  transform: scale(1.05);
}

.badge {
  background: #38bdf8;
  color: black;
  padding: 5px;
  border-radius: 10px;
  font-size: 12px;
}

.price {
  font-size: 2rem;
  color: #38bdf8;
}

button {
  margin-top: auto;
  padding: 10px;
  border: none;
  background: #38bdf8;
  cursor: pointer;
  border-radius: 8px;
}

.testimonials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #111827;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #38bdf8;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 30px;
  background: #111827;
}

.footer-links a {
  color: #38bdf8;
  margin: 0 10px;
  text-decoration: none;
}