/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 13 2026 | 07:36:18 */
.db-help-faq {
  margin-top: 28px;
  padding-top: 10px;
}

.db-help-faq__head {
  margin-bottom: 22px;
}

.db-help-faq__head h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.db-help-faq__head p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}

.db-help-faq__list {
  display: grid;
  gap: 14px;
}

.db-help-faq__item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.db-help-faq__item:hover {
  border-color: rgba(123, 97, 255, 0.26);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.db-help-faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.db-help-faq__item summary::-webkit-details-marker {
  display: none;
}

.db-help-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.db-help-faq__item[open] summary::after {
  content: "–";
  background: rgba(0, 217, 255, 0.14);
}

.db-help-faq__content {
  padding: 0 22px 20px;
}

.db-help-faq__content p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .db-help-faq {
    margin-top: 22px;
  }

  .db-help-faq__item summary {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .db-help-faq__content {
    padding: 0 18px 18px;
  }

  .db-help-faq__content p,
  .db-help-faq__head p {
    font-size: 15px;
    line-height: 1.75;
  }
}