/* styles.css */

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #212529;
}

header h1, header h2 {
  color: white;
}


header, footer {
  background-color: #00274d;
  color: white;
  padding: 1rem;
  text-align: center;
}

h1, h2, h3 {
  color: #003366;
}

section {
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
}

ul, ol {
  padding-left: 2rem;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  font-size: 0.9rem;
}
