/* LEGAL PAGE STYLING - CLEAN, INDENTED, WITHOUT BULLETS/NUMBERS */

.legal-container {
  max-width: 800px;
  margin: 6rem auto 2rem;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 50, 30, 0.1);
  line-height: 1.8;
  color: #1d4b3e;
  font-size: 1rem;
}

.legal-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a3d2f;
  text-align: center;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #2d6a4f;
  border-bottom: 1px solid #cce3d3;
  padding-bottom: 0.3rem;
}

.legal-container p {
  margin-bottom: 1rem;
  color: #333;
}

/* Remove bullets/numbers and ensure indentation */
.legal-container ul,
.legal-container ol {
  list-style: none;
  padding-left: 1.75rem; /* Controls indent */
  margin-bottom: 1rem;
}

.legal-container li {
  margin-bottom: 0.6rem;
  text-indent: -1.2rem;  /* Align text under item number or label */
  padding-left: 1.2rem;  /* Create uniform spacing on the left */
}

/* Anchor tag styling */
.legal-container a {
  color: #1e81ce;
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .legal-container {
    padding: 1.5rem;
    font-size: 0.95rem;
    margin-top: 5rem;
  }

  .legal-container h1 {
    font-size: 1.8rem;
  }

  .legal-container h2 {
    font-size: 1.3rem;
  }
}
