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

/* Body: center all text by default */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fff;
  color: #333;
}

/* Container for main content */
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Top Navigation Styles */
.top-nav ul {
  list-style: none;
  display: inline-block;
  margin: 20px 0;
  padding: 0;
}

.top-nav ul li {
  display: inline-block;
  margin: 0 15px;
}

.top-nav ul li a {
  text-decoration: none;
  color: #004080; /* primary color */
  font-weight: bold;
  font-size: 1.1rem;
}

.top-nav ul li a:hover {
  text-decoration: underline;
  color: #ffcc00; /* secondary color */
}

/* Footer Styles */
footer {
  margin: 20px 0;
  text-align: center; /* redundant, but ensures clarity */
}

.footer-links {
  list-style: none;
  display: inline-block;
  margin-bottom: 5px;
}

.footer-links li {
  display: inline;
  margin: 0 10px;
}

.footer-links li a {
  color: #004080;
  font-weight: bold;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: #ffcc00;
}

/* Basic Headings & Paragraphs */
h1, h2, h3, h4, h5 {
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: center;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Example for horizontal rule styling */
hr {
  width: 80%;
  margin: 20px auto;
  border: 0;
  height: 1px;
  background-color: #ccc;
}

/* Additional Classes For More Styling If Needed */
img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-position: inside;
  margin: 10px auto;
  padding: 0;
  display: inline-block;
  text-align: left; /* Optional: bullets left-aligned within center */
}

/* Tables */
table {
  margin: 0 auto 20px;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

/* Hyperlinks within content */
a {
  color: #004080;
  text-decoration: none;
}

a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

