/* Base Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    background-color: #f9f9f9;
    color: black;
  }
  p{
    color: black;
  }
  /* Terms Container */
  .terms-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings */
  .terms-container h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: black;
  }
  .terms-container li {
    list-style-type: square; /* Options: disc (default), circle, square */
}

  .terms-container h2 {
    margin-top: 10px;
    font-size: 1rem;
    color: black;
    border-left: 4px solid #ff4500;
    padding-left: 10px;
  }
  
  /* Sections & Lists */
  .terms-container section {
    margin-bottom: 20px;
  }
  
  .terms-container ul {
    padding-left: 20px;
  }
  
  .terms-container li {
    margin-bottom: 10px;
  }
  
  /* Other Text */
  .updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
  }
  
  .contact {
    font-size: 1rem;
    margin-top: 40px;
    font-weight: 500;
  }
  
  .contact a {
    color: black;
    text-decoration: none;
  }
  
  .contact a:hover {
    text-decoration: underline;
    color: #ff4500;
  }
  