.hero {
    margin-top:4.122rem;
    position: relative;
    height:550px; /* Adjust height as needed */
    background-image: url(../Images/pages-img/skunk.png); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
 
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }