/** Shopify CDN: Minification failed

Line 101:0 Unexpected "<"
Line 157:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
/* === Basis-Layout === */
.compare-table .container {
  max-width: 1000px;
  margin: 0 auto;
}
.compare-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 740px) {
  .compare-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Linke Seite = 50% */
.compare-left {
  flex: 0 0 50%;
}

/* Rechte Seite = 50% */
.compare-right {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 740px) {
  .compare-right {
    justify-content: center;
  }
}

/* Tabelle */
.compare-right table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.compare-right th,
.compare-right td {
  padding: .75rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* Kopfzeile */
.compare-right thead {
  background: #F5F5F5;
  font-weight: 600;
}
.compare-right thead th {
  border-bottom: 2px solid #ddd;
}

/* Label-Spalte in Mint-Grün */
.compare-right td.label {
  background: #E0EBE3;
  color: #2E2A39;
  font-weight: 600;
  border-right: 1px solid #eee;
}

/* ✔ grün, ✖ rot */
.compare-right td.value {
  font-size: 1.25rem;
  font-weight: 600;
}
.compare-right td.value.true  { color: #4CAF50; }
.compare-right td.value.false { color: #F44336; }

/* Abgerundete Ecken */
.compare-right thead th:first-child    { border-top-left-radius: 12px; }
.compare-right thead th:last-child     { border-top-right-radius: 12px; }
.compare-right tbody tr:last-child td:first-child  { border-bottom-left-radius: 12px; }
.compare-right tbody tr:last-child td:last-child   { border-bottom-right-radius: 12px; }

/* Beschriftung etwas kompakter */
.compare-right td.label {
  font-size: 0.85rem;   /* Schrift um ca. 15% verkleinern */
  line-height: 1.2;
}

/* Kopfzeilen etwas kleiner */
.compare-right thead th {
  font-size: 0.9rem;
}
<style>
  .reasons-section {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
  }

  .reasons-section .highlight-heading {
    text-align: center;
    font-size: 24px;
    color: #4E4D49;
    margin-bottom: 40px;
  }

  .highlight-heading em {
    font-style: italic;
    font-weight: 700;
  font-family: 'Playfair Display', serif;
  }

  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .reason-item {
    text-align: center;
    color: #4E4D49;
  }

  .reason-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px auto;
  }

  .reason-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  .reason-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  @media screen and (max-width: 749px) {
    .reasons-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
</style>