.terms-page {
  max-width: 860px;
  line-height: 1.8;
  color: #333;
  margin: 10px auto 60px;
  padding: 20px 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

  font-family: "Helvetica Neue", Arial, sans-serif;
}

.terms-header h1 {
  margin: 0 0 40px;
  border-bottom: 2px solid #444;
  padding: 0;
  font-weight: 600;
}

.terms-intro {
  background: #f7f7f7;
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 40px;
  font-size: 14px;
}

.terms-section {
  margin-bottom: 36px;
}

.terms-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border-left: 6px solid var(--color-primary);
  padding: 0 12px;
}

.terms-section p {
  font-size: 14px;
  margin: 0;
}

.terms-section ul {
  font-size: 14px;
  margin: 0;
  padding: 10px 30px 20px;
}

.terms-date {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
}

@media (max-width: 768px) {

  .terms-page {
    margin: 0 auto 40px;
    padding: 20px 10px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
  }

  .terms-header h1 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .terms-section {
    margin-bottom: 10px;
  }

  .terms-intro {
    padding: 12px 10px;
    margin-bottom: 10px;
  }

}