/* term.css */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #fffdf9;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  .terms-container {
    background-color: #f9f5f0;
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .terms-container .container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .terms-container h2 {
    margin-top: 30px;
    color: #a68554;
    font-size: 1.8rem;
    border-bottom: 1px solid #e3d5c1;
    padding-bottom: 10px;
  }
  
  .terms-container p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 15px;
  }
  
  .last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
    text-align: right;
  }
  
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .header-flex, .nav-links, .footer-cols {
      flex-direction: column;
      text-align: center;
    }
  
    .nav {
      display: none;
    }
  
    .nav.open {
      display: block;
    }
  
    .menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
    }
  
    .menu-toggle .bar {
      width: 25px;
      height: 3px;
      background-color: white;
    }
  
    .terms-container {
      padding: 50px 15px;
    }
  }
  