* { box-sizing: border-box; }

body {
  margin: 0;
  background: #050505;
  color: #f7f7f7;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.links a { text-decoration: none; }

h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 8vw, 76px);
  line-height: 0.96;
}

h2 {
  margin: 36px 0 10px;
  font-size: 22px;
}

p, li {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  max-width: 680px;
  font-size: 18px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 180px;
  color: #fff;
  font-weight: 800;
}

.legal-table td {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .links {
    flex-wrap: wrap;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .legal-table td {
    padding-top: 0;
  }
}
