.comparison-table-section {
  width: 100%;
  margin: 40px 0;
}

.comparison-table-section__title {
  color: #2f2320;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 50px;
}

.comparison-table {
  --comparison-header-bg: #024E9F;
  --comparison-border-color: rgb(88 0 145 / 9%);
  --comparison-hover-bg: rgba(88, 0, 145, 0.05);
  --comparison-shadow-color: rgba(88, 0, 145, 0.15);
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--comparison-border-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--comparison-shadow-color);
  overflow: hidden;
}

.comparison-table__header,
.comparison-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}

.comparison-table__header {
  padding: 24px;
  background-color: var(--comparison-header-bg);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.comparison-table__header-cell {
  text-align: left;
}

.comparison-table__header-cell--center,
.comparison-table__cell--center {
  text-align: center;
  justify-content: center;
}

.comparison-table__row {
  padding: 20px 24px;
  border-top: 1px solid var(--comparison-border-color);
  transition: background 0.3s ease;
}

.comparison-table__row:hover {
  background: var(--comparison-hover-bg);
}

.comparison-table__label,
.comparison-table__text-cell {
  color: #2f2320;
  font-weight: 500;
}

.comparison-table__label {
  padding-right: 16px;
}

.comparison-table__cell {
  display: flex;
  align-items: center;
}

.comparison-table__check {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto;
}

.comparison-table__check--yes {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMTAiIGZpbGw9IiM0YWRlODAiLz4KPHBhdGggZD0iTTYgMTBMOC41IDEyLjVMMTQgNyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
}

.comparison-table__check--no {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMTAiIGZpbGw9IiNlZjQ0NDQiLz4KPHBhdGggZD0iTTcgN0wxMyAxM00xMyA3TDcgMTMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPg==');
}

@media (max-width: 768px) {
  .comparison-table-section {
    margin: 32px 0;
  }

  .comparison-table-section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .comparison-table__header,
  .comparison-table__row {
    gap: 8px;
  }

  .comparison-table__header {
    padding: 16px 12px;
    font-size: 14px;
  }

  .comparison-table__row {
    padding: 16px 12px;
  }

  .comparison-table__label,
  .comparison-table__text-cell {
    font-size: 14px;
  }

  .comparison-table__label {
    padding-right: 8px;
  }

  .comparison-table__check {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .comparison-table-section__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .comparison-table__header {
    font-size: 12px;
    padding: 12px 8px;
  }

  .comparison-table__row {
    padding: 12px 8px;
  }

  .comparison-table__label,
  .comparison-table__text-cell {
    font-size: 12px;
  }

  .comparison-table__check {
    width: 16px;
    height: 16px;
  }
}
