/* ONLY applies inside terms-page */
.terms-page {
  font-family: "Inter", sans-serif;
  background-color: #f3f8fc;
}

/* CONTAINER */
.terms-page .container {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

/* CARD */
.terms-page .card {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.terms-page .title {
  text-align: center;
  color: #0e8fb0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* SECTION */
.terms-page .section {
  margin-bottom: 24px;
}

/* HEADING */
.terms-page .section h2 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 8px;
}

/* TEXT */
.terms-page .section p {
  font-size: 13px;
  color: #808080;
  line-height: 1.6;
  text-align: justify;
}

/* STRONG TEXT */
.terms-page .section strong {
  color: #10a3c5;
  font-weight: 600;
}

/* LISTS */
.terms-page .section ol,
.terms-page .section ul {
  padding-left: 20px;
  margin: 10px 0;
}

/* LIST ITEMS */
.terms-page .section li {
  font-size: 13px;
  color: #808080;
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: justify;
}

/* NESTED LISTS (A, i, etc.) */
.terms-page .section ol ol {
  margin-top: 6px;
}

/* MULTIPLE PARAGRAPHS INSIDE SECTION */
.terms-page .section p + p {
  margin-top: 10px;
}

/* SPACING FOR <br> HEAVY CONTENT */
.terms-page .section p br {
  display: block;
  margin-bottom: 6px;
}

/* LINKS (if any appear) */
.terms-page .section a {
  color: #10a3c5;
  text-decoration: none;
}

.terms-page .section a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .terms-page .card {
    padding: 20px;
  }

  .terms-page .title {
    font-size: 18px;
  }

  .terms-page .section h2 {
    font-size: 13px;
  }

  .terms-page .section p {
    font-size: 12px;
  }
}
