body {
  margin: 0;
  font-family: Georgia, Georgia;
  color: #111;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 60px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cta {
  background: #0a1f44;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(#f5f7fa, white);
}

.hero h1 {
  font-size: 42px;
  max-width: 800px;
  margin: auto;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
}

.hero-buttons {
  margin: 25px 0;
}

.primary {
  background: #0a1f44;
  color: white;
  padding: 14px 28px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.secondary {
  border: 1px solid #0a1f44;
  padding: 14px 28px;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.features,
.process,
.testimonials,
.cta-section,
.faq {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 25px;
  border-radius: 10px;
  background: #f9f9f9;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #0a1f44;
  color: white;
}
