.vok-faq {
  padding: 60px 0 30px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 255, 90, 0.11) 0%,
    rgba(5, 20, 27, 0.11) 100%
  );
}

.vok-faq__title {
  font-family: "Luckiest Guy", cursive;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0 0 36px;
}

.vok-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.vok-faq__item {
  border-bottom: 1px solid rgba(0, 255, 90, 0.4);
  padding: 16px 0;
}

.vok-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-family: "Luckiest Guy", cursive;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
}

.vok-faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  flex: 0 0 auto;
  margin-left: 16px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.vok-faq__icon::before,
.vok-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.vok-faq__icon::before {
  width: 12px;
  height: 2px;
}

.vok-faq__icon::after {
  width: 2px;
  height: 12px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.vok-faq__item.is-open .vok-faq__icon {
  color: var(--vok-green);
  border-color: var(--vok-green);
}

.vok-faq__item.is-open .vok-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.vok-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.vok-faq__item.is-open .vok-faq__a {
  max-height: 600px;
  padding-top: 12px;
}

.vok-faq__a p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--vok-text-soft);
  margin: 0;
}

@media (max-width: 600px) {
  .vok-faq__title {
    font-size: 30px;
  }

  .vok-faq__q {
    font-size: 15px;
  }
}
