:root{
  --gc-blue:#003a9c;
  --gc-blue-dark:#001c5a;
  --gc-gold:#f4cf76;
  --gc-gold-dark:#c48a1c;
  --gc-bg:#f4f6fb;
  --gc-text:#0c214f;
  --gc-muted:#6b7280;
  --gc-card-border:#d6e0ff;
  --gc-soft:#e9f0ff;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--gc-bg);
  color:var(--gc-text);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 1.25rem}
header.brand{
  background:var(--gc-blue);
  color:#fff;
  position:sticky; top:0; z-index:20;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}
.brand-top{
  display:flex;align-items:center;justify-content:center;
  padding:.55rem .75rem .35rem;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.brand-top img{width:100%;max-width:380px;height:auto;display:block}
.brand-nav{
  display:flex;flex-wrap:wrap;gap:.45rem;
  padding:.5rem 1rem .85rem;
  justify-content:center;
}
@media(min-width:900px){.brand-nav{justify-content:flex-end}}
.pill{
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.86rem;font-weight:700;
  padding:.48rem .95rem;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.pill:hover{transform:translateY(-1px);box-shadow:0 10px 18px rgba(0,0,0,.25)}
.pill.is-active{
  background:linear-gradient(135deg,var(--gc-gold-dark),var(--gc-gold));
  border:none;color:#111827;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
.hero{
  background:linear-gradient(135deg,var(--gc-blue) 50%, var(--gc-blue-dark));
  color:#fff;
  padding:1.4rem 0 2.1rem;
}
.hero .kicker{
  font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;
  opacity:.9;margin-bottom:.4rem;
}
.hero h1{font-size:clamp(2rem,3.3vw,2.75rem);line-height:1.15;max-width:44rem;margin-bottom:.65rem}
.hero p{font-size:.98rem;color:#e5ecff;max-width:46rem}
.badges{display:flex;flex-wrap:wrap;gap:.45rem;margin:.95rem 0 1.05rem}
.badge{
  padding:.22rem .72rem;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  font-size:.82rem;
}
.actions{display:flex;flex-wrap:wrap;gap:.6rem}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.82rem 1.6rem;border-radius:999px;
  font-size:.95rem;font-weight:750;cursor:pointer;border:none;
}
.btn.primary{
  background:linear-gradient(135deg,var(--gc-gold-dark),var(--gc-gold));
  color:#111827; box-shadow:0 12px 26px rgba(0,0,0,.42);
}
.btn.secondary{
  background:transparent;border:1px solid rgba(255,255,255,.72);
  color:#fff;
}
.btn.secondary:hover{background:rgba(15,23,42,.35)}
@media(max-width:520px){
  .actions{flex-direction:column}
  .btn{width:100%}
}

.main{padding:1.2rem 0 3rem}
.card{
  background:#fff;border:1px solid var(--gc-card-border);
  border-radius:1.5rem;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}
.section{
  margin:1.6rem 0 2rem;
}
.section .head{
  padding:1.1rem 1.2rem .4rem;
}
.section .head .label{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.26rem .72rem;border-radius:999px;
  font-size:.8rem;font-weight:750;text-transform:uppercase;letter-spacing:.14em;
  color:#111827;
}
.section .head h2{font-size:1.2rem;margin-top:.35rem;margin-bottom:.15rem}
.section .head p{color:var(--gc-muted);font-size:.92rem}

.grid{
  display:grid;gap:1rem;
  grid-template-columns:repeat(3,minmax(0,1fr));
  padding:1.05rem 1.2rem 1.25rem;
}
@media(max-width:980px){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.grid{grid-template-columns:minmax(0,1fr)}}

.tile{
  border:1px solid var(--gc-card-border);
  border-radius:1.1rem;
  overflow:hidden;
  display:flex;flex-direction:column;
  min-height:330px;
  background:#fff;
}
.tile .topbar{
  padding:.55rem .85rem;
  font-size:.8rem;font-weight:750;text-transform:uppercase;letter-spacing:.14em;
  color:#111827;
}
.tile .img{
  aspect-ratio: 16/10;
  background:linear-gradient(135deg, rgba(0,58,156,.10), rgba(244,207,118,.18));
  display:flex;align-items:center;justify-content:center;
  color:#334155;font-weight:700;font-size:.9rem;
}
.tile .body{
  padding:.85rem .95rem .9rem;
  display:flex;flex-direction:column;gap:.55rem;
  flex:1;
}
.tile h3{font-size:1rem;line-height:1.25}
.tile p{color:var(--gc-muted);font-size:.9rem}
.bullets{list-style:none;display:grid;gap:.25rem;color:#475569;font-size:.86rem}
.bullets li::before{content:"✓ ";color:var(--gc-gold-dark);font-weight:900}
.tile .spacer{flex:1}

.tile .cta{
  display:flex;align-items:center;justify-content:space-between;gap:.65rem;
  padding:.8rem .95rem;
  background:linear-gradient(90deg, rgba(0,28,90,.95), rgba(0,58,156,.90));
}
.tile .cta .meta{
  color:#cfe0ff;font-size:.78rem;line-height:1.2;
}
.tile .cta .meta b{display:block;color:#fff;font-size:.82rem}
.tile .cta a{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.48rem .95rem;border-radius:999px;
  background:linear-gradient(135deg,var(--gc-gold-dark),var(--gc-gold));
  color:#111827;font-weight:800;font-size:.86rem;
  box-shadow:0 10px 18px rgba(0,0,0,.35);
  white-space:nowrap;
}
footer{
  text-align:center;color:var(--gc-muted);
  font-size:.8rem;padding:2rem 1rem 2.5rem;
}
.notice{
  margin:1rem auto 0;
  max-width:1120px;
  padding:0 1.25rem;
  color:rgba(255,255,255,.85);
  font-size:.78rem;
}