.card-container {
  display: grid;
  grid-template-columns: 1fr;  
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  padding: 0 15px; 
  box-sizing: border-box; 
}


.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 900px;
  text-align: center;
  padding: 15px;
  transition: transform 0.2s;
}

.card-prices {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 900px;
  text-align: left;
  padding: 15px;
  transition: transform 0.2s;
}

.card-prices-tables {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 900px;
  text-align: left;
  padding: 15px;
  transition: transform 0.2s;
  justify-items: center;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 20%;
  height: auto;
  border-radius: 8px;
}

.card p {
  margin-top: 10px;
  color: #333;
}


@media (max-width: 768px) {

.card-prices {
    display: none;
  }

.text-prices {
    display: block;
    text-align: left;
  }

.card-prices-tables {
  display: none
}
/*.card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  padding: 0 15px;
  box-sizing: border-box;
}
*/
.card {
    width: 100%;
  }
/*
  .card img {
      width: 50%;
      height: auto;
      border-radius: 8px;
    }

.card-prices {
  width: 20%;
}
}

*/
