/* Защита от горизонтального скролла */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Адаптация к теме сайта */
.legal-document {
  background-color: var(--surface);
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.legal-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.update-date {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.important-notice {
  background-color: rgba(var(--accent-warm), 0.1);
  padding: 1rem;
  border-left: 4px solid var(--accent);
  margin: 1.5rem 0;
  border-radius: 4px;
}

.table {
  color: var(--text-primary);
  border-color: var(--border);
}

.table thead {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}

.table tbody tr {
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .legal-document {
    padding: 1rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
}