/* css/tos.css */
@charset "UTF-8";

/* Base page styling */
.tos-page {
  background: var(--sr-bg);
  color: var(--sr-text);
  font-family: var(--font-base);
  line-height: 1.6;
  padding: var(--sp-lg) 0;
}

/* Header with subtle divider */
.tos-header {
  background: var(--sr-surface);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--sr-shadow-light);
  text-align: center;
  border-bottom: 1px solid var(--sr-border);
}
.tos-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
}
.tos-header .tos-date {
  margin-top: var(--sp-xs);
  font-size: var(--fs-sm);
  color: var(--sr-muted);
}

/* Main content container */
.tos-content {
  width: min(95%, 800px);
  margin: 0 auto;
  padding: var(--sp-lg);
  background: var(--sr-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--sr-shadow-light);
}

/* Sections with bottom separators */
.tos-content section {
  margin: var(--sp-lg) 0;
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--sr-border);
}
.tos-content section:last-child {
  border-bottom: none;
} {
  border-bottom: none;
}

/* Section headings with accent bar */
.tos-content h2 {
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  color: var(--sr-primary-dark);
  padding-left: var(--sp-sm);
  border-left: 4px solid var(--sr-primary-dark);
}

/* Paragraphs and lists spacing */
.tos-content p,
.tos-content ul {
  margin: var(--sp-sm) 0 var(--sp-md);
}
/* Custom list bullets */
.tos-content ul {
  list-style: none;
  padding-left: var(--sp-lg);
}
.tos-content li {
  position: relative;
  margin-bottom: var(--sp-md);
  padding-left: var(--sp-md);
}
.tos-content li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--sr-primary);
  font-size: var(--fs-base);
  line-height: 1;
}

/* Links styling */
.tos-content a {
  color: var(--sr-primary);
  text-decoration: underline;
}

/* Footer styling */
.tos-footer {
  text-align: center;
  margin: var(--sp-lg) 0;
  color: var(--sr-muted);
  font-size: var(--fs-sm);
}

