    html, body {
      height: 100%;
      margin: 0;
    }
    body {
      display: flex;
      /* CHANGE: Stack items vertically */
      flex-direction: column;
      align-items: center;
      /* CHANGE: Push spacer top, logo middle, footer bottom */
      justify-content: space-between;
      /* justify-content: center; */
      background-color: #004065;
      /* ADD: Clean default font for links */
      font-family: system-ui, -apple-system, sans-serif;
    }
    .logo-container {
      padding: 20px;
      max-width: 300px;
      box-sizing: border-box;
      /*background-color: #004065;
      border-radius: 12px;*/
    }
    .logo-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ADD: Spacer to keep logo vertically centered against footer */
    .spacer {
      height: 40px;
    }

    /* ADD: Centered footer styling */
    footer {
      padding-bottom: 24px;
      display: flex;
      gap: 20px;
      align-items: center;
      color: #ffffff; 
      font-size: 0.9rem;	
    }
    footer a {
      color: #ffffff;
      text-decoration: none;
      /* font-size: 0.9rem; */
      opacity: 0.85;
    }
    footer a:hover {
      opacity: 1;
      text-decoration: underline;
    }	

    footer span {
      opacity: 0.6;
    }

    /* Card container to hold image and text together */
.center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

/* Headings and paragraphs inside contact card */
.center-text h2 {
  margin: 16px 0 6px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.center-text p {
  margin: 4px 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact link styling */
.center-text a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
}

.center-text a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Visually hides text while leaving it readable for search engines and screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  /*padding: 0;
  margin: -1px;*/
  overflow: hidden;
  /*clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: transparent;*/
}
