.legal-content {
  background: var(--color-bg-medium);
  padding: 80px 0;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-white);
}

.legal-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-light-gray);
}

.legal-updated {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.legal-updated p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 60px 0;
  }

  .legal-heading {
    font-size: 24px;
  }

  .legal-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 40px 0;
  }

  .legal-heading {
    font-size: 20px;
  }

  .legal-text {
    font-size: 14px;
  }
}
