:root {
  --bg: #fffdd5;
  --text: #111;
  --accent: #c62828;
  --muted: #444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 720px;
  padding: 2.5rem 1.5rem 3rem;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.tagline {
  margin-top: 1rem;
  font-weight: 600;
}

.enrolment {
  text-align: center;
  margin: 2.5rem 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
}

.motto {
  font-weight: 600;
  margin-top: 0.5rem;
}

p {
  margin: 0.5rem 0;
}

.center {
  text-align: center;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  opacity: 0.9;
}

footer {
  margin-top: 3rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
