/* Terms & Conditions Page Styles */
.terms-section {
  background-color: var(--color-bg-base);
  padding: 40px 100px 80px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.terms-page__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.terms-section__title {
  font-family: var(--font-family);
  font-size: var(--font-size-h1-desktop);
  line-height: 120%;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  margin: 0 0 40px 0;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.terms-heading {
  font-family: var(--font-family);
  font-size: var(--font-size-h5-desktop);
  line-height: 120%;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary-100);
  margin: 0;
}

.terms-text {
  font-family: var(--font-family);
  font-size: var(--font-size-b1-desktop);
  line-height: 150%;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-100);
  margin: 0;
}

.terms-last-updated {
  margin-top: 16px;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .terms-section {
    padding: 40px 40px 70px;
  }

  .terms-section__title {
    margin-bottom: 32px;
  }

  .terms-content {
    gap: 24px;
  }
}

@media (max-width: 830px) {
  .terms-section {
    padding: 32px 24px 48px;
  }

  .terms-section__title {
    font-size: var(--font-size-h2-desktop);
    margin-bottom: 24px;
  }

  .terms-content {
    gap: 20px;
  }

  .terms-heading {
    font-size: var(--font-size-h5-desktop);
  }

  .terms-text {
    font-size: var(--font-size-b3-mobile);
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 32px 24px 48px;
  }

  .terms-section__title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .terms-content {
    gap: 16px;
  }

  .terms-heading {
    font-size: var(--font-size-h2-mobile);
  }

  .terms-text {
    font-size: var(--font-size-b3-mobile);
    line-height: 1.5;
  }
}

