
/* Health Package Section Styles */
#health-packages .checkup-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
}

#health-packages .checkup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#health-packages .card-body {
  text-align: center;
}

#health-packages h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3f3c86;
}

#health-packages .price {
  font-size: 20px;
  font-weight: bold;
  color: #e53935;
  margin-bottom: 15px;
}

#health-packages ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

#health-packages ul li {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px dotted #ccc;
}

#health-packages .more-tests {
  font-style: italic;
  color: #888;
  border-bottom: none;
}

#health-packages .book-btn {
  background-color: #3f3c86;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

#health-packages .book-btn:hover {
  background-color: #2b246b;
}

@media (max-width: 576px) {
  #health-packages .checkup-card {
    padding: 16px;
  }

  #health-packages h5 {
    font-size: 16px;
  }

  #health-packages .price {
    font-size: 18px;
  }

  #health-packages ul li {
    font-size: 13px;
  }

  #health-packages .book-btn {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
}

#health-packages .row {
  margin-left: -10px;
  margin-right: -10px;
}

#health-packages .col-sm-6,
#health-packages .col-6 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  height: -webkit-fill-available;
  /* space between rows on mobile */
}