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

/* Адаптация к теме сайта */
.terms-container {
  background-color: var(--dark-soft);
  color: var(--text);
  padding: 3rem 0;
}

.terms-header {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.terms-section {
  margin-bottom: 3rem;
}

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

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

.terms-section h4 {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

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

.terms-list li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

.highlight-box {
  background-color: var(--dark);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.definition-term {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .terms-container {
    padding: 2rem 0;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.2rem;
  }
}