:root{
  --bg:#ffffff;
  --ink:#111827;
  --muted:#4b5563;
  --line:#e5e7eb;
  --brand:#082742; /* deep ocean navy */
  --brand2:#0b5c7a; /* ocean teal */
  --accent:#1aa6b7; /* sea accent */
  --card:#f9fafb;
  --max:1100px;
  --radius:14px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--brand2); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
header{
  border-bottom:1px solid var(--line);
  background:#fff;
  position:sticky; top:0; z-index:50;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; flex-direction:column; gap:2px;
}
.brand .name{
  font-weight:800; letter-spacing:.2px;
  color:var(--brand);
  font-size:18px;
}
.brand .tag{
  font-size:12px; color:var(--muted);
}
.navlinks{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
  font-weight:600;
}
.navlinks a{color:var(--ink)}
.navlinks a.active{color:var(--brand2)}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--brand);
  color:#fff !important;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  white-space:nowrap;
}
.pill:hover{background:var(--brand2); text-decoration:none}
.hero{
  padding:58px 0 24px;
}
.herogrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:30px;
  align-items:start;
}
.kicker{
  color:var(--brand2);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
h1{
  margin:10px 0 12px;
  font-size:44px;
  line-height:1.12;
  letter-spacing:-.02em;
  color:var(--brand);
}
.lede{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
}
.ctarow{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
  margin-top:18px;
}
.secondary{
  display:inline-flex; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:700;
  color:var(--ink);
  background:#fff;
}
.secondary:hover{border-color:#cbd5e1; text-decoration:none}
.panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  padding:18px;
}
.panel h3{margin:0 0 6px; color:var(--brand); font-size:16px}
.panel p{margin:0; color:var(--muted); font-size:14px}
.panel .row{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.small{font-size:13px; color:var(--muted)}
.section{
  padding:28px 0 54px;
}
.section h2{
  margin:0 0 14px;
  font-size:24px;
  color:var(--brand);
  letter-spacing:-.01em;
}
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  background:#fff;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted)}
.hr{height:1px; background:var(--line); margin:22px 0}
.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:var(--muted);
  font-size:13px;
}
.footergrid{
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.badge{
  display:inline-block;
  font-weight:800;
  color:var(--brand);
}
.list{margin:8px 0 0; padding-left:18px; color:var(--muted)}
.notice{
  font-size:12px; color:var(--muted);
  margin-top:10px;
}
.form{
  display:grid;
  gap:10px;
  margin-top:12px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  font:inherit;
}
textarea{min-height:120px; resize:vertical}
button{
  appearance:none;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  background:var(--brand);
  color:#fff;
  cursor:pointer;
}
button:hover{background:var(--brand2)}
/* Responsive */
@media (max-width: 860px){
  .herogrid{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid{grid-template-columns:1fr}
}

/* ---- Visual upgrades: logo + subtle color accents ---- */
.brandline{
  display:flex;
  align-items:center;
  gap:12px;
}
.brandlogo{
  width:150px;
  height:auto;
  display:block;
}
@media (max-width:860px){
  .brandlogo{width:110px}
}
.hero{
  background: linear-gradient(180deg, rgba(15,45,82,0.06), rgba(255,255,255,0));
}
.section.alt{
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card{
  position:relative;
}
.card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: rgba(199,154,43,0.9); /* gold accent */
}
.secondary{
  border-color:#d7dee8;
}
.secondary:hover{
  border-color:#b9c7da;
}

/* Related-site logo links */
.related{
  display:flex;
  flex-wrap:wrap;
  gap:12px 14px;
  margin-top:10px;
}
.related a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-weight:700;
  color:var(--ink);
}
.related a:hover{
  border-color:#b9c7da;
  text-decoration:none;
}
.related img{
  height:22px;
  width:auto;
  display:block;
}
@media (max-width:860px){
  .related img{height:20px}
}

/* Header accommodates larger logo */
.nav{
  align-items:flex-start;
}
.navlinks{
  padding-top:6px;
}
@media (max-width:860px){
  .navlinks{padding-top:10px}
}

/* ---- Formal + ocean theme enhancements ---- */
h1,h2,h3{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:-0.01em;
}
.pill{
  background: linear-gradient(180deg, var(--brand), var(--brand2));
}
.pill:hover{
  filter: brightness(1.05);
}
.hero{
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(26,166,183,0.16), rgba(255,255,255,0) 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(8,39,66,0.12), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(11,92,122,0.08), rgba(255,255,255,0));
}
.section.alt{
  background:
    linear-gradient(180deg, rgba(8,39,66,0.04), rgba(255,255,255,0)),
    #f7fbfd;
}
.card::before{
  background: linear-gradient(90deg, rgba(26,166,183,0.95), rgba(11,92,122,0.95));
}
.panel{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,251,253,1));
}
.notice{
  border-left:4px solid rgba(11,92,122,0.55);
  padding-left:12px;
}
.footer{
  background:
    linear-gradient(180deg, rgba(8,39,66,0.04), rgba(255,255,255,0));
}
