:root {
  --navy: #003087;
  --gold: #CB333B;
  --light-blue: #C6DAE7;
}

/* ----------- Base Page Layout ----------- */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(to bottom, #F9FBFE, var(--light-blue));
  color: #111;
}

/* ----------- Header Banner ----------- */
header {
  background-color: var(--navy);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ----------- Content Wrappers ----------- */
.wrap,
.content-wrap {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.6rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ----------- Headings ----------- */
h2 {
  margin-top: 1.5rem;
  border-bottom: 3px solid var(--gold);
  color: var(--navy);
  padding-bottom: 0.25rem;
  font-size: 1.4rem;
}

p, ul {
  line-height: 1.6;
  font-size: 1.05rem;
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border: 2px solid var(--navy);
  border-radius: 0.4rem;
  background-color: white;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: var(--navy);
  color: white;
  border-color: var(--gold);
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.btn:focus {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-container {
  text-align: center;
  margin-top: 2rem;
}

/* ----------- Footer ----------- */
footer {
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  background-color: var(--navy);
  border-top: 4px solid var(--gold);
  color: #fff;
}

    /* --- Inline links area at bottom of main which is moving to footer --- */
    .host-mirror {
      text-align: center;
      font-size: 0.95rem;
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid #ccc;
    }

    .host-mirror a {
      color: #fff;
      text-decoration: none;
    }

    .host-mirror a:hover {
      text-decoration: underline;
    }
