.banner1 {
    position: relative;
    width: 100%;
    /* height: 110vh;  */
    overflow: hidden;
  }
  
  .banner1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  }
  
  .banner-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fafafa;
  }
  
  .banner-text p {
    font-size: 1.25rem;
  }
  
  @media (max-width: 768px) {
    .banner1 {
      height: 50vh;
    }
  
    .banner-text h1 {
      font-size: 2rem;
    }
  
    .banner-text p {
      font-size: 1rem;
    }
  }

  .about-image-container {
    text-align: center;
    padding: 10px;
  }
  
  .about-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }