.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: sans-serif;
  transition: transform 0.3s ease;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #E86FBA;
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 1rem;
  color: #6d6969;
  line-height: 1.4;
}

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

  .card-icon {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}