.cater .item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%; /* ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes button to bottom */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cater .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cater .item h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.cater .item-description {
  flex-grow: 1; /* allows text area to expand evenly */
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.cater .btn-warning {
  align-self: center;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
}
