:root {
  --bg: #9BABBB;
  --primary: #657690;
  --accent: #9BABBB;
  --text: #657690;
  --muted: #657690;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(101, 118, 144, 0.2);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--text);
}

h1 {
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  padding: 48px 8vw 64px;
  background: linear-gradient(120deg, #ffffff 0%, #9BABBB 70%, #9BABBB 100%);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  mix-blend-mode: multiply;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  object-fit: contain;
  display: block;
}

.cta {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
}

.hero-text p {
  margin-bottom: 16px;
  
}

.hero-p1 {
  text-align: center;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  width: fit-content;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.photo-card {
  /*background: #ffffff;*/
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;*/
  box-shadow: var(--shadow);
  /*border: 2px dashed rgba(101, 118, 144, 0.4);*/
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  
}
.photo-card.hero-photo {
  mix-blend-mode: multiply;
}
.photo-card.secondary {
  max-width: 520px;
}

.photo-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo {
  aspect-ratio: 16 / 9;
}

.hero-photo-image {
  object-fit: contain;
  object-position: center;
  padding: 24px;
}

.about-photo {
  aspect-ratio: 4 / 5;
}

.about-photo-image {
  object-fit: contain;
  object-position: center;
  /*padding: 12px 20px;*/
}

.health-photo-image {
  object-fit: contain;
  object-position: center;
  /*padding: 16px 24px;*/
}

.section {
  padding: 72px 8vw;
}

.section h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 32px;
  font-weight: bolder;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card p {
  text-align: center;
}

.card h3 {
  margin-bottom: 12px;
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  background: #fff;
}

.about-text p {
  margin-bottom: 16px;
  text-align: justify;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  text-align: justify;
  font-weight: 500;
}

.two-columns p {
  margin-bottom: 16px;
}

.health-image .photo-card {
  background: #ffffff;
}

.cta-section {
  background: var(--primary);
  color: #fff;
}

.cta-section h2,
.cta-section p,
.cta-section span {
  color: #fff;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-section .button {
  background: #fff;
  color: var(--primary);
}

.footer {
  padding: 24px 8vw 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-align:center;
   
  background-color:#f9f9f9; 
  color:#444;  
  line-height:1.6;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-photo {
    max-width: 100%;
  }

  .hero-photo-image {
    padding: 16px;
  }

  .about-photo {
    max-width: 100%;
  }

  .health-photo {
    max-width: 100%;
  }

}
