.breadcrumb-container {
  position: relative;
  width: 100%;
  background-image: none; /* Remove direct background image */
  overflow: hidden;
}

.breadcrumb-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/breadcrumb_bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2; /* Lower opacity */
  z-index: 0;
  pointer-events: none;
}

.breadcrumb-container > * {
  position: relative;
  z-index: 1;
}

.breadcrumb-container h2 {
  font-size: 25px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  margin: 0 auto;
}

.breadcrumb span {
  margin: 0 2rem;
}
