  body {
    margin: 0;
    background-color: #111a27; /* deep navy background */
    color: #f2f2f2;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
  }

  table {
    margin: 40px auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 900px;
    background: rgba(20, 20, 25, 0.75);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 14px rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
  }

  td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: justify;
  }

  td.header {
    padding: 0;
    border-bottom: none;
  }

  .header img {
    width: 100%;
    height: 750px; /* your adjusted header height */
    object-fit: cover;
    display: block;
  }

  .nav {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Lato', sans-serif;

  }

  .nav a {
    color: #f2f2f2;
    text-decoration: none;
    margin: 0 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .nav a:hover {
    color: #ffdca8;
    text-shadow: 0 0 6px #ffdca8;
  }

.nav td {
  text-align: center;
  padding: 10px 0;
}

.nav a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #f5f5f5; /* your link colour */
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* underline glow effect */
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #d4af37; /* antique gold glow colour */
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 6px #d4af37;
}

.nav a:hover::after {
  width: 100%;
}

 a {
    color: #ffdca8;
    text-decoration: none;
  }

 a:hover {
    text-shadow: 0 0 4px #ffdca8;
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.8em;
    text-align: center;
    letter-spacing: 0.5px;
    color: #f2f2f2;
    margin-top: 0;
  }

  p {
  font-size: 1.25em;   /* was 1.2em — now just that bit bigger */
  line-height: 1.8;
  color: #e8e8e8;
  }

  .stats {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stats h2 {
    font-size: 1.6em;
    letter-spacing: 0.5px;
    color: #f2f2f2;
  }

  .stats p {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
  font-size: 1.2em;    /* was 1.15em */
  line-height: 1.75;
  color: #e8e8e8;
  }

  .stats a {
    color: #ffdca8;
    text-decoration: none;
  }

  .stats a:hover {
    text-shadow: 0 0 4px #ffdca8;
  }

  .footer {
    font-size: 0.85em;
    color: #bbb;
    border: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
  }

.footer td {
  text-align: center;
}

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

  .footer a:hover {
    text-shadow: 0 0 4px #ffdca8;
  }