body {
    font-family: sans-serif;
    font-size: 16px;
    background-color: wheat;
    padding: 40px;
  }
  
  .container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  ul {
    list-style-type: none;
    margin-bottom: 10px;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  strong {
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .container {
      width: 100%;
      max-width: 768px;
    }
  
    h1 {
      font-size: 20px;
    }
  
    h2 {
      font-size: 18px;
    }
  
    p {
      margin-bottom: 5px;
    }
  
    ul {
      list-style-type: none;
      margin-bottom: 5px;
    }
  
    li {
      margin-bottom: 2px;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      width: 100%;
      max-width: 576px;
    }
  
    h1 {
      font-size: 18px;
    }
  
    h2 {
      font-size: 16px;
    }
  
    p {
      margin-bottom: 2px;
    }
  
    ul {
      list-style-type: none;
      margin-bottom: 2px;
    }
  
    li {
      margin-bottom: 1px;
    }
  }
  