div {
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #fff;
}

.main-container {
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  max-width: 1050px;
  width: 100%;
  padding: 0 20px;
}

.schemaplus-logo {
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
  cursor: pointer;
}
.inner-nav {
  margin: auto;
  flex: 1;
}
.nav-wrapper {
  display: flex;
  flex: 1;
}
.navbar {
  background: linear-gradient(90deg, #364aff 0%, #8c15e9 100%);
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  min-height: 116px;
}
.inner-nav {
  display: flex;
}

#pngLogo {
  display: none;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  background: linear-gradient(
    90deg,
    rgba(54, 74, 255, 0.84) 0%,
    rgba(140, 21, 233, 0.84) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2rem;
  border-bottom-left-radius: 42px;
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  width: 60%;
  box-shadow: 0px 7px 4px -1px #00000033;
  max-height: 248px;
  backdrop-filter: blur(9.600000381469727px);
}

/* Hamburger icon styling */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  margin-left: auto;
  padding: 10px 20px;
  z-index: 10000;
  margin-right: 20px;
}

.mobile-menu-inner {
  padding-top: 100px;
  padding-left: 5px;
  padding-right: 20px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .nav-wrapper {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  .schemaplus-logo {
    width: 110px;
    height: auto;
    flex: none;
  }

  .navbar {
    min-height: 80px;
    padding: 0;
    align-items: center;
  }
}

/* Responsive behavior */
@media (max-width: 490px) {
  .inner-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

.navbar a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.privacy-policy {
  margin-bottom: 1.5em;
}
.privacy-policy h2 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.privacy-policy ul {
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}
.privacy-policy li {
  margin: 0.5em 0;
  line-height: 1.4;
}
.simple {
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media screen and (max-width: 490px) {
  .privacy-policy h2 {
    font-size: 10px;
  }
  .privacy-policy ul {
    font-size: 10px;
  }
  .simple {
    font-size: 10px;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 10px 0;
  }
  .nav-wrapper {
    flex-direction: column;
    width: 100%;
  }
  .schemaplus-logo {
    width: 110px;
    height: 35px;
  }
  .inner-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    box-sizing: border-box;
    color: #ffffff;
    box-sizing: border-box;
  }
  .title {
    font-size: 20px;
  }
}
.title {
  margin: 0;
  text-align: center;
}
.url {
  margin-top: auto;
  margin-bottom: auto;
  flex: 1;
}
