:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #5b6673;
  --line: #d7dde3;
  --surface: #ffffff;
  --soft: #f3f6f8;
  --accent: #08746f;
  --accent-dark: #06524f;
  --blue: #24527a;
  --shadow: 0 18px 45px rgba(22, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--surface);
}

a {
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  min-width: 48px;
  min-height: 40px;
  place-items: center;
  border-radius: 6px;
  color: #ffffff;
  background: var(--accent);
  letter-spacing: 0;
}

.brand-text {
  font-size: 15px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 14px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent-dark);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 112px) clamp(20px, 4vw, 56px);
  background:
    linear-gradient(110deg, rgba(8, 116, 111, 0.9), rgba(36, 82, 122, 0.78)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='%23eef4f6'/%3E%3Cpath d='M0 640 C220 560 360 700 560 600 C760 500 900 520 1100 420 C1240 350 1340 370 1400 340 L1400 900 L0 900 Z' fill='%23dbe9ea'/%3E%3Cpath d='M120 210 H530 V260 H120 Z M120 300 H660 V330 H120 Z M120 370 H480 V400 H120 Z' fill='%23ffffff' opacity='.78'/%3E%3Ccircle cx='1050' cy='250' r='118' fill='%23ffffff' opacity='.42'/%3E%3Cpath d='M996 249 H1104 M1050 195 V303' stroke='%2308746f' stroke-width='28' stroke-linecap='round' opacity='.72'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-inner {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 10px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--accent-dark);
  background: #ffffff;
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 56px);
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.page-title .eyebrow {
  color: var(--accent-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.05);
}

.panel p,
.split p,
.contact-box p,
.policy p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.split p + p {
  margin-top: 16px;
}

.info-list,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.info-list div {
  padding: 18px 20px;
}

.info-list div + div {
  border-top: 1px solid var(--line);
}

.info-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.info-list strong {
  display: block;
  margin-top: 4px;
  line-height: 1.35;
}

.contact-box {
  max-width: 900px;
  padding: 24px;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.page-title {
  padding: clamp(56px, 8vw, 88px) clamp(20px, 4vw, 56px) 32px;
  background: var(--soft);
}

.page-title h1 {
  color: var(--ink);
}

.page-title p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.policy {
  max-width: 920px;
  padding: 44px clamp(20px, 4vw, 56px) 80px;
}

.policy h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 24px;
}

.notice {
  margin-top: 32px !important;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .content-grid,
  .split,
  dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }
}

@media (max-width: 520px) {
  .brand {
    white-space: normal;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }
}
