/* Section container spacing */
section {
    margin: 3rem auto;
    max-width: 800px;
    padding: 1rem 2rem;
    border-radius: 12px;
  }
  
  /* Headings */
  section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #0077cc;
    color: #222;
    font-weight: 600;
  }
  
  /* Paragraphs */
  section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
  }
  
  /* Policies list */
  ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    padding-left: 0.5rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #333;
  }
  
  /* Contact section (slight highlight) */
  #contact {
    background: #f7fbff;
    border: 1px solid #d9ecff;
  }
  
 
