.terms-wrapper {
  height: 100%;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  gap: 2rem;
}

.terms-wrapper h1 {
  font-size: 4rem;
  text-align: center;
  width: 80%;
}

.terms-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.terms-container h2 {
  font-size: 1.5rem;
}

.terms-container p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.terms-container ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.terms-container li {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.policy-text {
  color: rgb(0, 98, 231);
}

.red-text {
  color: red;
}

@media (max-width: 768px) {
  .terms-wrapper {
    margin-top: 100px;
    height: 100%;
    padding-top: 60px;
  }

  .terms-wrapper h1 {
    font-size: 2.5rem;
  }

  .terms-container {
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    height: 100%;
    justify-content: center;
  }

  .terms-container h2 {
    margin-bottom: 1rem;
  }
}
