.bg-light {
  background: linear-gradient(135deg, var(--dark-lighter) 0%, var(--dark-card) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

h1, h2 {
  font-weight: 600;
  color: #ffffff;
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

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

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
}

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

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

.timeline-year {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-box {
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.mission-box h2 {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  margin-bottom: 1.5rem;
}

.mission-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.team-section {
  background: var(--dark-lighter);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

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

h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

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

h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}