.header-desktop {
  display: block;
  background-image: url('../image/counsulting-header.webp'); /* Replace with your header image path */
  background-size: cover;
  background-position: center;
  height: 400px; /* Adjust the height as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 75px;
  text-align: left;
}
.header-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
    background-image: url('../image/consulting-header-m.webp'); /* Replace with your header image path */
    background-size: cover;
    background-position: center;
    height: 210px; /* Adjust the height as needed */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
    text-align: left;
  }

}


  .counseling-text-l{
    padding-right: 140px;
  }

  @media (max-width: 768px) {
    .counseling-text-l{
        padding-right: 0px;
      }
  }

  .counseling-text-r{
    padding-left: 140px;
  }

  @media (max-width: 768px) {
    .counseling-text-r{
        padding-left: 0px;
      }
  }



  

     .counseling-desktop {
      display: block;
    }
    .counseling-mobile {
      display: none;
    }

    @media (max-width: 768px) {
      .counseling-desktop {
        display: none;
      }
      .counseling-mobile {
        display: block;
      }

    }

