.ktw-trustbox{
  margin-top:18px;
  border-radius:12px;
  background:linear-gradient(180deg,#ffffff 0%,#f4f7fc 100%);
  border:1px solid rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}

.ktw-trustbox::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:#2d53a0;
}

.ktw-trustbox__badge{
  display:inline-block;
  background:#2d53a0;
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
  border-radius:8px;
  margin:16px 16px 0;
}

.ktw-trustbox__toggle{
  display:none;
  width:100%;
  background:none;
  border:0;
  padding:14px 16px;
  font-size:14px;
  font-weight:700;
  color:#2d53a0;
  text-align:left;
  cursor:pointer;
}

.ktw-trustbox__toggle span:first-child{
  display:inline-block;
}

.ktw-trustbox__chevron{
  float:right;
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-top:4px;
  transition:transform .2s ease;
}

.ktw-trustbox__content{
  padding:12px 16px 14px;
}

.ktw-trustbox__headline{
  font-size:15px;
  font-weight:700;
  color:#1f2d5c;
  margin-bottom:8px;
}

.ktw-trustbox__text{
  font-size:13px;
  line-height:1.55;
  color:#333;
}

.ktw-trustbox__points{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.ktw-trustbox__point{
  font-size:12px;
  color:#1f2d5c;
  background:rgba(45,83,160,.08);
  border:1px solid rgba(45,83,160,.18);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

@media (max-width:680px){
  .ktw-trustbox__badge{
    display:none;
  }

  .ktw-trustbox__toggle{
    display:block;
  }

  .ktw-trustbox__content{
    display:none;
    padding:0 14px 12px;
  }

  .ktw-trustbox.is-open .ktw-trustbox__content{
    display:block;
  }

  .ktw-trustbox.is-open .ktw-trustbox__chevron{
    transform:rotate(-135deg);
  }

  .ktw-trustbox__headline{
    font-size:14px;
  }

  .ktw-trustbox__point{
    white-space:normal;
  }
}