/* =========================================================
   GLOBAL RESET & VARIABLES
   ========================================================= */

:root {
  --top-bar-height: 44px;
  --main-header-height: 76px;
  --fixed-header-total: calc(var(--top-bar-height) + var(--main-header-height));
  --green-dark: #0f6b45;
  --green-main: #116e44;
  --green-light: #9adfbd;
  --bg-light: #f6fbf9;
  --text-dark: #333;
  --text-muted: #666;
  --white: #ffffff;
  --shadow-soft: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-medium: 0 6px 24px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --transition-fast: 0.25s ease;
  --transition-medium: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
/*  padding-top: var(--fixed-header-total); */
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;

}

img {
  max-width: 100%;
  display: block;
}

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

section {
  scroll-margin-top: 120px;
}

/* =========================================================
   TOP INFO BAR
   ========================================================= */
.header {
  position: sticky;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 16px;
  height: 64px;

  background: #0f6b45;
  z-index: 3000;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  gap: 22px;
}
@media (max-width: 768px) {
  .header-nav {
    display: none !important;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  z-index: 1001;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
}

.top-bar a {
  color: var(--white);
  transition: opacity var(--transition-fast);
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-cta {
  background: #e53935;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.header {
  position: sticky;
  top: 36px;
  left: 0;
  width: 100%;
  height: 84px;
  background: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.logo {
  height: 60px;
}

.logo-bg {
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.nav a {
  color: var(--white);
  margin-left: 26px;
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width var(--transition-fast);
}

.nav a:hover::after {
  width: 100%;
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  padding: 120px 40px 100px;
  background: linear-gradient(
      rgba(15,107,69,0.05),
      rgba(15,107,69,0.08)
    ),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 44px;
  color: var(--green-dark);
  max-width: 700px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  max-width: 650px;
}

.hero-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-btn:hover {
  background: #0b5e3c;
  transform: translateY(-2px);
}

/* =========================================================
   SERVICES SECTION (ENHANCED, BULLETPROOF)
   ========================================================= */

.services {
  padding: 90px 40px;
  background: var(--white);
}

.services h2 {
  text-align: center;
  font-size: 34px;
  color: var(--green-dark);
  letter-spacing: 0.2px;
}

.services-subtitle {
  max-width: 780px;
  margin: 10px auto 55px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===============================
   SERVICE CARD
================================ */

.service-card {
  position: relative; /* REQUIRED for clickable overlay */
  background: var(--bg-light);
  padding: 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  cursor: pointer;
  overflow: hidden; /* prevents pseudo-element overflow */
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

/* Title */
.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* Text */
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ===============================
   FULL-CARD CLICKABLE LINK
   (SAFE OVERLAY METHOD)
================================ */

.service-card .service-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}

/* Keyboard accessibility */
.service-card .service-link:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* ===============================
   VISUAL HINT (OPTIONAL ARROW)
================================ */

.service-card::after {
  content: "→";
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 18px;
  color: var(--green-dark);
  opacity: 0.35;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-card:hover::after {
  transform: translateX(4px);
  opacity: 0.6;
}

/* ===============================
   REDUCED MOTION SUPPORT
================================ */

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card::after {
    transition: none;
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 70px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DOCTORS SECTION
   ========================================================= */


.doctors {
  padding: 80px 40px;
  background: #f4fbf8;
  text-align: center;
}

.doctors h2 {
  font-size: 34px;
  color: #0f6b45;
  margin-bottom: 50px;
}

/* GRID CENTER FIX */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  justify-content: center;   
  gap: 40px;
}

.doctor-card {
  background: #ffffff;
  padding: 35px 25px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;       
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;      
  display: block;
  border: 4px solid #e6f3ee;
}

.doctor-card h3 {
  color: var(--green-dark);
}
.doctor-card h3 {
  font-size: 20px;
  color: #0f6b45;
  margin-bottom: 6px;
}

.doctor-qualification {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.doctor-exp {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.doctor-reg {
  font-size: 13px;
  color: #777;
}


/* =========================================================
   CONTACT / APPOINTMENT FORM
   ========================================================= */

.contact {
  padding: 90px 40px;
  background: var(--white);
}

.contact h2 {
  text-align: center;
  font-size: 34px;
  color: var(--green-dark);
}

.contact-subtitle {
  max-width: 700px;
  margin: 10px auto 45px;
  text-align: center;
  color: var(--text-muted);
}

.contact-form {
  max-width: 720px;
  margin: auto;
  background: var(--bg-light);
  padding: 45px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: var(--white);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-size: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.contact-form button:hover {
  background: #0b5e3c;
}

/* ==============================
   PATIENT STORIES
============================== */

.patient-stories {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.patient-stories h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

/* GRID */
.stories-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.story-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #d62828;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.story-text {
  color: #fff;
}

.story-text h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.story-text p {
  font-size: 14px;
  opacity: 0.9;
}

/* VIEW ALL */
.view-all {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
  color: #d62828;
  text-decoration: none;
}

/* ==============================
   VIDEO MODAL
============================== */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 720px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 405px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* =====================================================
   FOOTER – SANJEEVANI HOMOEOPATHY (CLEAN & STABLE)
===================================================== */

/* RESET SAFETY */
.main-footer,
.main-footer * {
  box-sizing: border-box;
}

/* =====================================================
   MAIN FOOTER WRAPPER
===================================================== */

.main-footer {
  background: #0f6b45;
  color: #ffffff;
  padding: 60px 0 0;
  font-size: 14px;
  line-height: 1.7;

  /* Safety */
  opacity: 1;
  visibility: visible;
  transform: none;
  position: relative;
  z-index: 10;
}

/* =====================================================
   FOOTER GRID – 5 COLUMNS
===================================================== */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;

  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 🔥 5 COLUMNS */
  gap: 40px;
}
  .accordion-header {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: default;
}

.accordion-content {
  display: block;
}

.icon {
  display: none;
}

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .accordion-header {
    width: 100%;
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion.active .accordion-content {
    max-height: 500px;
  }

  .icon {
    display: inline-block;
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .accordion.active .icon {
    transform: rotate(45deg); /* + becomes × */
  }
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 42px;
  height: 2px;
  background: #9adfbd;
}

.footer-col p {
  margin-bottom: 14px;
  color: #e5f3ec;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* LINKS */
.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* =====================================================
   CONTACT LINKS
===================================================== */

.footer-contact a {
  color: #9adfbd;
  font-weight: 500;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* Tablets */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   GET DIRECTIONS BUTTON (FORCED VISIBILITY FIX)
===================================================== */

.footer-col .footer-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 14px 0 18px;
  padding: 12px 20px;

  background: #ffffff;
  color: #0f6b45 !important; /* FORCE override */

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;

  opacity: 1;
  visibility: visible;
  transform: none;

  transition: background 0.3s ease,
              color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

/* Hover */
.footer-col .footer-direction-btn:hover {
  background: #9adfbd;
  color: #0f6b45 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* Icon inside button */
.footer-col .footer-direction-btn i,
.footer-col .footer-direction-btn svg {
  color: #0f6b45;
  fill: #0f6b45;
  font-size: 15px;
}


/* =====================================================
   SOCIAL ICONS
===================================================== */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #0f6b45;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;

  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #9adfbd;
}

/* ==============================
   MOBILE BackToTop
================================ */

@media (max-width: 700px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }

  #backToTop {
    align-self: center;
  }
}

/* =====================================================
   FOOTER BOTTOM BAR (SINGLE ROW)
===================================================== */

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

/* INNER LAYOUT — ONE ROW ONLY */
.footer-bottom-inner {
  max-width: a;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  min-height: 44px;
}

/* =====================================================
   BACK TO TOP (EXTREME LEFT)
===================================================== */

#backToTop {
  background: transparent;
  border: none;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 2px;
  padding: 0;
  margin: 0;

  cursor: pointer;
}

#backToTop .arrow {
  font-size: 22px;
  line-height: 1;
}

#backToTop .label {
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1;
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* =====================================================
   COPYRIGHT (PERFECT CENTER)
===================================================== */

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #d8eee3;
  line-height: 1.2;
  margin: 0;
}
/* =====================================================
   FOOTER FADE-IN (SAFE – NO HIDING)
===================================================== */

.main-footer {
  animation: footerFade 0.8s ease-out;
}

@keyframes footerFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE FOOTER
===================================================== */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-direction-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* ======================================
   MOBILE STICKY CTA (CALL NOW)
====================================== */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;

  background: #0f6b45;
  padding: 10px 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-cta .cta-call {
  width: 100%;
  max-width: 480px;

  background: #ffd400;
  color: #000;
  text-align: center;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  padding: 14px 16px;
  border-radius: 8px;

  display: block;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }

  /* Prevent content hiding behind CTA */
  body {
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px !important;
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */
/* =========================================
   TABLET PORTRAIT HEADER FIX (ONLY)
   ========================================= */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    --top-bar-height: 52px;
    --main-header-height: 80px;
    --fixed-header-total: calc(var(--top-bar-height) + var(--main-header-height));
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  :root {
    --top-bar-height: 56px;
    --main-header-height: 92px;
    --fixed-header-total: calc(var(--top-bar-height) + var(--main-header-height));
  }
}


@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}


@media (max-width: 1000px) {
  .services-grid,
  .testimonial-grid,
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-grid,
  .testimonial-grid,
  .doctors-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .top-bar {
    display: none;
  }

}
@media (max-width: 900px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  body {
    padding-top: 0 !important;
  }
}
@media (max-width: 700px) {

  .top-bar {
    position: relative;
    height: auto;
  }

  .header {
    position: relative;
    top: 0;
  }

}
/* =========================================
   MOBILE LANDSCAPE
========================================= */

@media (max-width: 1024px) and (orientation: landscape) {

  /* Hide top info bar */
  .top-bar {
    display: none !important;
  }

  /* Keep ONLY main header height */
  body {
    padding-top: 64px !important; */ /* must match .header height */ 
  }
}
@media (max-width: 1024px) and (orientation: landscape) {

  .top-bar {
    display: none;
  }

  .header {
    top: 0;
  }

  .page-wrapper {
 /*   padding-top: 64px; /* only header */
  }
}
/* ============================
   DISEASE HERO
============================ */

.disease-hero {
  position: relative;
  background: url("../images/parkinsons-bg.jpg") center/cover no-repeat;
  padding: 80px 40px;
  color: #fff;
}

.disease-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.disease-hero-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.disease-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb span {
  margin: 0 6px;
}

/* ============================
   INTRO BOX
============================ */

.disease-intro {
  padding: 60px 40px;
  background: #f6f8f7;
}

.disease-intro-box {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.intro-text h2 {
  color: var(--green-dark);
  margin-bottom: 15px;
}

.intro-text p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.intro-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.btn-call,
.btn-book {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-call {
  background: #d43b3b;
  color: #fff;
}

.btn-book {
  background: var(--green-dark);
  color: #fff;
}

.intro-media img {
  width: 100%;
  border-radius: 10px;
}
.disease-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 40px;
}

.disease-section.alt {
  background: #f6f8f7;
  padding: 50px 40px;
}

.disease-section h2 {
  color: var(--green-dark);
  margin-bottom: 15px;
}

.disease-section ul {
  padding-left: 18px;
}

.disease-section li {
  margin-bottom: 8px;
}

/* MOBILE */

@media (max-width: 768px) {
  .disease-intro-box {
    grid-template-columns: 1fr;
  }

  .disease-hero h1 {
    font-size: 30px;
  }
}


