/* Minimal styling to resemble the screenshot */
:root {
  --text: #1b4f9c;          /* deep blue for headings */
  --body-text: #234f9b;     /* slightly softer blue for paragraphs */
  --maxw: 920px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  color: var(--body-text);
  background: #ffffff;
}

.container {
  max-width: var(--maxw);
  margin: 3rem auto;
  padding: 0 1.25rem;
}

h1, h2 {
  margin: 0 0 0.5rem 0;
  font-weight: 800;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
}

p {
  font-size: 1.05rem;
  margin: 1rem 0;
}

.signature {
  font-weight: 800;
}
