.tobor-faq-section {
  --tobor-faq-bg: #f8fafc;
  --tobor-faq-text: #171717;
  --tobor-faq-muted: #525252;
  --tobor-faq-border: #e8e8e8;
  --tobor-faq-icon: #9ca3af;
  --tobor-faq-accent: #506ccd;
  box-sizing: border-box;
  width: 100%;
  padding: 64px 96px;
  background: var(--tobor-faq-bg);
  color: var(--tobor-faq-text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tobor-faq-section *,
.tobor-faq-section *::before,
.tobor-faq-section *::after {
  box-sizing: border-box;
}

.tobor-faq-section__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  width: 100%;
  padding-top: 10px;
  text-align: center;
}

.tobor-faq-section__top h2 {
  width: 100%;
  margin: 0;
  color: var(--tobor-faq-text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.tobor-faq-section .tobor-faq-section__top p {
  width: min(890px, 100%);
  margin: 0;
  color: var(--tobor-faq-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.tobor-faq-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  /* Outlined, matching .tobor-fsec__btn--secondary. */
  border: 2px solid #171717;
  border-radius: 128px;
  background: transparent;
  color: #171717;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
}

.tobor-faq-section__button:hover{
  border: 2px solid #171717;
  background: transparent;
  color: #171717 !important;
}
.tobor-faq-section__button:focus {
  color: #171717;
  text-decoration: none;
}

.tobor-faq-section__columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

.tobor-faq-section__column {
  width: 100%;
  max-width: 868px;
}

.tobor-faq-section__column {
  min-width: 0;
}

.tobor-faq-section__column > h3 {
  width: 100%;
  margin: 0 0 24px;
  color: var(--tobor-faq-text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.tobor-faq-section__rule {
  width: 100%;
  height: 1px;
  background: var(--tobor-faq-border);
}

.tobor-faq-section__faq-item {
  width: 100%;
  border-bottom: 1px solid var(--tobor-faq-border);
}

.tobor-faq-section__faq-toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 92px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--tobor-faq-text);
  text-align: left;
  cursor: pointer;
}

.tobor-faq-section__faq-item.is-open .tobor-faq-section__faq-toggle {
  min-height: 0;
  padding-bottom: 14px;
}

.tobor-faq-section__faq-toggle span {
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.tobor-faq-section__faq-toggle i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.tobor-faq-section__faq-toggle i::before,
.tobor-faq-section__faq-toggle i::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--tobor-faq-icon);
  transition: opacity 160ms ease, transform 160ms ease;
}

.tobor-faq-section__faq-toggle i::before {
  left: 5px;
  transform: rotate(45deg);
}

.tobor-faq-section__faq-toggle i::after {
  right: 5px;
  transform: rotate(-45deg);
}

.tobor-faq-section__faq-item.is-open .tobor-faq-section__faq-toggle i::before {
  transform: rotate(-45deg);
}

.tobor-faq-section__faq-item.is-open .tobor-faq-section__faq-toggle i::after {
  opacity: 1;
  transform: rotate(45deg);
}

.tobor-faq-section__faq-panel {
  width: 100%;
  padding: 0 48px 24px 0;
  overflow: hidden;
  transition: height 260ms ease, opacity 200ms ease;
  will-change: height, opacity;
}

.tobor-faq-section .tobor-faq-section__faq-panel p {
  margin: 0;
  color: var(--tobor-faq-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tobor-faq-section__resources {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tobor-faq-section__resource {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--tobor-faq-border);
  color: var(--tobor-faq-text);
  text-decoration: none;
}

.tobor-faq-section__resource:hover,
.tobor-faq-section__resource:focus {
  color: var(--tobor-faq-text);
  text-decoration: none;
}

.tobor-faq-section__resource span {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.tobor-faq-section__resource strong {
  color: var(--tobor-faq-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.tobor-faq-section__resource em {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tobor-faq-muted);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.tobor-faq-section__resource b {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--tobor-faq-muted);
}

.tobor-faq-section__resource-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--tobor-faq-icon);
}

.tobor-faq-section__browse {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  float: right;
  margin-top: 16px;
  color: var(--tobor-faq-accent);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.tobor-faq-section__browse:hover,
.tobor-faq-section__browse:focus {
  color: var(--tobor-faq-accent);
  text-decoration: none;
}

.tobor-faq-section__browse i {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) scale(0.55);
}

@media (max-width: 1023px) {
  .tobor-faq-section {
    padding: 56px 40px;
  }

  .tobor-faq-section__column {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .tobor-faq-section {
    padding: 48px 20px;
  }

  .tobor-faq-section__top h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .tobor-faq-section__top p,
  .tobor-faq-section__faq-toggle span,
  .tobor-faq-section__resource strong {
    font-size: 18px;
    line-height: 26px;
  }

  .tobor-faq-section__faq-panel {
    padding-right: 0;
  }

  /* Full-width CTA on mobile, matching the other sections. */
  .tobor-faq-section__button {
    width: 100%;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tobor-faq-section__faq-panel,
  .tobor-faq-section__faq-toggle i::before,
  .tobor-faq-section__faq-toggle i::after {
    transition: none;
  }
}
