/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: linear-gradient(180deg, #003B32 0%, #000000 100%);
    color: #efeaea;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.015em;
    /* padding: 20px; */
  }

  a {
    color: #00F4D0;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2em;
  }

  .logo-container img {
    width: 100px;
  }
  
  .container {
    max-width: 80%;
    margin: 0 auto;
    /* background-color: white; */
    padding: 40px;
    max-width: 1024px;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  }
  
  h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .updated-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 30px;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    /* color: #1a73e8; */
  }
  
  p, ul {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  ul {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 8px;
  }
  
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000000;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
  }