.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background: url('./assets/studiobg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    padding: 0 20px;
  }
  
  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1;
  }
  
  .about-hero-text {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
  }
  
  .about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  