#home-vision {
  width: 100%;
  height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Needed for z-index context if header is absolute/fixed */

  color: var(--color-white);
}

#home-vision::before {
  /* Add this pseudo-element for the overlay */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* 50% black overlay */
  z-index: 1; /* Ensure overlay is above the background but below the content */
}

.vision-content {
  text-align: center;
  z-index: 10; /* Adjust as needed */
  position: relative; /* Ensures z-index applies correctly */
  color: #fff; /* Example text color, adjust as needed */
}

#home-vision h1 {
  margin-top: 1rem;
  margin-bottom: 1.777rem;
  line-height: 110% !important; /* Ensures line-height is applied */
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 1520px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

#home-vision span {
  display: block;
  font-size: 1.2rem; /* Example size */
  margin-bottom: 1rem;
}

#home-vision p {
  margin: 0 auto;
  max-width: 960px;
}

/* XXL Screens (1800px and up) */
@media (min-width: 1800px) {
}

/* XL Screens (1600px-1799px) */
@media (min-width: 1600px) and (max-width: 1799px) {
}

/* Large Screens (1400px-1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
}

/* Medium-Large Screens (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
}

/* Small-Medium Screens (max-width: 1199px) */
@media (max-width: 1199px) {
}

/* Small Screens (max-width: 992px) */
@media (max-width: 992px) {
  #home-vision {
    padding-top: 48px;
    padding-bottom: 48px;
    height: auto;
  }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
}
