* {
  box-sizing: border-box;
}

html {
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

body {
  margin: 0;
  color: #18342f;
  background: #f4f8f6;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.content {
  width: min(680px, 100%);
  padding: 64px 40px;
  text-align: center;
  background: white;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(24, 52, 47, 0.1);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #4f7b72;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 8vw, 68px);
  line-height: 1.05;
}

.intro {
  margin: 24px 0 34px;
  font-size: 20px;
  line-height: 1.6;
  color: #52635f;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: #285d53;
  border-radius: 999px;
}

.button:hover {
  background: #183f38;
}

@media (max-width: 600px) {
  .content {
    padding: 48px 24px;
  }
}