.kenmos__wrapper {
  max-width: 1576px;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: stretch;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title span {
  color: var(--Red, #ed1c24);
  text-align: center;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}

.title h1 {
  color: var(--Header, #151515);
  text-align: center;
  margin-bottom: 20px;
}

.title p {
  max-width: 662px;
  margin: 0 auto;
  text-align: center;
  align-self: center;
  font-family: Lato;
}

/* FIX: your markup uses in__wall (double underscore) */
.in__wall {
  margin-bottom: 15px;
}

.in__wall h3 {
  color: var(--Header, #151515);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* ===============================
QA TABLE
=============================== */

.confidence .qa-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  --qa-stripe: #f2f2f2;
  --qa-border: #eeeeee;
}

.confidence .qa-table-wrap {
  border-radius: 20px; /* matches reference softness */
  border: 1px solid var(--qa-border);
  overflow: hidden; /* clips inner table cleanly */
  background: #fff;
}

/* TABLE should NOT fight the rounding */
.confidence .qa-table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

/* REMOVE last-row background bleed */
.confidence .qa-table tbody tr:last-child > * {
  background-clip: padding-box;
}

.confidence .qa-table tbody tr:last-child > * {
  border-bottom: 1px solid var(--qa-border);
}

/* Rounded bottom corners */
.confidence .qa-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.confidence .qa-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

/* HEADER */
.confidence .qa-head th {
  background: #111 !important;
  color: #fff !important;
  text-align: center;
  padding: 20px 30px;
  /* P */
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  white-space: nowrap;
  border-bottom: 1px solid var(--qa-border);
}

.confidence .qa-head th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* base cell look + grid */
.confidence .qa-table tbody td {
  padding: 15px 30px;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: #4a4a4a;
  vertical-align: middle;
  border-top: 1px solid var(--qa-border);
}

.confidence .qa-table tbody td + td {
  border-left: 1px solid #f0f0f0;
}

/* ======================================
   BOOTSTRAP 5 STRIPES (FLIPPED) — reliable
   Odd rows: #fff
   Even rows: #ededed
====================================== */

/* 1) Set the base + stripe colors for this table */
.confidence .qa-table {
  --bs-table-bg: #ffffff; /* base row color */
  --bs-table-striped-bg: #ededed; /* stripe color */
}

/* 2) Undo Bootstrap default striping on ODD rows */
.confidence .qa-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: var(--bs-table-bg) !important;
  background-color: var(--bs-table-bg) !important;
}

/* 3) Apply striping on EVEN rows instead */
.confidence .qa-table.table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: var(--bs-table-striped-bg) !important;
  background-color: var(--bs-table-striped-bg) !important;
}

/* ======================================
   CONFIDENCE PAGE — RESPONSIVE BASE
   Standard padding:
   Desktop: 100 top/btm
   Tablet: 70 top/btm, 30 sides
   Mobile: 50 top/btm, 20 sides
====================================== */

.confidence .standard__padding {
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .confidence .standard__padding {
    padding: 70px 30px;
  }
}

@media (max-width: 767px) {
  .confidence .standard__padding {
    padding: 50px 20px;
  }
}

/* Wrapper width */
.confidence .kenmos__wrapper {
  max-width: 1576px;
  margin: 0 auto;
}

/* Layout */
.confidence .content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: stretch;
}

/* tighten vertical rhythm on smaller screens */
@media (max-width: 1199px) {
  .confidence .content {
    gap: 45px;
  }
}

@media (max-width: 767px) {
  .confidence .content {
    gap: 35px;
  }
}

/* Title */
.confidence .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.confidence .title span {
  color: var(--Red, #ed1c24);
  font-family: Lato;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 30px;
}

.confidence .title h1 {
  color: var(--Header, #151515);
  margin-bottom: 20px;
}

.confidence .title p {
  max-width: 662px;
  margin: 0;
  font-family: Lato;
}

/* responsive type scale */
@media (max-width: 1199px) {
  .confidence .title span {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .confidence .title span {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
  }

  .confidence .title h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .confidence .title p {
    max-width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}

/* Section label above tables */
.confidence .in__wall {
  margin-bottom: 15px;
}

.confidence .in__wall h3 {
  color: var(--Header, #151515);
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 767px) {
  .confidence .in__wall h3 {
    font-size: 18px;
  }
}

/* ======================================
   TABLE — RESPONSIVE
====================================== */

/* Make sure the responsive wrapper doesn't clip */
.confidence .table-responsive {
  width: 100%;
}

/* Rounded card wrapper (make sure your HTML uses qa-table-wrap) */
.confidence .qa-table-wrap {
  border-radius: 20px;
  border: 1px solid #eee;
  overflow: hidden;
  background: #fff;
}

/* Table base */
.confidence .qa-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

/* Header (if you switch to <thead class="qa-head">) */
.confidence .qa-head th {
  background: #111 !important;
  color: #fff !important;
  text-align: center;
  padding: 20px 30px;
  font-family: Lato;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  border-bottom: 1px solid #eee;
}

/* Body */
.confidence .qa-table tbody td {
  padding: 15px 30px;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4a4a4a;
  vertical-align: middle;
  border-top: 1px solid #eee;
}

.confidence .qa-table tbody td + td {
  border-left: 1px solid #f0f0f0;
}

/* Tablet: reduce padding so table fits better */
@media (max-width: 1199px) {
  .confidence .qa-head th {
    padding: 16px 18px;
    font-size: 14px;
  }

  .confidence .qa-table tbody td {
    padding: 14px 18px;
    font-size: 14px;
  }
}

/* Mobile: allow horizontal scroll + tighter cells */
@media (max-width: 767px) {
  .confidence .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .confidence .qa-head th {
    padding: 12px 14px;
    font-size: 13px;
  }

  .confidence .qa-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
    line-height: 20px;
  }

  /* ensures table doesn't squeeze unreadably; it will scroll instead */
  .confidence .qa-table {
    min-width: 860px;
  }
}

/* ======================================
   STRIPES (FLIPPED): odd white, even grey
====================================== */

.confidence .qa-table {
  --bs-table-bg: #ffffff;
  --bs-table-striped-bg: #ededed;
}

.confidence .qa-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: var(--bs-table-bg) !important;
  background-color: var(--bs-table-bg) !important;
}

.confidence .qa-table.table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: var(--bs-table-striped-bg) !important;
  background-color: var(--bs-table-striped-bg) !important;
}
