body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.card-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
  width: 100%;
  background-color: #f5f5f5;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

i {
  font-size: 24px;
}
