.about-hero {
  background-image: url('../assets/images/aboutus/aboutus-banner.jpg'); /* Update with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px; /* Adjust height as needed */
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Optional: dark overlay for better text contrast */
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}
																		