.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.card {
  text-align: center;
  width: 300px;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: -20px; 
  position: relative;
  z-index: 1;
  top: -10px; 
}

.card .button {
  display: inline-block;
  background-color: #4CAF4F;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  z-index: 2;
  top: -5px;
}

.card p {
  font-size: 18px;
  margin: 5px 20px 10px;
  font-weight: 550;
}

.card .inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #82C784;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  gap: 10px;
  border: none;
}

.card .inquiry img {
  width: 20%;
  height: 20%;
  
}

.card .inquiry:hover {
  background-color: #79C37B;
}