.selina-faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Manrope', system-ui, sans-serif;
}

.selina-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.selina-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f2933;
}

.selina-faq-question:hover {
  color: #000;
}

.selina-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.selina-faq-icon::before,
.selina-faq-icon::after {
  content: "";
  position: absolute;
  background: #1f2933;
  transition: transform 0.25s ease;
}

.selina-faq-icon::before {
  width: 14px;
  height: 2px;
  top: 6px;
  left: 0;
}

.selina-faq-icon::after {
  width: 2px;
  height: 14px;
  top: 0;
  left: 6px;
}

.selina-faq-item.active .selina-faq-icon::after {
  transform: scaleY(0);
}

.selina-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.selina-faq-answer p {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  padding-bottom: 22px;
  margin: 0;
}

.selina-faq-item.active .selina-faq-answer p {
  opacity: 1;
  transform: translateY(0);
}
