.kp-faq-clean {
    padding: 70px 20px;
  }
  
  .faq-wrap {
    max-width: 820px;
    margin: 0 auto;
  }
  
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid #f2e9d8;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: .25s;
    cursor: pointer;
  }
  
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
  }
  
  .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #b88b45;
    border-bottom: 2px solid #b88b45;
    transform: rotate(45deg);
    transition: .25s;
  }
  
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  
  .faq-a p {
    margin-top: 12px;
    line-height: 1.6;
    font-size: 15px;
    color: #555;
  }
  
  .faq-item.active .faq-a {
    max-height: 300px;
  }
  
  .faq-item.active .arrow {
    transform: rotate(-135deg);
  }
  