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

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

.table-dark {
  --bs-table-bg: var(--dark, #16213e);
  --bs-table-striped-bg: var(--dark-alt, #1a1a2e);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--dark, #16213e);
  border-bottom: 2px solid var(--accent, #4ecca3);
}

/* Стили для списков */
ul, ol {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Стили для параграфов */
p {
  line-height: 1.7;
  color: var(--text-muted, #b0b0b0);
}

h1, h2, h3, h4 {
  color: var(--text, #ffffff);
}

h1 {
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent, #4ecca3);
  padding-bottom: 0.5rem;
}

h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Акцентные блоки */
.alert-info {
  background-color: rgba(78, 204, 163, 0.1);
  border-left: 4px solid var(--accent, #4ecca3);
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text, #ffffff);
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text, #ffffff);
}

/* Таблица для самооценки */
.assessment-table {
  width: 100%;
  margin-bottom: 2rem;
}

.assessment-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.assessment-table td:first-child {
  font-weight: 500;
  width: 70%;
}

/* Контактные блоки */
.support-card {
  background: var(--dark-alt, #1a1a2e);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent, #4ecca3);
}

.support-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.support-card p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.support-card strong {
  color: var(--accent, #4ecca3);
}