/* =========================
   BASIC RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* =========================
   HEADING
========================= */
h1 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 20px;
}

h2 {
  color: #111827;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* =========================
   NAVIGATION
========================= */
nav {
  background-color: #1e3a8a;
  padding: 10px;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

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

nav a:hover {
  text-decoration: underline;
}

/* =========================
   LISTS
========================= */
ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 8px;
}

/* =========================
   PARAGRAPHS
========================= */
p {
  margin-bottom: 15px;
}

/* =========================
   LINKS
========================= */
a {
  color: #1e3a8a;
}

a:hover {
  color: #2563eb;
}

/* =========================
   EMAIL LINK BOX LOOK
========================= */
p a {
  font-weight: bold;
}/* CSS Document */

