body {
  font-family: 'Syne', Helvetica, Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
  margin: 0;
  min-height: 100vh;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: #fff;
  text-align: center;
  padding: 2rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2e7d32;
  letter-spacing: 2px;
}
.hero-desc {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #444;
}
.cta-btn {
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,125,50,0.08);
  transition: box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  box-shadow: 0 4px 16px rgba(46,125,50,0.18);
  background: #388e3c;
}
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
}
