.faq-item {
  border-radius: 24px;
  background: var(--color-light);
  padding: 20px 32px;
  transition: background 0.3s ease;
  width: 100%;
  border: 1px solid #D3D6D8;
}


.faq-item.is-open{
    background-color: var(--color-white);
}
.faq-question {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    padding: 0;

}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 72px;
}

.faq-answer-inner {
    padding-top: 24px;

    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.faq-icon {
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--color-white);
    padding: 20px 18px;
    display: flex;
    justify-items: center;
    align-items: center;
}

.faq-icon svg{
    width: 12px;
    height: 8px;
    transform: rotate(180deg);
}

.faq-item.is-open .faq-icon {
    background-color: var(--color-light);
    transform: rotate(-180deg);
}

@media (max-width: 600px) {
  .faq-item{
    padding: 24px
  }
  .faq-question{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
  .faq-question{
    gap: 24px;
    align-items: flex-start;
  }
  .faq-answer-inner{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}