/* Section alternating colors */
section {
  position: relative;
  z-index: 1;
}

section:nth-of-type(even) {
  background: var(--bg);
  color: var(--text);
}

section:nth-of-type(odd) {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(138, 43, 226, 0.05));
  color: var(--text-dark);
}

section:nth-of-type(odd)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-light);
  z-index: -1;
}

section:nth-of-type(odd) p {
  color: var(--text-dark-muted);
}

/* Hero section specific styles */
#hero-video {
  background: var(--bg-light) !important;
  color: var(--text-dark);
}

#hero-video p {
  color: var(--text-dark-muted);
}

/* Consultation section fixes */
#consultation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing) * 8);
  margin: 0 auto;
  max-width: 1200px;
}

.form-container, 
.features-container {
  width: 100%;
  margin: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: calc(var(--spacing) * 5);
}

/* Why Us section specific styles */
#why-us {
  background: var(--bg-light) !important;
  color: var(--text-dark);
}

#why-us p {
  color: var(--text-dark-muted);
}

#why-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

#why-us #why-us {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: calc(var(--spacing) * 6);
  align-items: start;
}

/* Keep header and footer colors fixed */
header {
  background: var(--bg) !important;
}

footer {
  background: var(--bg) !important;
}