/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

p + p {
  margin-top: 20px;
}

.container {
  max-width: 1200px; /* was 800px */
  margin: auto;
  padding: 20px;
}

header {
  background: #003366;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

main section {
  margin: 40px 0;
}

h2 {
  margin-bottom: 10px;
  color: #003366;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #003366;
  color: #fff;
  margin-top: 40px;
}

ol {
  padding-left: 2.5em; /* More space between numbers and text */
  list-style-position: outside; /* Ensures numbers stay outside */
}

ol li {
  margin-bottom: 20px; /* More vertical space between items */
  padding-left: 0.5em;  /* Optional: indent text slightly for alignment */
}

ul {
  padding-left: 2.5em; /* More space between numbers and text */
  list-style-position: outside; /* Ensures numbers stay outside */
}

ul li {
  padding-left: 0.5em;  /* Optional: indent text slightly for alignment */
}
