
.h12 {
    color: #580000;
    padding: 20px;

}
.health-packages {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
  color: #333;
}

.health-packages .intro h1 {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 15px;
}

.health-packages .intro p {
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #555;
}

.packages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-bottom: 30px;
}

.package-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  flex: 1 1 400px;
  max-width: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card h2 {
  color: #00796b;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.package-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 127px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #00796b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #009688;
}

@media (max-width: 768px) {
  .health-packages .intro h1 {
    font-size: 2rem;
  }

  .packages-container {
    flex-direction: column;
    align-items: center;
  }
}