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

/* Адаптация к светлой теме */
.bg-light {
  background-color: var(--light) !important;
  color: var(--text-dark) !important;
}

/* Типографика для юридических документов */
.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.terms-section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.terms-section h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.terms-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.terms-section ul,
.terms-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.terms-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Нумерованные разделы */
.section-number {
  display: inline-block;
  min-width: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Важные блоки */
.important-notice {
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
  background: var(--light);
  border-radius: 0.25rem;
}

.important-notice p:last-child {
  margin-bottom: 0;
}

/* Таблица для контактов */
.contact-info {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--light);
  border-radius: 0.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Дата обновления */
.update-date {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.25rem;
  }
  
  .terms-section ul,
  .terms-section ol {
    padding-left: 1rem;
  }
}