.legal {
  display: flex;
  justify-content: center;
  padding-top: clamp(120px, 8%, 200px);
}

.legal__container {
  width: min(100%, 800px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.legal__section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal__section-title {
  margin: 0;
  color: #ff0000;
  font-weight: 400;
}

.legal__section-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal__section-text p {
  margin: 0;
}

.legal__section-text a {
  color: inherit;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .legal__section-text a:hover {
    color: #ff0000;
  }
}

.legal__section-text a:focus-visible {
  color: #ff0000;
}

@media (max-width: 640px) {
  .legal__container {
    gap: 24px;
  }

  .legal__sections {
    gap: 24px;
  }

  .legal__section {
    gap: 0;
  }

  .legal__section-title {
    text-align: left;
  }
}
