body {
  margin: 0;
}

.comp-simple-table {
  background: var(--light-surface-neutral-200, #F1F5F8);
  padding: 128px 0;
}
.comp-simple-table--container {
  max-width: 1200px;
  margin: auto;
}

.comp-simple-table--header {
  max-width: 607px;
  width: 100%;
  color: var(--light-text-neutral-600, #002820);
}

.comp-simple-table--header h2 {
  -webkit-font-smoothing: antialiased;
  margin: 0 0 48px;
  font-family: var(--title-font-family);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
}

.comp-simple-table--table {
  width: 100%;
      font-family: var(--default-font-family);
}

.comp-simple-table--table-header th{
  border-bottom: 1px solid #A3B1B7;
}

.comp-simple-table--table-header-title-empty {
  width: 376px;
}

.comp-simple-table--two-cols .comp-simple-table--table-header th:first-child,
.comp-simple-table--two-cols .comp-simple-table--table-body-row td:first-child {
  display: none;
}

.comp-simple-table--two-cols .comp-simple-table--table-body-data.comp-simple-table--table-body-data-pl {
  padding-top: 16px;
  padding-bottom: 16px;
}

.comp-simple-table--table-header-title {
  -webkit-font-smoothing: antialiased;
  color: var(--light-text-neutral-600, #002820);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  padding: 18px 24px;
  width: 352px;
}

.comp-simple-table--table-header-title-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}

.comp-simple-table--table-body-data {
  -webkit-font-smoothing: antialiased;
  color: var(--light-text-neutral-600, #002820);
      font-family: var(--default-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-right: 20px;
  border-bottom: 1px solid #CBD4D8;
}

.comp-simple-table--table-body-data-pl {
  padding-left: 20px;
}

.comp-simple-table--table-body-data-bg-ligth {
  background-color: #F6F8F9;
  color: #007A64;
}

.comp-simple-table--table-body-data-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .comp-simple-table  {
    padding-left: 24px;
    padding-right: 24px;
  }
  .comp-simple-table--table {
    display: block;
  }
  .comp-simple-table--table-header {
    display: block;
  }
  .comp-simple-table--table-header tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .comp-simple-table--table-header-title {
    width: auto;
    min-width: 0;
    padding: 16px;
  }
  .comp-simple-table--header h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
  }
  .comp-simple-table--table-header-title-empty {
    display: none;
  }
  .comp-simple-table--table-body {
    display: block;
  }
  .comp-simple-table--table-body-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0;
  }
  .comp-simple-table--table-body-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .comp-simple-table--table-body-row td.comp-simple-table--table-body-data:not(.comp-simple-table--table-body-data-pl) {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
  }
  .comp-simple-table--table-body-row td.comp-simple-table--table-body-data-pl {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
  }
  .comp-simple-table--table-body-data-list {
    display: flex;
    flex-direction: column;
    margin: auto;
    height: 100%;
    justify-content: center;
  }
}