/* household-php/public/assets/terms_style.css */

body.terms-page {
  background: #365B6D;
  font-family: 'Archivo', 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.terms-container {
  max-width: 700px;
  margin: 40px auto 24px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(54,91,109,0.10);
  padding: 32px 24px 24px 24px;
}

.terms-container h1, .terms-container h2 {
  font-family: 'Archivo', Arial, sans-serif;
  color: #365B6D;
}

.terms-container h1 {
  font-size: 2.2rem;
  margin-bottom: 0.7em;
}

.terms-container h2 {
  font-size: 1.3rem;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.terms-container p, .terms-container ul, .terms-container li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
}

.terms-container ul {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.terms-container hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2em 0 2em 0;
}

.terms-container a {
  color: #365B6D;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .terms-container {
    max-width: 98vw;
    padding: 16px 4vw 16px 4vw;
  }
  .terms-container h1 {
    font-size: 1.3rem;
  }
  .terms-container h2 {
    font-size: 1.1rem;
  }
}
