/* Адаптация к светлой теме сайта */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-lighter) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  border: 3px solid var(--dark-bg);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 2rem);
  background: var(--border-color);
}

.timeline-item:last-child::after {
  display: none;
}

.stats-box {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

h1 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}

.mission-statement {
  background: var(--gradient-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  color: white;
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-glow);
}

.mission-statement h2 {
  color: white;
  margin-top: 0;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}