.bg-light {
  background-color: #1a1a1a !important;
  color: #f8f9fa !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.card {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.card.bg-dark,
.card.bg-dark .card-title,
.card.bg-dark .card-text {
  color: #fff;
}

.card.bg-dark .card-text {
  color: rgba(248, 245, 240, 0.9);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-body {
  padding: 1.5rem;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.security-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.step-card h3 {
  color: #fff;
}

.step-card p {
  color: rgba(248, 245, 240, 0.85);
}

.table {
  color: #f8f9fa;
  border-color: rgba(255, 255, 255, 0.1);
}

.table-dark {
  --bs-table-bg: #2a2a2a;
  --bs-table-striped-bg: #1a1a1a;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-bottom: 2px solid var(--accent);
  color: #000;
  font-weight: 600;
}

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 245, 240, 0.9);
}

.table tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

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

h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}