body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f5f5f5;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.grid-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cell {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  user-select: none;
}

.cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cell h3 {
  margin-top: 0;
  color: #2c3e50;
  text-align: center;
}

.cell ul {
  padding-left: 25px; /* Увеличили отступ */
  color: #7f8c8d;
  margin-bottom: 0;
  list-style: none; /* Убираем стандартные маркеры */
}

.cell li {
  position: relative;
  margin-bottom: 8px;
}

/* Кастомные галочки */
.cell li::before {
  content: "✓";
  color: #2ecc71; /* Зеленый цвет */
  position: absolute;
  left: -20px;
  font-weight: bold;
}

.cell-button {
  display: block;
  background: #2ecc71;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 auto;
  width: 90%;
  transition: background 0.2s;
  font-size: 18px;
}

.cell-button:hover {
  background: #27ae60;
}

@media (max-width: 768px) {
  .grid-table {
    grid-template-columns: 1fr;
  }
}

