.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: inherit;
}
.faq-item__title,
.faq-item__text {
  padding: 32px;
}
.faq-item__title {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.faq-item__title svg {
  width: 30px;
  height: 30px;
  color: #B0BBCC;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-item__title svg {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__title {
  padding-bottom: 0;
}
.faq-item__text {
  display: none;
  color: #627490;
  padding-top: 0;
}
.faq-item.active .faq-item__text {
  display: block;
}
/* Radio */
.form-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.form-radio input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-radio__body {
  height: 35px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  background: #BFD7FF;
  border-radius: 6px;
}
.form-radio.type2 .form-radio__body {
  background: #E2D7FF;
}
.form-radio.type3 .form-radio__body {
  background: #FFE8FE;
}
.form-radio__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.form-radio__text small {
  margin-left: 4px;
  opacity: 0.6;
}
.form-radio__switch {
  width: 32px;
  height: 20px;
  background: var(--primary-disabled-text);
  border-radius: 12px;
  position: relative;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.form-radio__switch::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.form-radio input[type="checkbox"]:checked + .form-radio__body .form-radio__switch {
  background-color: #5893F7;
}
.form-radio input[type="checkbox"]:checked + .form-radio__body .form-radio__switch::before {
  transform: translateX(12px);
}