.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;
} 


.health-package-detail ul{
  padding-left: 20px;
  padding-bottom: 20px;
  list-style: disc;
}


input#edit-health-screening-submit {
    margin-left: 20px;
    width: 150px;
    position: relative;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 16px;
}


h3.txt_head {
    display: block;
    text-align: center;
}

.health-package-test .field__items {
  counter-reset: item;
  margin: 1em 0;
}

.health-package-test .field__items .field__item {
  counter-increment: item;
  position: relative;
  margin-bottom: 0.5em;
  text-indent: -25px; /* aligns multi-line text */
  padding-left: 25px; /* space between number and text */
  line-height: 1.5;
}

.health-package-test .field__items .field__item::before {
  content: counter(item) ".";
  left: 0;
  font-weight: 400;
  color: #000; /* change color if needed */
}