:root {
  --secondary-color: #c50000;
  --primary-color: #2e3192;
}
.health-packages-wrapper {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 20px;
}
.health-packages-wrapper h1 {
  text-align: center;
  font-size: 30px;
  padding: 2rem 0;
}
/* Health Packages Grid */
.health-packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.health-package-card {
  width: 300px;
  border-radius: 12px;
  border: 1px solid #ddd;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease;

  margin: 0.75rem 0;
}

.health-package-card-link {
  text-decoration: none;
  color: inherit;
}

.health-package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.health-package-info {
  padding: 15px;
  position: relative;
}

.tests-included {
  display: inline-block;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  color: #007634;
  border-radius: 5px;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 10px;
  font-weight: 500;
}

.health-package-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.health-package-card p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
}

.view-more-btn {
  display: block;
  padding: 10px 20px;
  color: var(--secondary-color);
  border-radius: 0 0 5px 5px;
  font-size: 14px;
  text-decoration: none;
  background-color: transparent;
  border: none;
  outline: none;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.health-package-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  & .health-package-info h3 {
    color: var(--secondary-color);
  }
}

.load-more-btn {
  display: block;
  margin: 30px auto;
  padding: 10px 30px;
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;

  width: 100%;
  max-width: 300px;
}

.load-more-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Initially hide additional cards */
.hidden {
  display: none;
}
