.tip-her-aboutus-wrp .container{
    max-width: 1251px;
    width: 75%;
    margin: 20px auto 0;
  }

  .tip-her-aboutus-wrp{
    background-image: url(../../images/background_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
}

  .tip-her-aboutus-wrp h2{
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #F2C2F7;
  }

  .tip-her-aboutus-wrp h3{
    font-size: 44px;
    letter-spacing: 0.05em;
    color: #F2C2F7;
  }

  .tip-her-aboutus-wrp .aboutus-board{
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #46A6A0;
    margin-top: 20px;
  }
  
  .tip-her-aboutus-wrp .aboutus-board::after{
    content: '';
    display: block;
    height: 2px;
    background: url('../../images/border-bottom.png') no-repeat;
    background-size: contain;
    margin-top: 50px;
    padding-bottom: 100px;
  }

  /* About Us Section Styles */
  .zoom-effect-section {
    overflow: hidden;
    position: relative;
  }

  .zoom-text {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.8s ease-out;
    /* background-color: rgba(0, 0, 255, 0.1);  */ /* For debugging */
    display: inline-block; /* Important, allows transform to work correctly if it's only text */
  }

  .zoom-effect-section.active .zoom-text {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
  }

  @media (max-width: 768px) {
    .tip-her-aboutus-wrp .container{
        width: 90%;
    }

    .tip-her-aboutus-wrp h2{
        font-size: 2.625rem;
    }

    .tip-her-aboutus-wrp h3{
        font-size: 2rem;
    }

    .tip-her-aboutus-wrp .aboutus-board{
        font-size: 1.3875rem;
    }

    .tip-her-aboutus-wrp{
        background-position: top left;
    }
  }