* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: #000;
  line-height: 1.2;
  background-color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 20px;
}

.policy-header {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.policy-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}

.policy-content div h3 {
  font-weight: 400;
  font-size: 16px;
}

.information_uses_list {
  list-style: none;
}

.information_uses_list li {
  position: relative;
  padding-left: 16px;
  display: flex;
  align-items: center;
}

.information_uses_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 8px;
  color: #000;
}

.more-info-footer {
  margin: 20px 0px;
}

.more-info-links {
  list-style: disc;
  padding-left: 25px;
  color: #152ae6;
}

.more-info-links a {
  color: #152ae6;
  text-decoration: underline;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  font-size: 12px;
  gap: 15px;
  margin-top: 15px;
}

.bottom-nav a {
  color: #000;
  text-decoration: underline;
  font-family: "Alegreya", serif;
}

@media (max-width: 767px) {
  .policy-header {
    font-size: 1.6rem;
  }
  .bottom-nav {
    flex-wrap: wrap;
  }
}
