/* RESET MINIMAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  padding: 0 1rem;
  max-width: 880px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: .75rem;
  line-height: 1.3;
  color: #111;
}

h1 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
}

h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

dl {
  margin-top: 1rem;
}

dt {
  font-weight: 600;
  margin-top: 1rem;
}

dd {
  margin-left: 0;
  margin-bottom: .5rem;
  color: #444;
}

/* LINKS */
a {
  color: #0057b7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER */
header {
  text-align: center;
  padding: 1.5rem 0;
}

header img {
  max-width: 180px;
  height: auto;
  margin-bottom: .5rem;
}

header p {
  font-size: .95rem;
  color: #555;
}

/* SECTIONS */
section {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: .9rem;
  color: #666;
  margin: 3rem 0 2rem;
}

footer nav {
  margin-bottom: .75rem;
}

footer nav a {
  margin: 0 .5rem;
  color: #0070c9;
}

footer nav a:hover {
  text-decoration: underline;
}

.hero {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #111;
}

.hero-text p {
  font-size: 1rem;
  color: #444;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  body {
    padding: 0 .75rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }
}