/* Terms Section */
.terms-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #000000, #111111, #0c0c0c);
    color: #fff;
  }
  
  .terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .terms-container h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
  }
  
  .terms-container .last-updated {
    text-align: center;
    color: rgba(136, 136, 136, 0.9);
    margin-bottom: 3rem;
    font-family: "Geist Mono", monospace;
  }
  
  .terms-content {
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
  }
  
  .terms-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .terms-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(136, 136, 136, 0.9);
    font-family: "Geist Mono", monospace;
  }
  
  .terms-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(136, 136, 136, 0.9);
    font-family: "Geist Mono", monospace;
  }
  
  .terms-content a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  
  .terms-content a:hover {
    color: #888;
  }
  
  @media (max-width: 768px) {
    .terms-container {
      padding: 0 1rem;
    }
  
    .terms-content {
      padding: 1.5rem;
    }
  
    .terms-container h1 {
      font-size: 2rem;
    }
  
    .terms-content h2 {
      font-size: 1.25rem;
    }
  }
  