 .feature-comparison {
  font-family: Arial, sans-serif;
  padding: 40px;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  background-color: #f8f9fa; /* Fondo gris pálido para toda la tabla */
  padding: 20px;
  border-radius: 10px;
  border: 1px solid black;
}


.partner-title {
  font-weight: bold;
  background: #f1f3f4;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid black;
}

.feature-title {
  font-size: 14px;
}

.feature-title p {
  margin: 5px 0 0;
  color: #5f6368;
  font-size: 13px;
}

.checkmark {
  font-size: 20px;
  color: green;
  text-align: center;
  padding-top: 20px;
}

.checkmark.empty {
  color: transparent;
}

.checkmark.x {
  font-size: 20px;
  color: red;
  text-align: center;
  padding-top: 20px;
  
}