/* Global styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0C1C3A;
  color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #30C587;
  margin-top: 0;
}

p {
  color: #e0e0e0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #0C1C3A;
}

.logo {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.btn-signup {
  background-color: #30C587;
  color: #0C1C3A !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #102348, #0C1C3A);
}

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

.btn-primary {
  background-color: #30C587;
  color: #0C1C3A;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* Benefits */
.benefits {
  padding: 60px 20px;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.benefit {
  background-color: #14294d;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  font-weight: 600;
}

/* How it works */
.how-it-works {
  padding: 60px 20px;
  text-align: center;
}

.how-it-works ol {
  list-style: decimal;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px;
  color: #ffffff;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background-color: #112542;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 600px;
  color: #d0f0e3;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
}

/* Footer */
footer {
  background-color: #08162f;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #999;
}
