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

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

.container {
  max-width: 900px;
  padding-top: 20px;
  margin: 0 auto;
}

.terms-header {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

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

.terms-content div h3 {
  font-weight: 400;
  text-decoration: underline;
  font-size: 16px;
}

.more-info-footer {
  margin-top: 20px;
  text-align: left;
}

.more-info-title {
  font-size: 14px;
  font-weight: 700;
}

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

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

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

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

@media (max-width: 767px) {
  .terms-header {
    font-size: 1.4rem;
  }
  .bottom-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
