

a {
  color: #62c169;
  text-decoration: none;
}

.comparison-table {
  width: 90%;
  max-width: 1170px;
  margin: 2em auto;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e6e7f1;
  font-size: 14px;
}

.comparison-table th, .comparison-table td {
  border: 1px solid #e6e7f1;
  padding: 12px;
  text-align: center;
}

.comparison-table th {
  background-color: #33495F;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

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

.comparison-table td.feature {
  text-align: left;
  font-weight: bold;
}

.comparison-table .bad {
  color: #c0392b;
  font-weight: bold;
}

.comparison-table .good {
  color: #27ae60;
  font-weight: bold;
}

@media (max-width: 768px) {
  .comparison-table, 
  .comparison-table thead, 
  .comparison-table tbody, 
  .comparison-table th, 
  .comparison-table td, 
  .comparison-table tr {
    display: block;
    width: 100%;
  }

  .comparison-table thead tr {
    display: none;
  }

  .comparison-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    text-align: left;
    font-weight: bold;
  }
}