body.legal-page {
  background-image: url('/static/images/legal_background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  min-height: 100vh;
  display: block;
  box-sizing: border-box;
}

/* Center wrapper */
.legal-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 32px 18px 46px;
  box-sizing: border-box;
}

/* Light grey glass box */
.legal-glass {
  width: min(980px, 92vw);
  background: rgba(220, 220, 220, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);

  padding: 34px 34px;
  color: #222;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-glass h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  text-align: center;
}

.legal-glass p,
.legal-glass li {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.55;
}

.contact-box {
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-box h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 12px;

  background: #4da3ff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.contact-button:hover {
  filter: brightness(1.08);
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: #1976d2;
  text-decoration: none;
  font-weight: 800;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 10px;
  opacity: 0.85;
  font-size: 14px;
}