.card {
  margin-left: -1rem;
  margin-right: -1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
  width: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 0.25rem;
  background-color: rgba(17, 24, 39, 1);
  padding: 1.5rem;
}

.header {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 1.15rem;
  line-height: 2rem;
  font-weight: 700;
  color: #fff
}

.price {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  color: #fff
}

.desc {
  margin-top: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.625;
  color: rgb(192, 199, 209);
}

.lists {
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  color: rgba(156, 163, 175, 1);
}

.lists .list {
  padding:0;
  margin-bottom: 0.5rem;
  display: flex;
  margin-left: 0.5rem
}

.lists .list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  color: rgba(167, 139, 250, 1);
}

.action {
  border: none;
  outline: none;
  display: inline-block;
  border-radius: 0.25rem;
background: linear-gradient(90deg, #3d00f5, #a406a5);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgb(255, 255, 255);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

/* Each card will take up ~22% width with margins, fitting 4 in one row */
.card {
  flex: 1 1 calc(25% - 2rem);
  box-sizing: border-box;
  min-width: 260px;
  max-width: 320px;
}

/* Responsive support */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 2rem); /* 2 in a row */
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%; /* Full width */
  }
}

.card {
  flex: 1 1 calc(25% - 2rem);
  box-sizing: border-box;
  min-width: 260px;
  max-width: 320px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;          /* Center horizontally */
  text-align: center;           /* Center text */
  border-radius: 0.25rem;
  background-color: rgba(17, 24, 39, 1);
  padding: 1.5rem;
  transition: all 0.3s ease;    /* Smooth hover transition */
}

.card:hover {
  transform: scale(1.05);       /* Slight grow effect */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Shadow on hover */
}

/* Already present */
.lists .list svg {
  margin-right: 0.5rem;
}

.lists {
  margin: 0;         /* Remove default margin */
  padding: 0;        /* Remove default padding */
  list-style: none;  /* Remove default bullets */
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  color: rgba(156, 163, 175, 1);
}


/* Responsive Support */
@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }
}
