.faq_html_native_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.faq_html_native_col_2 details {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 16px;
}

.faq_html_native_col_2 summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
}

.faq_html_native_col_2 summary::-webkit-details-marker {
  display: none;
}

.faq_html_native_col_2 summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: rotate(-45deg);
  transition: .2s;
  flex: 0 0 auto;
}

.faq_html_native_col_2 details[open] summary::after {
  transform: rotate(45deg);
}

.faq_html_native_col_2 p {
  margin: 0;
  padding: 0 0 20px;
}

@media (max-width: 700px) {
  .faq_html_native_col_2 {
    grid-template-columns: 1fr;
  }
}