/* style.css – Modern readable layout with Inter font */

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 700px;
  line-height: 1.6;
}

h1, h2 {
  color: #2a4a77;
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.3em;
}

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

h2 {
  font-size: 1.5em;
  margin-top: 2em;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #ccc;
}

small {
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.03em;
  display: block;
  margin-top: 2rem;
}
