/* Modern Nova Pioneer-inspired redesign */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7faf7;
  color: #222;
}

header {
  background: #1a73e8;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

.navbar {
  background: #1b5e20;
  color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu li a:hover {
  color: #a5d6a7;
}

main {
  padding: 2rem;
  text-align: center;
}

.hero {
  background: linear-gradient(120deg, #43a047 0%, #388e3c 100%);
  color: #fff;
  padding: 5rem 0 3rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.cta-btn {
  background: #fff;
  color: #388e3c;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(67,160,71,0.08);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover {
  background: #a5d6a7;
  color: #1b5e20;
}
.cta-btn.secondary {
  background: #388e3c;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn.secondary:hover {
  background: #fff;
  color: #388e3c;
}

.section {
  padding: 3rem 0;
  background: #fff;
}
.section.alt {
  background: #e8f5e9;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(67,160,71,0.07);
  padding: 1.5rem 1.2rem;
  width: 220px;
  text-align: center;
}
.step-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.7rem;
}
.purchase-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.purchase-list li {
  background: #c8e6c9;
  color: #1b5e20;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
footer {
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  .nav-flex, .container { padding: 0 1rem; }
  .steps { flex-direction: column; gap: 1.5rem; }
  .purchase-list { flex-direction: column; gap: 1rem; }
}
