body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.background-flag {
  background: url('/static/flag_bg.png') no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.9; /* adjust to taste */
}

.page-content {
  min-height: 100vh;
  padding: 60px 20px;
}


.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #304ffe;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #1f2a44;
  color: white;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.top-nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.top-nav .brand {
  font-size: 1.1em;
  font-weight: 600;
}

.hero-banner {
  margin-top: -90px;
  margin-left: -20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: -40px;
  padding-left: 10px;
  padding-right: 40px;
  position: left;
  width: 100%;
  height: 240px;
  background: url('/static/hero_banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner h1 {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 2.5rem;
  padding: 12px 30px;
  border-radius: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.main {
  background: rgba(255, 255, 255, 0.25);     /* translucent white */
  backdrop-filter: blur(6px);                /* softens background */
  border-radius: 10px;
  padding: 50px 30px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.checklist-textbox {
  background: transparent;
  text-align: left;
  display: inline-block;    /* ✅ shrink-wrap width to content */
  border-radius: 6px;
}

.hero-honor {
  margin-top: 10px;
  font-size: 0.85em;
  color: #304ffe;
  font-weight: 600;
  text-align: center;
}

.hero-preview-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
}

.hero-preview-list li {
  margin-bottom: 30px;
  font-size: 1.05em;
}


.hero-list-teasers {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.hero-list-teasers li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 0.95em;
}


.hero-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 960px;
}

.hero-card {
  flex: 1 1 380px;     /* allows 1–2 per row */
  max-width: 420px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  text-align: center;
  transition: transform 0.2s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
}

.hero-card img,
.hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.support-options {
  list-style: none;
  padding-left: 0;
}

.support-options li {
  margin: 10px 0;
}

.external-links {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.external-links li {
  margin: 8px 0;
}

.external-links a {
  color: #304ffe;
  text-decoration: none;
}

.external-links a:hover {
  text-decoration: underline;
}

.checklist-columns {
  font-size: 1rem;
}

.checklist-columns .check {
  font-size: 1rem; /* same as list */
}

.checklist-columns li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 5px;
}

.checklist-columns .text {
  flex: 1;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}
