.health-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.health-hero {
  background: linear-gradient(135deg, #effcf6, #ffffff);
  border: 1px solid #b8ebd0;
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 28px;
}

.health-eyebrow {
  margin: 0 0 10px;
  color: #0f766e;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.health-hero h1,
.health-calculator-card h1 {
  margin: 0 0 12px;
  color: #1f2937;
  font-size: 38px;
}

.health-intro,
.health-subtitle,
.health-card p,
.health-content-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}

.health-grid,
.health-link-grid,
.health-field-grid,
.health-results-grid {
  display: grid;
  gap: 16px;
}

.health-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
}

.health-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.health-card,
.health-calculator-card,
.health-content-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.health-card {
  display: block;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.health-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  border-color: #7dd3c6;
}

.health-card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  color: #ffffff;
  font-size: 1.25rem;
}

.health-card h2,
.health-content-card h2 {
  color: #111827;
  margin-bottom: 12px;
}

.health-breadcrumb {
  margin-bottom: 18px;
  color: #6b7280;
}

.health-breadcrumb a,
.health-link-grid a,
.health-content-card a {
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.health-page {
  display: grid;
  gap: 24px;
}

.health-calculator-card,
.health-content-card {
  padding: 28px;
}

.health-field-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.health-field-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #374151;
  font-weight: 600;
}

.health-field-grid input,
.health-field-grid select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
}

.health-button {
  background: #0f766e;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.health-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.health-results-grid div {
  background: #f0fdfa;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #99f6e4;
}

.health-results-grid span {
  display: block;
  color: #0f766e;
  margin-bottom: 8px;
  font-size: 14px;
}

.health-results-grid strong {
  color: #111827;
  font-size: 22px;
}

.health-link-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.health-link-grid a i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  color: #0f766e;
}

.health-link-grid a:hover {
  transform: translateY(-3px);
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.health-link-grid a:hover i {
  color: #0f766e;
}

@media (max-width: 900px) {
  .health-grid,
  .health-field-grid,
  .health-results-grid,
  .health-link-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .health-shell {
    padding: 24px 16px 40px;
  }

  .health-hero,
  .health-calculator-card,
  .health-content-card {
    padding: 22px;
  }

  .health-grid,
  .health-field-grid,
  .health-results-grid,
  .health-link-grid {
    grid-template-columns: 1fr;
  }

  .health-hero h1,
  .health-calculator-card h1 {
    font-size: 30px;
  }
}
