:root {
  --base-font-size: 1.125rem;    /* ~18px – comfortable body size */
  --line-height: 1.6;
  --max-width: 75ch;             /* Keeps lines readable */
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--base-font-size);
  line-height: var(--line-height);
  color: #000;
  background-color: #f2ede2;
  padding: 1.5rem;
  margin: 0 auto;
  max-width: var(--max-width);
}

/* Responsive heading scale using clamp() – scales smoothly */
h1 {
  font-size: clamp(1.2rem, 5vw + 1rem, 3.2rem); /* ~29px → ~51px */
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
  color: #33cc33;
}

h2 {
  font-size: clamp(1.1rem, 4vw + 0.8rem, 2.4rem); /* ~24px → ~38px */
  font-weight: bold;
  margin: 2.5rem 0 1rem;
  line-height: 1.1;
}

p {
  margin-bottom: 1.25rem;
}

ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.5rem;
}

li {
  margin-bottom: 0.75rem;
}

strong {
  font-weight: bold;
}

/* Slightly larger / more breathing room on desktop */
@media (min-width: 768px) {
  body {
    padding: 3rem 2rem;
    font-size: 1.25rem;        /* ~20px body on larger screens */
  }

  h1 {
    margin-top: 2rem;
  }

  h2 {
    margin-top: 3.5rem;
  }
}

/* Optional: subtle link styling for the email */
a {
  color: #0066cc;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}