:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #10201f;
  background: #f7faf9;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: #0b5f59;
}
.legal-header {
  border-bottom: 1px solid #dce8e5;
  background: #fff;
}
.legal-header nav {
  display: flex;
  width: min(820px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.legal-header a {
  text-decoration: none;
  font-weight: 750;
}
.legal-header img {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}
main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 88px;
}
h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}
h2 {
  margin: 38px 0 10px;
  font-size: 24px;
}
p,
li {
  color: #536361;
  line-height: 1.7;
}
.legal-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dce8e5;
  border-radius: 10px;
  background: #dce8e5;
}
.legal-details div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 20px;
  padding: 13px 16px;
  background: #fff;
}
.legal-details dt {
  font-weight: 750;
}
.legal-details dd {
  margin: 0;
  color: #536361;
}
.table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid #dce8e5;
  border-radius: 10px;
}
table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  border-bottom: 1px solid #dce8e5;
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
th {
  background: #eaf5f2;
  font-size: 14px;
}
td {
  color: #536361;
  font-size: 14px;
}
tr:last-child td {
  border-bottom: 0;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 48px;
  border-top: 1px solid #dce8e5;
  padding-top: 24px;
  font-weight: 700;
}
.updated {
  margin-top: 12px;
  font-size: 14px;
}
.notice {
  border-left: 4px solid #0f766e;
  margin: 28px 0;
  padding: 14px 18px;
  background: #e4f5f1;
  color: #274743;
}
footer {
  border-top: 1px solid #dce8e5;
  padding: 24px 16px;
  color: #60706e;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 520px) {
  main {
    padding-top: 44px;
  }
  h1 {
    font-size: 34px;
  }
  .legal-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
