.rof-faq {
  padding: 56px 0 80px;
}

.rof-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rof-faq__item {
  background: rgba(15, 22, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.rof-faq__item[open] {
  border-color: rgba(255, 122, 0, 0.55);
}

.rof-faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.rof-faq__question::-webkit-details-marker {
  display: none;
}

.rof-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--rof-orange);
  border-radius: 6px;
  position: relative;
  transition: transform 0.2s ease;
}

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

.rof-faq__icon::before {
  width: 10px;
  height: 2px;
}

.rof-faq__icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.2s ease;
}

.rof-faq__item[open] .rof-faq__icon::after {
  opacity: 0;
}

.rof-faq__answer {
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.rof-faq__answer p {
  margin: 0;
}
