/* Add icon styling for ticks */
.feature-list li {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-list li span.icon {
  display: inline-block;
  color: #4caf50; /* Tick color */
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
}

.feature-list li:hover {
  background-color: #eaf4ff;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Add subtle animation for hover */
.feature-list li:hover span.icon {
  color: #388e3c;
  transition: color 0.3s ease;
}

/* General list alignment */
.feature-list {
  column-count: 2;
  column-gap: 20px;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 600px) {
  .feature-list {
    column-count: 1;
  }
}