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

/* Адаптация под тему сайта */
.bg-light {
  background-color: var(--dark-lighter, #1a1a2e) !important;
  color: var(--text-primary, #ffffff) !important;
}

.bg-dark {
  background-color: var(--dark-card, #0f0f1e) !important;
  color: var(--text-primary, #ffffff) !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary, #4a90e2);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent, #00d4ff);
  margin-bottom: 1rem;
}

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

.table-dark {
  --bs-table-bg: var(--dark-card, #0f0f1e);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--primary, #4a90e2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary, #4a90e2) 0%, var(--accent, #00d4ff) 100%);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent, #00d4ff);
  font-weight: bold;
  font-size: 1.2rem;
}