/* basic.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

.Abody {
    font-family: 'Poppins', sans-serif;
    background-color: #2C8DEB;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .legal-page {
    max-width: 800px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .Ah1, .Ah2 {
    color: #2c3e50;
    margin-top: 1.5rem;
  }
  
  .Ah1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .Ah2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .Ap {
    margin: 1rem 0;
    font-size: 1rem;
  }
  
  ul.feature-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  ul.feature-list li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
  }
  
  ul.feature-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ecc71;
  }
  
  .Aa {
    color: #0077cc;
    text-decoration: none;
  }
  
  .Aa:hover {
    text-decoration: underline;
  }

  .site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
  }
  
  .site-footer a {
    color: #1abc9c;
    margin: 0 10px;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }

  
  @media (max-width: 600px) {
    .legal-page {
      padding: 1rem;
      margin: 1rem;
    }
  
    .Ah1 {
      font-size: 1.5rem;
    }
  
    .Ah2 {
      font-size: 1.2rem;
    }
    
   
  }
  

  