/* Global body styling for page margins */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4; /* Just for visual contrast */

  /* The key for page margins */
  max-width: 1024px; /* Set a maximum width for your content */
  margin: 20px auto; /* 20px top/bottom margin, 'auto' for left/right to center the block */
  padding: 0 20px; /* Optional: inner padding, especially for smaller screens to prevent content from touching edges */
  box-sizing: border-box; /* Ensures padding is included in the max-width calculation */
  padding-bottom: 80px; /* Added space for the fixed footer */
  padding-top: 60px; /* enough to clear the header height */
}

h1 {
  color: #0056b3;
  text-align: center;
  margin-bottom: 30px;
}
h2 {
  color: #0056b3;
  text-align: center;
  margin-bottom: 20px;
}
h3 {
  color: #0056b3;
  text-align: center;
  margin-bottom: 30px;
}
p {
  color: #000;
  line-height: 1.3;
}
ul {
  color: #000;
}

ul li {
  line-height: 1.3; /* This sets the line height *within* each list item to "1 line" */
  margin-bottom: 1.3em; /* This creates "2 lines" of space *between* each list item */
}
ol {
  color: #000;
}

ol li {
  line-height: 1.3; /* This sets the line height *within* each list item to "1 line" */
  margin-bottom: 1.3em; /* This creates "2 lines" of space *between* each list item */
}

.separator {
  border: none;
  height: 5px;
  width: 90%;
  background-color: #0056b3;
  margin: 40px auto; /* adds spacing and centers it */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0056b3;
  color: white;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-inner a {
  color: #fff;
  text-decoration: none;
}

.site-title {
  font-size: 1.2em;
  font-weight: bold;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  padding: 10px 0;
  z-index: 999;
}

.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-inner a {
  color: #333;
  text-decoration: none;
}

p.intro-paragraph::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: .1; /* Adjust for vertical positioning */
    vertical-align: top; /* Align to the top */
    padding-right: 5px;
    font-family: serif;
    color: black; /* Example: make the first letter red */
    padding-right: 0px;
  }
p.intro-paragraph {
    font-size: inherit
    font-family: inherit;
  }
