:root {
  --green: #2E7D32;
  --blue: #1565C0;
  --white: #ffffff;
  --gray: #f4f4f4;
  --dark: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
}
header {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 90px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.hero {
  background: url('assets/images/landing-new.png') center/cover no-repeat;
  color: var(--white);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-btn {
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.how-it-works {
  padding: 4rem 2rem;
  background: var(--gray);
  text-align: center;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.step {
  background: var(--white);
  padding: 1rem;
  border-radius: 6px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}
.eligibility-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}
footer {
  text-align: center;
  padding: 2rem;
  background: var(--green);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
}