/* Main CSS for SEO/landing pages */
/* This file provides overrides for Bootstrap defaults on dark-themed pages */

:root {
  --ng-muted: #94a3b8;
  --ng-text: #e2e8f0;
}

/* Override Bootstrap's text-muted for dark backgrounds */
.text-muted {
  color: var(--ng-muted) !important;
}

/* Ensure list items with text-muted are readable */
ul.text-muted li,
ol.text-muted li {
  color: var(--ng-muted);
}

/* Links in muted text areas */
.text-muted a {
  color: #667eea;
}

.text-muted a:hover {
  color: #8b9cf4;
}
