/* ===========================
   Bootstrap-like Card (scoped)
   =========================== */
.faq-acc {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.faq-acc .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, .125);
  border-radius: .25rem;
}

.faq-acc .card-header {
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

/* your snippet */
.faq-acc .card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.faq-acc .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

/* Optional: if you have multiple cards stacked */
.faq-acc .card + .card {
  margin-top: 12px;
}

/* ===========================
   Bootstrap-like Collapse (scoped)
   =========================== */

.faq-acc .collapse {
  display: none;
}

.faq-acc .collapse.show {
  display: block;
}

/* ===========================
   Bootstrap-like spacing helpers (scoped)
   =========================== */

.faq-acc .mb-0 {
  margin-bottom: 0 !important;
}

/* Optional: headings default spacing (helps match BS look) */
.faq-acc h5, 
.faq-acc h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  text-wrap:auto;
   
}

/* Optional: Bootstrap-ish link button if you ever use <button class="btn btn-link"> */
.faq-acc .btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  width:100%;
}

.faq-acc .btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
  padding: 0;
  border: 0;
  padding: .75rem 1.25rem;
}

.faq-acc .btn-link:hover {
  cursor: pointer;
}
