main {
    display: flex;
    justify-content: center;
    height: auto;
  }
  
  section {
    box-sizing: content-box;
    padding-top: 10px;
    padding-bottom: 100px;
    max-width: 800px;
    margin-left: 1%;
    margin-right: 1%;
  }
  
  .scrolled {
    overflow: scroll;
    height: calc(100svh - 114px);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  
  .scrolled::-webkit-scrollbar {
    display: none;
  }
  
  .content {
    color: #000;
    line-height: 1.6;
    }

  .content p  {
    font-family: 'Inter', sans-serif;
  }
  
  /* Override the global list-style: none for content lists */
  .content ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-family: 'Inter', sans-serif;

  }
  
  .content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: dodgerblue;
    border-radius: 50%;
  }
  
  h1 {
    color: dodgerblue;
    margin-bottom: 30px;
    font-size: 2.5em;
    border-bottom: 2px solid dodgerblue;
    padding-bottom: 10px;
  }
  
  h2 {
    /* color: dodgerblue; */
    color: dodgerblue;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  .slogan {
    font-style: italic;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 30px;
    text-align: center;
    font-family: 'Inter', sans-serif;
  }
  
  @media screen and (max-width: 768px) {
    section {
      margin: 10px;
    }
  
    h1 {
      font-size: 2em;
    }
  
    h2 {
      font-size: 1.5em;
    }
  }
  
  @media screen and (max-width: 1020px) {
    main {
      background-position: center;
    }
  }
  
  footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
}

.legal-links a {
    color: #000000;
    margin-right: 20px;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

.pb {
    display: flex;
    justify-content: center;
    width: 100%;
}

.slogan {
    position: absolute;
    bottom: -12px;
  }
  

  @media screen and (max-width: 376x) {
    .slogan {
      margin-top: 125px !important
    }
  }

  @media (max-height:700px) {
    .slogan {
      margin-top: 20px !important;
      position: relative;
      bottom: 0;
    }
  }