/* Styles for document pages (Privacy Policy, EULA) */

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 1.8em;
  margin: 30px 0 15px;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

h3 {
  font-size: 1.3em;
  margin: 25px 0 10px;
  font-weight: 600;
}

p {
  font-size: 1em;
  line-height: 1.8;
  margin: 15px 0;
  color: #333;
  text-align: left;
}

ul, ol {
  margin: 15px 0;
  padding-left: 30px;
}

li {
  margin: 8px 0;
  line-height: 1.8;
  color: #333;
}

.last-updated {
  text-align: center;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 40px;
}

.contact-info {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.95em;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  h2 {
    border-bottom-color: #333;
  }

  p, li {
    color: #ccc;
  }

  .last-updated {
    color: #888;
  }

  .contact-info {
    border-top-color: #333;
  }
}

/* Responsive design */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  main {
    padding: 20px 10px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }
}
