:root {
  --primary: #236CB0;
  --bg: #081F31;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

header {
  padding: 10px 0 20px;
  text-align: center;
}

header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero {
  background: #0d2a42;
  border-radius: 16px;
  padding: 18px 16px 20px;
  margin-bottom: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr;
  gap: 18px;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.hero p {
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.pill-list li {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.95;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.cta-primary {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 170px;
}

.cta-secondary {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #fff;
}

.mini-note {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 4px;
}

.section {
  background: #0d283e;
  border-radius: 16px;
  padding: 18px 16px 16px;
  margin-bottom: 18px;
}

.section h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.section p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin-top: 8px;
}

@media (max-width: 650px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.two-col ul {
  padding-left: 18px;
  font-size: 0.93rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.badge {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.faq-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-nav {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
}

.footer-nav-title {
  opacity: 0.85;
  margin-bottom: 6px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-nav-links a {
  font-size: 0.8rem;
  opacity: 0.9;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

footer {
  margin-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}