/** Shopify CDN: Minification failed

Line 131:20 Expected "}" to go with "{"

**/
.services-comparison-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-comparison-header {
  margin-bottom: 2.5rem;
}

.services-comparison-header.center {
  text-align: center;
}

.comparison-heading {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: calc(var(--font-heading-scale) * 3rem);
  line-height: 1.3;
  color: #006838;
}

.comparison-description {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background-color: #006838;
  color: white;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 2;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 4px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 4px;
}

.comparison-table tbody tr {
  background-color: white;
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
  background-color: rgba(0, 104, 56, 0.05);
}

.comparison-table tbody td {
  border-bottom: 1px solid #e5e5e5;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
}

/* Make table header sticky on mobile */
@media screen and (max-width: 749px) {
  .comparison-table {
    min-width: 650px; /* Ensure table doesn't get too squished on mobile */
  }
  
  .comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 2;
  }
  
  .comparison-heading {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }
  
  .comparison-description {
    font-size: 1.4rem;
  }
}

/* Enhance visual appearance for larger screens */
@media screen and (min-width: 990px) {
  .comparison-table {
    font-size: 1.6rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1.8rem;