
.card-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(434px, 0px));
    justify-content: center;
    gap: 1rem;
    margin-top: 51px;
    margin-bottom: 26px;
}

.card {
  background: #fff;
  padding: 24px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 180px; */
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.card-content {
  width: 100%;
  text-align: center;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #000;
  margin-bottom: 16px;
  
}

.card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #504E4A;
  margin-bottom: 20px;
  min-height: 40px;
}

.card-button {
  background-color: #0A9E01;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 0; /* sharp edges */
  margin-bottom: 20px;
}




/* Force 2 columns on small screens */
/* @media (max-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */