/* ============================ */
/*    Legal Section */
/* ============================ */

.legal-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-height: 75vh;
  background-color: #14131b;
  padding: 2rem;
  font-family: "Quicksand", sans-serif;
}

.legal-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  max-width: 1000px;
  gap: 2rem;
}
.legal-list li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-list h2 {
  display: flex;
  justify-content: start;
  width: 100%;
  padding: 0.5rem;
  gap: 0.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #242232;
  color: white;
}
.legal-list span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 25px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  background-color: #004aad;
}
.legal-list p,
.legal-list a {
  color: rgba(255, 255, 255, 0.7);
}
.legal-list a {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal-container {
    padding: 1rem;
  }
}
