/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
  }
  
  /* Header */
  .header {
    background: #fff;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
  }
  .header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
  }
  .header p {
    font-size: 0.95rem;
    color: #222;
    
  }
  
  /* Terms Content */
  .terms {
    padding: 40px 20px;
  }
  .terms .container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .terms h2 {
    font-size: 1.3rem;
    color: #e63939;
    margin-bottom: 10px;
  }
  .terms p,
  .terms ul {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  .terms ul {
    padding-left: 20px;
    list-style: disc;
  }
  
  /* Footer */
  .footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .header h1 {
      font-size: 1.5rem;
    }
    .terms h2 {
      font-size: 1.1rem;
    }
  }
  