:root{
  --bg: #efeff2;              /* light grey page background */
  --navy: #203b70;            /* banner blue (adjust if you want closer match) */
  --green: #79a87c;           /* subtitle green */
  --text: #0b1220;
  --muted: #1a2a3a;
  --btn: #0a0a0a;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HERO */
.hero{
  background: var(--navy);
  padding: clamp(36px, 6vw, 70px) 16px;
}

.hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-title{
  margin: 0;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: clamp(40px, 6.5vw, 86px);
  line-height: 1.05;
}

.hero-subtitle{
  margin: clamp(14px, 2vw, 22px) 0 0 0;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(18px, 3.2vw, 44px);
  line-height: 1.15;
}

/* CONTENT */
.content{
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px) 16px 40px 16px;
}

.section-title{
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--muted);
}

.section-blurb{
  margin: 14px auto 0 auto;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  color: #0a2a5a;
}

/* Bottom row: disclaimer left, buttons right */
.bottom-row{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.disclaimer{
  margin: 0;
  font-size: 9px;
  line-height: 1.25;
  color: #000;
  max-width: 520px;
}

.actions{
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  background: var(--btn);
  border-radius: 999px;
  padding: 18px 26px;
  min-width: 260px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.6px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.btn:active{
  transform: translateY(0px);
}

/* Responsive */
@media (max-width: 720px){
  .bottom-row{
    grid-template-columns: 1fr;
  }
  .actions{
    align-items: stretch;
  }
  .btn{
    width: 100%;
    min-width: 0;
  }
  .disclaimer{
    max-width: none;
  }
}
