/* Container */
.tfaq-faqs {
  max-width: 800px;
  margin: 1.5rem auto 0;
  text-align: left;
  font-family: inherit;
}

/* Item */
.tfaq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.125rem 0;
}

/* Hide native markers */
.tfaq-faqs summary::marker { content: ""; }
.tfaq-faqs summary::-webkit-details-marker { display: none; }

/* Summary row: arrow + text on one line */
.tfaq-faqs .tfaq-q{
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* Arrow */
.tfaq-faqs .tfaq-q::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .25s ease;
  flex: 0 0 12px;         /* fixes wrap in Safari/Chrome */
}

/* Rotate when open */
.tfaq-faqs .tfaq-item[open] .tfaq-q::before{
  transform: rotate(45deg);
}

/* Heading text */
.tfaq-faqs .tfaq-q h3{
  margin: 0;
  line-height: 1.3;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  flex: 1 1 auto;         /* prevents arrow from forcing a wrap */
}

.trusted-group + .trusted-group { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #eee; }
.trusted-group-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 .75rem; }
.trusted-group-content { line-height: 1.7; }
/* Trusted Group Titles — match global H2 style (Libre Baskerville) */
.trusted-group-title {
  font-family: 'Libre Baskerville', serif !important; /* ensure heading font */
  font-size: 25px;        /* matches your current H2 size */
  font-weight: 600;       /* consistent with site style */
  line-height: 1.2;
  color: #070707;         /* matches your heading color */
  margin: 0 0 1rem;
}

/* Group body content (Poppins) */
.trusted-group-content {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Consistent spacing between groups */
.trusted-group + .trusted-group {
  margin-top: 2.5rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

/* ===== Trusted FAQs: kill inherited indent & keep arrow + text inline ===== */
.tfaq-faqs summary {            /* remove UA + theme markers/padding */
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}
.tfaq-faqs summary::marker { content: ""; }
.tfaq-faqs summary::-webkit-details-marker { display: none; }

/* Keep arrow and question on the same line */
.tfaq-faqs .tfaq-q {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 !important;
  padding: 0 !important;        /* <-- nukes the left push */
}

/* Arrow */
.tfaq-faqs .tfaq-q::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .25s ease;
  flex: 0 0 .55rem;             /* lock the arrow width */
}

/* Rotate when open */
.tfaq-faqs .tfaq-item[open] .tfaq-q::before {
  transform: rotate(45deg);
}

/* Headline inside the summary */
.tfaq-faqs .tfaq-q h3 {
  margin: 0 !important;
  padding: 0 !important;
  font: inherit;                /* prevents theme heading overrides (e.g., icons, indents) */
}

/* Remove any widget/container padding that could indent the block */
.elementor .elementor-widget-shortcode .elementor-widget-container > .tfaq-faqs {
  padding-left: 0 !important;
  margin-left: 0 !important;
}