/* Adapting to site theme */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.card {
  background: var(--dark-card, rgba(0, 0, 0, 0.3));
  border-color: var(--border-color, rgba(255, 255, 255, 0.1));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, 0.5));
}

.card.bg-dark {
  background: var(--dark-card, rgba(0, 0, 0, 0.4)) !important;
  border-color: var(--border-color, rgba(255, 255, 255, 0.15));
}

.card.bg-light {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.badge {
  background: var(--gradient-1, linear-gradient(135deg, var(--primary), var(--secondary)));
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.timeline-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-1, var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  box-shadow: var(--shadow-glow, 0 0 20px rgba(255, 255, 255, 0.3));
}

.timeline-step:nth-child(1)::before { content: '1'; }
.timeline-step:nth-child(2)::before { content: '2'; }
.timeline-step:nth-child(3)::before { content: '3'; }
.timeline-step:nth-child(4)::before { content: '4'; }

.highlight-box {
  background: var(--gradient-2, rgba(255, 255, 255, 0.05));
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
  color: #000 !important;
}

.highlight-box h1,
.highlight-box h2,
.highlight-box h3,
.highlight-box h4,
.highlight-box h5,
.highlight-box h6,
.highlight-box p,
.highlight-box strong {
  color: #000 !important;
}

.info-icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-1, var(--primary));
  border-radius: 50%;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
}

.table-responsive table {
  min-width: 600px;
  display: table;
}

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

.table thead {
  background: var(--dark-card, rgba(0, 0, 0, 0.4));
  border-bottom: 2px solid var(--border-color, rgba(255, 255, 255, 0.2));
}

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

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

.btn-primary {
  background: var(--gradient-1, var(--primary));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow, 0 10px 30px rgba(255, 255, 255, 0.2));
}

.requirement-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent, var(--primary));
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

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