body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1967ff;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

.site-header, .site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.logo-icon {
  font-size: 20px;
}

.nav-links a {
  margin-left: 16px;
  font-weight: 500;
}

.hero, .page {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.primary-btn {
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  background: #ffd000;
}

.steps p {
  margin: 8px 0;
}

.site-footer {
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 60px;
}

.footer-links a {
  margin-left: 16px;
}

.page.legal {
  text-align: left;
  background: #ffffff;
  color: #1b3a6b;
  padding: 32px;
  border-radius: 16px;
}

.page.legal h2 {
  margin-top: 0;
}

.page.legal h3 {
  margin-top: 20px;
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
  margin-top: 4px;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.9;
}

.page {
  background: hsl(277, 84%, 44%);
  color: #0d0e0fc2;
  padding: 32px;
  border-radius: 16px;
}
