.health-check-packages-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.health-check-header {
  text-align: center;
  margin-bottom: 2rem;
}

.health-check-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.health-check-cards-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
}

.health-check-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 350px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-category {
  background: #007b8f;
  color: #fff;
  border-radius: 6px;
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.view-package-btn {
  border: 2px solid #007b8f;
  color: #007b8f;
  border-radius: 30px;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.view-package-btn:hover {
  background: #007b8f;
  color: #fff;
}

.view-all-btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.view-all-btn {
  border: 2px solid #007b8f;
  color: #007b8f;
  border-radius: 30px;
  padding: 0.5rem 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.view-all-btn:hover {
  background: #007b8f;
  color: #fff;
} 