/* General Body Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}

/* Main container for the terms */
.terms-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
  font-size: 2em;
  color: #212529;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  color: #495057;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
}

/* Lists */
ul,
ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 5px;
}

ul.no-disc > li {
  list-style: none;
}

/* A class for the effective date or other meta info */
.meta-info {
  color: #6c757d;
  font-size: 0.9em;
  margin-bottom: 20px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .terms-container {
    padding: 20px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.3em;
  }
}
