html {
  height: 100%;
  width: 100%;
}
.comparison-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: sans-serif;
}

.comparison-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 32px;
  color: #255360;
}

/* Default: Stack vertically for mobile */
.comparison-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.comparison-card {
  background: #f5f8f9;
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Desktop: Three across when there's enough space */
@media (min-width: 1000px) {
  .comparison-cards {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
  }

  .comparison-card {
    flex: 1;
    width: auto;
    max-width: 360px;
    min-width: 300px;
  }
}

.comparison-card.highlighted {
  background: #e6f2f5;
  border: 2px solid #57A0B3;
}

.comparison-card h3 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: #255360;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card ul li {
  padding: 8px 0;
  border-top: 1px solid #ddd;
  font-size: 15px;
  text-align: center;
}

.comparison-card ul li:first-child {
  border-top: none;
}

.recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #57A0B3;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
}