
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: #067b8a url("water-background.jpg") center top / cover fixed no-repeat;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 112, 128, .14);
  pointer-events: none;
  z-index: -1;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #005b35;
  box-shadow: 0 2px 7px rgba(0,0,0,.25);
}
.nav {
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 5px 12px;
}
.nav a {
  color: #b7e39d;
  font-size: 20px;
  text-decoration: underline;
  font-weight: 600;
}
.nav a:hover, .nav a:focus { color: #fff; }
main {
  width: min(760px, calc(100% - 28px));
  margin: 22px auto 42px;
}
.hero {
  background: rgba(255,255,255,.97);
  color: #299669;
  border-radius: 12px;
  padding: 22px 26px 26px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,.22);
  margin-bottom: 16px;
}
.hero-logo {
  width: 155px;
  max-width: 32%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 72px);
  line-height: .92;
  letter-spacing: 1px;
  font-weight: 800;
}
.hero .byline {
  color: #8fb5aa;
  font-size: clamp(19px, 3vw, 28px);
  margin-top: 12px;
}
.hero .tagline {
  color: #8fb5aa;
  font-size: clamp(18px, 3vw, 27px);
  line-height: 1.05;
  margin-top: 3px;
}
.panel {
  background: rgba(0, 91, 53, .96);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 5px 18px rgba(0,0,0,.18);
}
.panel h2 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.75);
  font-size: 19px;
  font-weight: 600;
}
.panel h3 { margin-top: 26px; font-size: 16px; }
.panel p, .panel li {
  font-size: 15px;
  line-height: 1.24;
  font-weight: 600;
}
.panel p { margin: 0 0 16px; }
.panel ul { margin: 0 0 22px; padding-left: 22px; }
.panel li { margin: 2px 0; }
.address { line-height: 1.25; margin-bottom: 12px; }
.callout {
  border-left: 4px solid #b7e39d;
  padding-left: 12px;
  margin: 20px 0;
}
form { margin-top: 16px; }
label { display: block; margin: 13px 0 6px; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 11px;
  font: inherit;
}
textarea { min-height: 210px; resize: vertical; }
button {
  margin-top: 12px;
  background: #333;
  color: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
button:hover { background: #222; }
.required { color: #ffdfdf; }
.note { font-size: 12px; font-weight: 600; }
footer {
  text-align: center;
  background: rgba(0, 91, 53, .95);
  padding: 24px 15px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-brand { font-size: 17px; font-weight: 700; }
footer a { color: #c8efad; }
.numbered p { margin-bottom: 18px; }
@media (max-width: 600px) {
  .nav { gap: 9px; flex-wrap: wrap; }
  .nav a { font-size: 16px; }
  main { width: min(100% - 18px, 760px); margin-top: 12px; }
  .hero { padding: 18px 14px 22px; }
  .hero-logo { width: 145px; max-width: 45%; margin: 0 auto 8px; }
  .panel { padding: 15px; }
  .panel p, .panel li { font-size: 14px; }
}
