:root {
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  color: #1a2733;
  background: #f5f7f8;
}

* { box-sizing: border-box; }

body { margin: 0; }

a { color: #08786f; }
a:hover { color: #075d56; }
a:focus-visible { outline: 3px solid #ed8068; outline-offset: 3px; }

.site-header {
  background: #123e42;
  color: #fff;
}

.site-header-inner,
.legal-content,
.site-footer {
  width: min(100% - 40px, 800px);
  margin-inline: auto;
}

.site-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header a { color: #fff; }
.site-brand { font-size: 1.15rem; font-weight: 700; text-decoration: none; }
.site-header nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: .9rem; }

.legal-content {
  margin-block: 32px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #dce6e5;
  border-radius: 16px;
  background: #fff;
}

h1, h2 { line-height: 1.25; color: #123e42; }
h1 { margin-top: 0; font-size: clamp(1.9rem, 5vw, 2.5rem); }
h2 { margin-top: 2rem; font-size: 1.3rem; }
p, li { max-width: 72ch; }
ul { padding-left: 1.5rem; }
li + li { margin-top: .35rem; }
.updated { color: #52656c; font-size: .9rem; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 32px;
  font-size: .9rem;
}

@media (max-width: 540px) {
  .site-header-inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; padding-block: 12px; }
  .legal-content { margin-block: 16px; }
}
