.bg-light {
  background-color: var(--neutral-light) !important;
  color: var(--neutral-dark) !important;
}

.card {
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-item {
  border-left: 3px solid var(--primary-bright);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-electric);
  box-shadow: var(--shadow-glow);
}

.stats-card {
  text-align: center;
  padding: 2rem;
}

.stats-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-bright);
  display: block;
  margin-bottom: 0.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.team-section {
  background: var(--gradient-dark);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 3rem 0;
}