body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4fdfd;
    color: #033333;
  }

  header { 
    z-index: 1000;
    top: 0;
    position: sticky;
    background:#026969;
    color: white;
    padding: 20px;
    text-align: center;
  }

  header h1 {
    margin: 0;
  }

  .container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
  }

  section {
    margin-bottom: 40px;
  }

  section h2 {
    color: #026969;
    border-bottom: 2px solid #b2f5ea;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }

  section p {
    margin: 10px 0;
  }

  ul {
    margin: 10px 0 0 20px;
  }

  footer {
    background-color: #023e3a;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }

  footer a {
    color: #b2f5ea;
    text-decoration: none;
  }

