:root {
  --primary: #37ca37;
  --secondary: #188bf6;
  --divider-blue: #0064B5;
  --text: #000000;
  --link: #188bf6;
  --muted: #555555;
  --bg: #ffffff;
  --bar-bg: #F4F8FB;
  --border: #e2e2e2;
  --headline-font: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --body-font: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--headline-font);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

h1 { font-size: 2rem; margin: 0 0 1rem; }
h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }

p { margin: 0 0 1rem; }

.brand-header {
  text-align: center;
  padding: 24px 20px 0;
}
.brand-header img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.brand-divider {
  border: 0;
  border-top: 3px solid var(--divider-blue);
  margin: 16px 0 0;
}

.page-headline {
  text-align: center;
  margin: 28px auto 32px;
  padding: 0 20px;
  font-family: var(--headline-font);
  font-weight: 700;
  font-size: 2rem;
}

.title-bar {
  background: var(--bar-bg);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 24px;
}
.title-bar h1 {
  margin: 0;
  font-family: var(--headline-font);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal h2 { font-size: 1.25rem; }
.legal p { color: #222; }

.embed-wrap {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 20px;
}
.embed-wrap iframe {
  width: 100%;
  border: 0;
  display: block;
}

footer.site-footer {
  margin-top: 64px;
  padding: 32px 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text);
}
footer.site-footer img {
  max-width: 130px;
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 12px;
}
footer.site-footer .copyright {
  margin: 0 0 4px;
}
footer.site-footer .links {
  margin-top: 4px;
}
footer.site-footer .links a {
  color: var(--link);
  margin: 0 8px;
}

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .page-headline { font-size: 1.4rem; margin: 20px auto 24px; }
  .title-bar h1 { font-size: 1.25rem; }
}
