.feedback-iframe-wrapper { 
  height: calc(100% - 40px); /* например обрезать 40px снизу */
  overflow: hidden;
}
.feedback-iframe-wrapper iframe {
  height: 100%;
  width: 100%;

    
}

.item-one {
    border: solid 0.3px;
}


.main__compare {
  padding: 40px 0;
}

.main__compare-header h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

/* Основной контейнер таблицы */
.comparison-table {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* Шапка таблицы */
.comparison-table .table-header {
  display: flex;
  background: #3b6291;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.comparison-table .table-header .table-cell {
  padding: 16px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-table .table-header .table-cell:last-child {
  border-right: none;
}

/* Строки */
.comparison-table .table-row {
  display: flex;
  border-top: 1px solid #e2e6ec;
  background: #fff;
  transition: background 0.3s ease;
}

.comparison-table .table-row:hover {
  background: #f6f9ff;
}

/* Ячейки */
.comparison-table .table-cell {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-table .feature {
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
  color: #111;
}

.check {
  color: #4CAF50;
  font-size: 20px;
  font-weight: 700;
}

.cross {
  color: #E53935;
  font-size: 20px;
  font-weight: 700;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .comparison-table .table-header {
    display: none;
  }

  .comparison-table .table-row {
    flex-direction: column;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .comparison-table .table-cell {
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 14px;
  }

  .comparison-table .feature {
    font-weight: 600;
    background: #f0f3f9;
    width: 100%;
    border-bottom: 1px solid #e2e6ec;
  }
}