body {
  margin: 0;
  min-height: 100vh;
  background-color: #A8BBA8; /* calm sage green */
  font-family: "Inter", system-ui, sans-serif;
  color: #1f2a27;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  text-align: center; /* center all text by default */
  padding: 40px 20px;
}

.page {
  width: 100%;
  max-width: 900px;
}

h1, h2 {
  margin: 0 0 12px 0;
  font-weight: 600;
}

p {
  margin: 0 0 16px 0;
}

a {
  color: #6B8F6B;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

button {
  background-color: #6B8F6B;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: inherit;
  cursor: pointer;
}

button:hover {
  background-color: #5f7f5f;
}
