.comparison-table-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.comparison-table-header {
  text-align: center;
  margin-bottom: 48px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.7s;
  animation-duration: 0.7s;
}

.comparison-table-title {
  font-size: 48px;
  line-height: 1;
  color: #020b36;
  font-weight: 500;
  margin-bottom: 16px;
}

.comparison-table-wrapper {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  background-color: #fff;
  border: 1px solid #dadee7;
  border-radius: 12px;
  overflow-x: auto;
  width: 100%;
  position: relative;
}

table.comparison-table {
  font-size: 14px;
  line-height: 20px;
  caption-side: bottom;
  width: 100%;
  border-collapse: collapse;
  text-indent: 0;
  border-color: inherit;
  margin: 0;
}

table.comparison-table thead tr {
  border-bottom: 1px solid #dadee7;
  background-color: hsl(0 0% 96% / 0.5);
}

table.comparison-table th {
  font-size: 18px;
  line-height: 28px;
  color: #020b36;
  font-weight: 700;
  vertical-align: middle;
  padding: 10px 16px;
  border: 0;
  text-align: center;
  background: none;
}

table.comparison-table th.is-highlighted {
  color: #0282f2;
}

table.comparison-table th:first-child {
  text-align: left;
  width: 250px;
}

table.comparison-table tbody tr {
  border-bottom: 1px solid #dadee7;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

table.comparison-table tbody tr:hover {
  background-color: hsl(0 0% 96% / 0.3);
}

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

table.comparison-table tbody tr:nth-child(2n) td,
table.comparison-table tbody tr:first-child td {
  background: none;
}

table.comparison-table tbody td {
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
  text-align: center;
  padding: 16px;
  color: #020b36;
  background: none;
  border: 0;
}

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

table.comparison-table tbody tr td.is-highlighted {
  background-color: hsl(208 98% 48% / 0.05);
  font-weight: 700;
}

table.comparison-table tbody td .with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

table.comparison-table tbody td .with-icon svg {
  width: 20px;
  height: 20px;
}

table.comparison-table tbody td .with-icon.ok-icon svg {
  color: #16a34a;
}

table.comparison-table tbody td .with-icon.x-icon svg {
  color: #dc2626;
}

table.comparison-table tbody td .with-icon.x-icon span {
  color: #52587a;
}

.comparison-table-footer {
  margin-top: 48px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 896px;
}

.comparison-table-text {
  font-size: 20px;
  line-height: 28px;
  color: #52587a;
  margin-bottom: 32px;
}

.comparison-table-link {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  padding: 10px 32px;
  background-color: #0282f2;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.comparison-table-link:hover,
.comparison-table-link:active,
.comparison-table-link:focus {
  color: #fff;
  background-color: hsl(208 98% 48% / 0.9);
}

@media screen and (max-width: 1023px) {
  .comparison-table-title {
    font-size: 36px;
    line-height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .comparison-table-section {
    padding: 48px 0;
  }

  .comparison-table-header {
    margin-bottom: 32px;
  }

  .comparison-table-title {
    font-size: 30px;
    line-height: 36px;
  }

  .comparison-table-footer {
    margin-top: 32px;
  }

  .comparison-table-text {
    font-size: 18px;
    line-height: 1.625;
  }

  table.comparison-table th {
    font-size: 16px;
    line-height: 24px;
  }

  table.comparison-table th:first-child {
    width: 200px;
  }

  table.comparison-table tbody td {
    font-size: 14px;
    line-height: 20px;
  }
}
