.legal-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 8px;
  line-height: 1.7;
}

.legal-page h1 {
  margin-bottom: 30px;
  border-bottom: 3px solid var(--theme-primary, #ff7518);
  padding-bottom: 15px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--theme-primary, #ff7518);
}

.legal-page p {
  margin-bottom: 10px;
  color: #333;
}

.btn-back {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background: var(--theme-primary, #ff7518);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: opacity 0.2s;
}

.btn-back:hover {
  opacity: 0.85;
}