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

/* Адаптация к теме сайта */
.privacy-content {
  background-color: var(--card-bg);
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.privacy-section h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.privacy-section h4 {
  color: var(--text-secondary);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

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

.privacy-section ul,
.privacy-section ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.privacy-section ul li,
.privacy-section ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

.effective-date {
  background: var(--dark-bg);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary-cyan);
  margin-bottom: 2rem;
  border-radius: 0.25rem;
}

.effective-date p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.table-responsive {
  margin-bottom: 2rem;
}

.table {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--darker-bg);
  border-bottom: 2px solid var(--primary-cyan);
}

.table thead th {
  color: var(--primary-cyan);
  font-weight: 600;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.table tbody td {
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.25rem;
  }
}