.front-slider {
  position: relative;
  background: url('/sites/preventionconte/files/inline-images/Conte-Center-Home-Page.jpg') no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.slider-content {
  position: relative;
  z-index: 2;
}

.slider-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.slider-content p {
  font-size: 1.2rem;
}

.btn-primary {
  background: #0094ff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

