/* Reset & Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', Times, serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
  padding: 2rem;
}

/* Layout */
header, footer {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #555;
  font-size: 1rem;
}

nav a:hover {
  color: #000;
  text-decoration: underline;
}

/* Sections */
section {
  max-width: 1200px;
  margin: 2rem auto;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid #555;
  padding-bottom: 0.5rem;
  color: #333;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

/* Paragraphs & Lists */
p {
  margin-bottom: 1rem;
}

/* Only difference from the main CSS: we keep list bullets */
ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

ul ul {
  list-style-type: circle;
  margin-top: 0.25rem;
  margin-left: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  section {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  header h1 {
    font-size: 2rem;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }
}

