/* Layout */
body {
  background-color: #0d1b2a;           /* deep navy */
  color: #f0e9e0;                      /* warm cream text */
  font-family: 'Georgia', serif;
  line-height: 1.7;
  max-width: 760px;                    /* a touch wider for balance */
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;                  /* center all text by default */
}

/* Headings */
h1 { font-size: 2.8rem; margin: 0 0 8px; }
h2 { font-size: 1.8rem; margin: 0 0 10px; }
p.lead { opacity: 0.9; margin-top: 0.25rem; }

/* Links */
a {
  color: #6ca6cd;                      /* denim blue */
  text-decoration: none;
}
a:hover {
  color: #c08457;                      /* rust */
  text-decoration: underline;
}

/* Sections */
article {
  margin: 56px auto;                   /* generous breathing room */
  padding: 28px 0 36px;
  border-bottom: 1px solid rgba(240,233,224,0.7); /* softer white divider */
}

/* last section has no divider */
article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Optional: tighten paragraph widths for readability on centered text */
article p,
footer p {
  max-width: 60ch;                     /* elegant measure */
  margin: 0.4rem auto;
}

/* Footer */
footer {
  margin-top: 64px;
  opacity: 0.75;
  font-size: 0.95rem;
}

/* Optional buttons (for “Read More →” links) */
a.button {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #f0e9e0;
  border-radius: 6px;
  margin-top: 12px;
}
a.button:hover {
  border-color: #c08457;
}