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

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

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

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

.benefits-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
}

.info-box {
  background: var(--dark-card);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.requirement-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  font-size: 0.9rem;
}

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

table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--accent);
}

table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}