/* ========================================
Terms Page
======================================== */

.terms-section {
  padding-top: 72px;
}

.terms-intro-card {
  margin-bottom: 30px;
  padding: 30px 32px;
  border: 1px solid #dfeeed;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 14px 34px rgba(44, 122, 123, 0.06);
}

.terms-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef8f7;
  color: #2c7a7b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.terms-blocks {
  display: grid;
  gap: 22px;
}

.terms-block {
  padding: 30px 32px;
  border: 1px solid #dfeeed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(44, 122, 123, 0.05);
}

.terms-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.terms-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 16px;
  background: #eef8f7;
  color: #2c7a7b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.terms-block h2 {
  margin: 0;
  color: #243434;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.terms-page .page-paragraph {
  margin-bottom: 0;
  color: #526262;
  line-height: 1.95;
}

.terms-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-list li {
  position: relative;
  padding-left: 22px;
  color: #526262;
  line-height: 1.9;
}

.terms-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fc8c2;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .terms-section {
    padding-top: 56px;
  }

  .terms-intro-card,
  .terms-block {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .terms-head {
    align-items: flex-start;
    gap: 12px;
  }

  .terms-number {
    min-width: 42px;
    min-height: 42px;
    border-radius: 14px;
    font-size: 0.88rem;
  }
}
