.card {
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 15px;
}

.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.card-description {
  font-size: 1em;
  color: #555;
}
.card-content ul li{
  width:100%;
}
.cardFlex{
  flex-direction:row;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:70px;
}

/* Responsive design */
@media (max-width: 768px) {
  .card {
    max-width: 90%;
  }

  .card-title {
    font-size: 1.2em;
  }

  .card-description {
    font-size: 0.9em;
  }
}