body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f4f8f6;
  color: #222;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2e7d32;
  padding: 1rem 2rem;
  color: #fff;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c8e6c9;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  background: #fff;
  color: #2e7d32;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn.offset {
  background: #c8e6c9;
  color: #1b5e20;
}

.btn:hover {
  background: #c8e6c9;
  color: #1b5e20;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: #e8f5e9;
  min-height: 70vh;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #388e3c;
}

.hero-content b {
  color: #1b5e20;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta {
  display: inline-block;
  background: #388e3c;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.cta:hover {
  background: #2e7d32;
}

.hero-graphic img {
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.12);
  max-width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-graphic {
    margin-top: 2rem;
  }
}
</style>