:root {
  --navy: #14213d;
  --blue: #0066b3;
  --light-blue: #eaf5ff;
  --gray: #5f6b7a;
  --dark: #17212b;
  --line: #d9e2ec;
  --white: #ffffff;
  --accent: #fca311;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #f7f9fb;
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.topbar { background: var(--navy); color: var(--white); font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; gap: 20px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.header { background: var(--white); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 14px; padding: 24px 0; }
.logo-mark { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: white; display: grid; place-items: center; font-weight: 700; letter-spacing: -1px; }
.brand h1 { margin: 0; line-height: 1.1; color: var(--navy); font-size: 30px; }
.brand p { margin: 4px 0 0; color: var(--gray); }
.nav { background: var(--blue); }
.nav .container { display: flex; gap: 2px; flex-wrap: wrap; }
.nav a { color: white; padding: 13px 15px; display: block; font-weight: 700; font-size: 14px; }
.nav a:hover, .nav a.active { background: rgba(0,0,0,.16); text-decoration: none; }
.hero { background: linear-gradient(135deg, var(--navy), #1d4f82); color: white; padding: 58px 0; }
.hero h2 { font-size: 42px; line-height: 1.12; margin: 0 0 16px; max-width: 820px; }
.hero p { font-size: 20px; max-width: 760px; margin: 0 0 24px; color: #e7eef8; }
.btn { display: inline-block; background: var(--accent); color: #111; padding: 12px 18px; border-radius: 7px; font-weight: 700; }
.btn.secondary { background: white; color: var(--blue); margin-left: 10px; }
.main { padding: 42px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 8px 22px rgba(20, 33, 61, .07); }
.card h3 { margin-top: 0; color: var(--navy); }
.content { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 34px; box-shadow: 0 8px 22px rgba(20, 33, 61, .07); }
.content h2, .content h3 { color: var(--navy); line-height: 1.25; }
ul.checks { padding-left: 0; list-style: none; }
ul.checks li { padding-left: 28px; position: relative; margin: 9px 0; }
ul.checks li:before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.notice { background: var(--light-blue); border-left: 4px solid var(--blue); padding: 16px 18px; border-radius: 8px; }
.footer { background: var(--navy); color: white; padding: 30px 0; margin-top: 36px; }
.footer a { color: #d8ecff; }
.footer small { color: #cbd5e1; }
@media (max-width: 800px) {
  .grid, .two-col { grid-template-columns: 1fr; }
  .hero h2 { font-size: 32px; }
  .brand h1 { font-size: 24px; }
  .btn.secondary { margin-left: 0; margin-top: 10px; }
}


/* Updated branding with provided logo */
.brand { justify-content: center; padding: 16px 0; }
.brand-logo { display: inline-block; line-height: 0; }
.brand-logo img { display: block; width: min(100%, 560px); height: auto; max-height: 180px; object-fit: contain; }
.brand-copy { display: none; }
@media (max-width: 800px) {
  .brand { padding: 14px 0; }
  .brand-logo img { width: min(100%, 420px); max-height: 130px; }
}
