:root {
  --background: 195 60% 98%;
  --foreground: 210 35% 16%;
  --primary: 204 80% 38%;
  --secondary: 150 45% 48%;
  --muted: 205 25% 92%;
  --destructive: 0 70% 48%;
  --border: 205 25% 84%;
  --card: 0 0% 100%;

  --shadow-sm: 0 4px 10px hsla(210, 35%, 16%, 0.08);
  --shadow-md: 0 12px 30px hsla(210, 35%, 16%, 0.12);
  --shadow-lg: 0 18px 45px hsla(210, 35%, 16%, 0.16);

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s ease;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

.dark {
  --background: 210 35% 8%;
  --foreground: 195 60% 96%;
  --primary: 204 80% 62%;
  --secondary: 150 45% 58%;
  --muted: 210 25% 18%;
  --destructive: 0 70% 58%;
  --border: 210 20% 28%;
  --card: 210 30% 12%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

.site-header {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  width: min(1100px, 92%);
  margin: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: hsl(var(--primary));
  font-weight: bold;
  font-size: 1.35rem;
  text-decoration: none;
}

.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  padding: 12px 4%;
}

.nav-links.show {
  display: block;
}

.nav-links li {
  margin: 8px 0;
}

.nav-links a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  color: hsl(var(--foreground));
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  background: hsla(204, 80%, 38%, 0.12);
  color: hsl(var(--primary));
}

main {
  width: min(1100px, 92%);
  margin: auto;
}

.hero-section {
  min-height: calc(100vh - 140px);
  padding: 54px 0;
  display: grid;
  gap: 28px;
  align-items: center;
}

.small-title {
  color: hsl(var(--secondary));
  font-weight: bold;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.1;
  color: hsl(var(--foreground));
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 620px;
  color: hsla(210, 35%, 16%, 0.78);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: bold;
  transition: var(--transition-fast);
}

.primary-btn {
  background: hsl(var(--primary));
  color: white;
}

.secondary-btn {
  background: hsla(150, 45%, 48%, 0.14);
  color: hsl(var(--secondary));
  border: 1px solid hsla(150, 45%, 48%, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-card {
  background: linear-gradient(145deg, hsl(var(--card)), hsla(204, 80%, 38%, 0.08));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.medical-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: hsl(var(--primary));
  color: white;
  font-size: 2rem;
  margin-bottom: 18px;
}

.hero-card h2 {
  margin-bottom: 10px;
}

.info-section {
  display: grid;
  gap: 18px;
  padding-bottom: 50px;
}

.info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  color: hsl(var(--primary));
  margin-bottom: 8px;
}

.footer {
  text-align: center;
  padding: 22px;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  color: hsla(210, 35%, 16%, 0.74);
}

@media (min-width: 760px) {
  .menu-button {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    gap: 10px;
  }

  .nav-links li {
    margin: 0;
  }

  .hero-section {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .info-section {
    grid-template-columns: repeat(3, 1fr);
  }
}