/* body and layout */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* sections */
.container {
  width: 100%;
}

section {
  width: 100%;
  padding: 16px 0;
}

.terms-container {
  flex: 1;
}

.bg-gray {
  background-color: #f8f9f9;
}

h1.heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

h2.heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
}

.context {
  font-size: 18px;
  margin-bottom: 32px;
  color: #666;
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list li {
  font-size: 16px;
  line-height: 1.8;
  padding-right: 24px;
  position: relative;
  text-align: justify;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  right: 6px;
  top: -5px;
  color: #6ecc94;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 680px) {
  section {
    padding: 40px 0;
  }

  h1.heading {
    font-size: 22px;
  }

  h2.heading {
    font-size: 20px;
  }

  p,
  .context {
    font-size: 16px;
  }

  .terms-list li {
    font-size: 15px;
    padding-right: 20px;
  }

  .content {
    padding: 0 16px;
  }
}
