@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #E6EBF2;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #040F19;
}

.header {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px #E6EBF2 solid;
}

.header h2 {
  font-weight: 500;
  font-size: 20px;
}

.header img {
  width: 50px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}

.support-text {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}

.support-text p span {
  font-weight: 600;
  color: #4042E2;
}

.menu li a {
  text-decoration: none;
  color: #E6EBF2;
  font-weight: 500;
  font-size: 20px;
}

.content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  min-height: calc(100vh - 230px);
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
}

.content img {
  width: 600px;
}

.content h1 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 50px;
  color: #4042E2;
  text-align: left;
}

.text-container {
  max-width: 600px;
}

ul {
  padding: 0;
}

ul li {
  text-align: left;
  font-size: 20px;
  list-style: none;
}

ul li h3 {
  color: #E6EBF2;
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
}

.content-privacy {
  max-width: 1280px;
  padding: 50px 20px;
  margin: 0 auto;
}

.content-privacy h2 {
  margin-bottom: 30px;
  font-size: 34px;
}

.content-privacy h3 {
  margin: 50px 0 10px;
  font-size: 26px;
  font-weight: 500;
}

.menu-privacy {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .content {
    flex-wrap: wrap;
    padding: 20px;
  }
  .footer {
    position: relative;
  }
  .text-container {
    padding: 50px 30px;
  }
  .content h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
  body {
    font-size: 18px;
  }
  ul li {
    text-align: center;
  } 
}