.bg-light {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
  border: 1px solid rgba(0, 191, 255, 0.2);
  color: #000000;
}

.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light p,
.bg-light ul,
.bg-light li,
.bg-light .card-title,
.bg-light .card-text {
  color: #000000;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

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

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

.info-box {
  padding: 1.5rem;
  background: rgba(0, 191, 255, 0.1);
  border-left: 4px solid var(--primary-cyan);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.table {
  color: #000000;
  border-color: rgba(0, 191, 255, 0.2);
}

.table thead {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--electric-blue) 100%);
  color: #fff;
  border: none;
}

.table tbody tr {
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.table tbody td {
  color: #000000;
}

.table tbody tr:hover {
  background: rgba(0, 191, 255, 0.05);
}

.checklist-item {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--card-bg);
  border-radius: 8px;
  border-left: 3px solid var(--primary-cyan);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  border-left-width: 6px;
  padding-left: 1.5rem;
}