		.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  /*max-width: 800px;*/
  /*margin: 0 auto;*/
  padding: 20px 0;
}



.feature {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  white-space: nowrap;       /* Prevent line break */
  overflow: hidden;          /* Hide overflow if needed */
  text-overflow: ellipsis;   /* Add "..." if text is too long */
}

.icon {
  display: inline-block;
  background-color: #2b4dff; /* Yellow circle */
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
}




.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pricing-card {
  border: 1px solid #ddd;
  padding: 20px;
  width: 30%;
  border-radius: 8px;
  text-align: center;
}
.pricing-card.highlight {
  border: 2px solid #007bff;
}
.pricing-list {
  list-style: none;
  padding: 0;
}
