/* Shared Global Styles for ASNHP */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f7f9fa;
  color: #222;
}
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1000px;
  margin: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #2E7D32;
  font-weight: 600;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0, #A5D6A7 40%, #2E7D32 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #1B5E20;
}
nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #555;
  font-size: .9rem;
  font-weight: 500;
}
nav a:hover, nav a.active {
  color: #2E7D32;
}
.container, .section {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 1.5rem;
}
.btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #2E7D32;
  color: #fff;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
  border: none;
  cursor: pointer;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
footer {
  background: #0f172a;
  color: #e2e8f0;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
}