:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #17202a;
  background: #f5f7f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #075e76;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  min-height: 72px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid #d8e0e5;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  font-size: 22px;
  color: #17202a;
  text-decoration: none;
}

nav,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a,
.site-footer a {
  color: #344452;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  border-top: 1px solid #d8e0e5;
  border-bottom: 1px solid #d8e0e5;
  background: #ffffff;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  font-size: 20px;
  line-height: 1.5;
  color: #52616d;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.panel {
  background: #ffffff;
  border: 1px solid #d8e0e5;
  border-radius: 8px;
}

.card {
  padding: 24px;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p,
.panel p,
.panel li {
  color: #52616d;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 6px;
  background: #0a5d68;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 64px;
}

.panel {
  padding: 30px;
}

.legal .panel {
  width: min(840px, 100%);
}

h1 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #687887;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .hero-inner {
    padding: 48px 0;
  }

  .grid.three {
    grid-template-columns: 1fr;
  }
}
