* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 600px;
  padding: 4rem 2rem;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: #111;
  text-align: center;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.cta-wrap {
  text-align: center;
}

.cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: #2a6e4e;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta:hover {
  background: #1f5a3e;
}

.contact {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #888;
}

footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}
