.legal-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 8px 8px 18px var(--sd), -8px -8px 18px var(--sl);
}

.legal-container h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-h);
  margin-bottom: 32px;
}

.legal-container section {
  margin-bottom: 28px;
}

.legal-container h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-container p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-s);
}

.legal-container ul {
  list-style: none;
  padding: 0;
}

.legal-container li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-s);
}

.legal-container li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(255, 159, 10, 0.4);
}

.legal-container a {
  color: var(--orange);
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 600px) {
  .legal-container {
    margin: 0 16px;
    padding: 28px 20px;
  }
  .legal-container h1 {
    font-size: 22px;
  }
}
