* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;

  font-family: Inter, Arial, sans-serif;

  background: #f4f7fb;
  color: #111827;

  line-height: 1.75;
}

.background-orb {
  position: fixed;

  top: -140px;
  right: -100px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(79, 124, 255, 0.16) 0%,
    rgba(79, 124, 255, 0) 72%
  );

  pointer-events: none;
}

.container {
  max-width: 860px;

  margin: 0 auto;

  padding: 72px 24px 60px;

  position: relative;
  z-index: 1;
}

.legal-card {
  background: rgba(255, 255, 255, 0.94);

  border: 1px solid #e5e7eb;
  border-radius: 32px;

  padding: 44px;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.06);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 26px;

  padding: 10px 14px;

  text-decoration: none;

  color: #475569;

  font-size: 14px;
  font-weight: 700;

  background: rgba(248, 250, 252, 0.92);

  border: 1px solid #e5e7eb;
  border-radius: 14px;

  transition: all 0.18s ease;
}

.back-link:hover {
  color: #4f7cff;

  border-color: rgba(79, 124, 255, 0.24);

  transform: translateY(-1px);

  box-shadow:
    0 8px 20px rgba(79, 124, 255, 0.08);
}

h1 {
  margin: 0;

  font-size: 54px;
  font-weight: 800;

  letter-spacing: -2px;

  color: #0f172a;
}

.intro-text {
  margin-top: 18px;
  margin-bottom: 42px;

  font-size: 18px;

  color: #64748b;

  line-height: 1.7;
}

h2 {
  margin-top: 42px;
  margin-bottom: 12px;

  font-size: 22px;
  font-weight: 800;

  color: #111827;
}

p {
  margin: 0 0 18px;

  color: #334155;

  font-size: 16px;
}

ul {
  margin-top: 0;
  margin-bottom: 22px;

  padding-left: 22px;

  color: #334155;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #111827;
}

a {
  color: #4f7cff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 36px 18px 32px;
  }

  .legal-card {
    padding: 30px 24px;

    border-radius: 26px;
  }

  h1 {
    font-size: 42px;

    letter-spacing: -1.4px;
  }

  .intro-text {
    font-size: 16px;

    margin-bottom: 34px;
  }

  h2 {
    margin-top: 34px;

    font-size: 20px;
  }

  p,
  li {
    font-size: 15px;
  }

  .background-orb {
    width: 240px;
    height: 240px;

    top: -80px;
    right: -70px;
  }
}