/* Add icon styling for ticks */
.feature-list li {
  display: inline-block; /* Changed from flex to inline-block */
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #333;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  margin-right: 10px; /* Added for spacing between inline items */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  vertical-align: top; /* Ensures items align nicely if they have different heights */
}

.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 {
  list-style: none;
  padding: 0;
  text-align: left; /* Changed from center to left */
}

@media screen and (max-width: 600px) {
  .feature-list {
    text-align: left; /* Adjust alignment for smaller screens if needed */
  }
  .feature-list li {
    display: block; /* Stack them vertically on small screens */
    margin-right: 0; /* Remove right margin when stacked */
    margin-bottom: 10px; /* Ensure bottom margin is consistent */
  }
}