
  .ys-faq-wrap{
    width:100%;
    background:linear-gradient(180deg,#fffdf5 0%,#ffffff 100%);
    padding:50px 15px;
    box-sizing:border-box;
  }
  .ys-faq-container{
    max-width:1000px;
    margin:0 auto;
    font-family:Arial,Helvetica,sans-serif;
    color:#222222;
  }
  .ys-faq-header{
    text-align:center;
    margin-bottom:30px;
  }
  .ys-faq-tag{
    display:inline-block;
    background:#FEC519;
    color:#222222;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    padding:8px 14px;
    border-radius:999px;
    margin-bottom:16px;
    box-shadow:0 6px 18px rgba(254,197,25,0.28);
  }
  .ys-faq-header h2{
    margin:0 0 12px;
    font-size:34px;
    line-height:1.2;
    color:#111111;
    font-weight:700;
  }
  .ys-faq-header p{
    max-width:760px;
    margin:0 auto;
    font-size:16px;
    line-height:1.8;
    color:#555555;
  }
  .ys-faq-list{
    display:flex;
    flex-direction:column;
    gap:16px;
  }
  .ys-faq-item{
    background:#ffffff;
    border:1px solid #f1f1f1;
    border-left:5px solid transparent;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,0.06);
    overflow:hidden;
    transition:all 0.3s ease;
  }
  .ys-faq-item:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,0.08);
  }
  .ys-faq-item.active{
    border-left-color:#FEC519;
    box-shadow:0 16px 38px rgba(254,197,25,0.16);
  }
  .ys-faq-question{
    width:100%;
    border:none;
    background:none;
    cursor:pointer;
    padding:22px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    font-size:18px;
    line-height:1.5;
    font-weight:700;
    color:#1f1f1f;
    box-sizing:border-box;
  }
  .ys-faq-question:hover{
    background:rgba(254,197,25,0.06);
  }
  .ys-faq-icon{
    position:relative;
    flex:0 0 18px;
    width:18px;
    height:18px;
    transition:transform 0.3s ease;
  }
  .ys-faq-icon:before,
  .ys-faq-icon:after{
    content:"";
    position:absolute;
    background:#222222;
    border-radius:2px;
    transition:all 0.3s ease;
  }
  .ys-faq-icon:before{
    top:8px;
    left:0;
    width:18px;
    height:2px;
  }
  .ys-faq-icon:after{
    top:0;
    left:8px;
    width:2px;
    height:18px;
  }
  .ys-faq-item.active .ys-faq-icon{
    transform:rotate(180deg);
  }
  .ys-faq-item.active .ys-faq-icon:after{
    opacity:0;
  }
  .ys-faq-answer{
    display:none;
    padding:0 24px 24px;
    animation:ysFadeDown 0.3s ease;
  }
  .ys-faq-answer p{
    margin:0;
    font-size:15px;
    line-height:1.9;
    color:#555555;
  }
  .ys-faq-answer strong{
    color:#222222;
  }
  @keyframes ysFadeDown{
    from{
      opacity:0;
      transform:translateY(-6px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }
  @media (max-width:768px){
    .ys-faq-wrap{
      padding:36px 12px;
    }
    .ys-faq-header h2{
      font-size:28px;
    }
    .ys-faq-header p{
      font-size:15px;
    }
    .ys-faq-question{
      font-size:16px;
      padding:18px 18px;
    }
    .ys-faq-answer{
      padding:0 18px 18px;
    }
  }
