.swfq-wrap{
  max-width: var(--swfq-maxw, 1100px);
  margin: 0 auto;
  padding: 48px 16px;
}
.swfq-title{
  font-size: var(--swfq-title, 56px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--swfq-text, #111827);
}
@media (max-width: 768px){
  .swfq-title{ font-size: var(--swfq-title-m, 36px); }
}
.swfq-item{
  background: var(--swfq-bg, #e9e4da);
  border-radius: var(--swfq-radius, 10px);
  margin: 12px 0;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.swfq-btn{
  width: 100%;
  text-align: left;
  padding: var(--swfq-py, 22px) var(--swfq-px, 22px);
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--swfq-q, 22px);
  font-weight: 700;
  cursor: pointer;
  color: var(--swfq-text, #111827);
}
.swfq-btn:hover{
  background: var(--swfq-hover, #e3ddcf);
}
.swfq-chevron{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--swfq-chevron, rgba(255,255,255,.45));
}
.swfq-content{
  max-height: 0;
  transition: max-height 240ms ease;
}
.swfq-content-inner{
  padding: 0 var(--swfq-px, 22px) var(--swfq-py, 22px);
  font-size: var(--swfq-a, 18px);
  line-height: 1.6;
  color: var(--swfq-muted, rgba(0,0,0,.85));
}
.swfq-item[data-open="1"] .swfq-content{
  max-height: 800px;
}
.swfq-item[data-open="1"] .swfq-chevron svg{
  transform: rotate(180deg);
}
.swfq-chevron svg{
  transition: transform 200ms ease;
}
