.background-color-overlay {
  background-color: rgba(0, 95, 138, 0.8) !important;
  position: relative; /* preserve layout layering */
  z-index: 0; /* make sure it’s below text, if needed */
}

.background-color-overlay::before {
  content: '';
  background: rgba(0, 95, 138, 0.8) !important; /* optional if still using ::before visuals */
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1; /* push behind content */
}