
:root{
  --navy:#073d69;
  --blue:#0b6fae;
  --green:#74b82c;
  --light:#f3f8fc;
  --white:#fff;
  --text:#183244;
  --muted:#5d7484;
  --line:#dce9f1;
  --shadow:0 14px 38px rgba(7,61,105,.13);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--light);
  line-height:1.6;
}
a{color:inherit}
.topbar{
  background:var(--navy);
  color:#fff;
  text-align:center;
  padding:8px 16px;
  font-size:.92rem;
}
header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.navwrap{
  width:min(1160px,92%);
  margin:auto;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:900;
  color:var(--navy);
}
.brand img{width:58px;height:58px;border-radius:50%;object-fit:cover}
nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
nav a{
  text-decoration:none;
  color:var(--navy);
  font-weight:800;
  padding:10px 12px;
  border-radius:10px;
}
nav a:hover,nav a.active{background:#eaf4fa}
.hero{
  background:
    radial-gradient(circle at 85% 15%,rgba(116,184,44,.21),transparent 27%),
    linear-gradient(135deg,#eaf5fb 0%,#fff 65%);
}
.hero-inner{
  width:min(1160px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:50px;
  min-height:650px;
  padding:64px 0;
}
.eyebrow{
  display:inline-block;
  background:#dff0cf;
  color:#315b13;
  font-weight:900;
  border-radius:999px;
  padding:8px 14px;
  margin-bottom:18px;
}
h1{
  color:var(--navy);
  font-size:clamp(2.5rem,6vw,5.2rem);
  line-height:1.02;
  margin:0 0 20px;
}
.lead{font-size:1.2rem;max-width:680px;color:#355366}
.hero-logo{
  width:min(100%,470px);
  justify-self:center;
  filter:drop-shadow(0 18px 30px rgba(7,61,105,.16));
}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:2px solid transparent;
}
.btn-primary{background:var(--green);color:#18330a}
.btn-secondary{background:var(--navy);color:#fff}
.btn-outline{border-color:var(--navy);color:var(--navy);background:#fff}
main section{width:min(1160px,92%);margin:auto;padding:72px 0}
.pagehead{
  background:linear-gradient(135deg,#eaf5fb,#fff);
  border-bottom:1px solid var(--line);
}
.pagehead-inner{width:min(1160px,92%);margin:auto;padding:64px 0}
.pagehead h1{font-size:clamp(2.25rem,5vw,4.2rem)}
.section-title{
  color:var(--navy);
  font-size:clamp(1.9rem,4vw,3.1rem);
  line-height:1.15;
  margin:0 0 12px;
}
.section-intro{max-width:760px;color:var(--muted);font-size:1.08rem}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:32px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card h3{color:var(--navy);margin-top:0}
.icon{
  width:48px;height:48px;border-radius:14px;
  display:grid;place-items:center;
  background:#e7f3fb;color:var(--navy);
  font-size:1.5rem;margin-bottom:16px;
}
.notice{
  background:var(--navy);
  color:#fff;
  border-radius:22px;
  padding:34px;
  box-shadow:var(--shadow);
}
.notice h2{margin-top:0;color:#fff}
.mapwrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.mapwrap iframe{display:block;width:100%;height:530px;border:0}
.mapnote{padding:20px 24px;color:var(--muted)}
.boundary{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:28px;
}
.list{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
}
.list ul{margin:10px 0 0;padding-left:20px}
.formbox{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px;
  box-shadow:var(--shadow);
}
.formgrid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
label{font-weight:800;color:var(--navy)}
input,textarea,select{
  width:100%;
  margin-top:7px;
  padding:13px 14px;
  border:1px solid #bfcfda;
  border-radius:10px;
  font:inherit;
  background:#fff;
}
textarea{min-height:120px;resize:vertical}
.full{grid-column:1/-1}
.disabled-note{
  background:#fff4d9;
  border:1px solid #efd18a;
  color:#6e5113;
  border-radius:12px;
  padding:15px 17px;
  margin-bottom:20px;
  font-weight:700;
}
.rules{display:grid;gap:16px}
.rule{
  background:#fff;
  border-left:6px solid var(--green);
  border-radius:14px;
  padding:20px 22px;
  box-shadow:0 8px 24px rgba(7,61,105,.08);
}
.rule h3{margin:0 0 6px;color:var(--navy)}
footer{
  margin-top:60px;
  background:#052f52;
  color:#fff;
}
.footer-inner{
  width:min(1160px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  padding:38px 0;
  align-items:center;
}
footer a{color:#c9f28f}
.small{font-size:.92rem;color:#d9e7f0}
@media(max-width:850px){
  .hero-inner{grid-template-columns:1fr;text-align:center;min-height:auto}
  .hero-logo{order:-1;width:min(80%,360px)}
  .lead{margin-left:auto;margin-right:auto}
  .actions{justify-content:center}
  nav{display:none}
  .grid3,.boundary,.formgrid{grid-template-columns:1fr}
  .full{grid-column:auto}
  .footer-inner{grid-template-columns:1fr}
}
