.faq-section {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    height: calc(100% - 100px);;
    justify-content: center;
  }

.tip-her-faq-wrp{
    background-image: url(../../images/background_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
    height: 100vh;
}  
  
  .faq-item {
    /* background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4); */
  }

  .faq-item::after{
    content: '';
    display: block;
    height: 2px;
    background: url('../../images/border-bottom.png') no-repeat;
    background-size: contain;
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 40px 20px;
    text-align: left;
    font-size: 22px;
    line-height: 28px;
    color: #A3FAFF;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #F2C2F7;
    font-size: 22px;
    line-height: 28px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
  }
  
  .icon {
    background-image: url(../../images/faq-arrow.png);
    /* background-size: cover;
    background-position: center; */
    width: 51px;
    height: 52px;
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
    background-position: -15px -9px;
    /* background-size: 160% 154%; */
    background-repeat: no-repeat;
  }
  
  .faq-item.active .icon {
    /* background-image: url(./images/active-faq-arrow.png); */
    transform: rotate(90deg);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-section {
      padding: 10px;
    }
  
    .faq-question {
      font-size: 1.5rem;
      /* padding: 15px; */
    }

    .faq-question span:first-child{
        width: 80%;
        display: inline-block;
    }
    .faq-answer{
      font-size: 1.3875rem;
    }
  }

  @media (max-width: 480px) {
    .tip-her-faq-wrp{
        background-position: top left;
    }
  }