:root{
  --bg: #ffffff;
  --ink: #222;
  --muted: #6b7280;
  --brand: #20a36a; /* BodyGood green-ish */
  --brand-dark: #178354;
  --border: #e5e7eb;
  --card: #f9fafb;
  --focus: #0ea5e9;
  --radius: 16px;
  --shadow: 0 6px 20px rgba(0,0,0,.06);
  --header-offset: 130px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}


/* Layout */
.container{
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding-inline: 1rem;
}

.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.brand img{ display: block; height: 70px; width: auto; }

.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle:hover{
  background: var(--card);
  border-color: var(--border);
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
  content: "";
}

.nav-toggle__icon{
  position: relative;
}

.nav-toggle__icon::before{
  position: absolute;
  top: -7px;
  left: 0;
}

.nav-toggle__icon::after{
  position: absolute;
  top: 7px;
  left: 0;
}

.site-nav ul{
  list-style: none;
  padding: 0; margin: 0;
  display: flex; gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a{
  display: inline-block;
  padding: .5rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
}
.site-nav a:hover{ background: var(--card); }
.site-nav a[aria-current="page"]{
  background: #eef8f2;
  border-color: #d7f0e2;
  color: var(--brand-dark);
  font-weight: 700;
}

main section[id] { scroll-margin-top: var(--header-offset); }

.home-hero{
  position: relative;
  min-height: clamp(480px, 68vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #1f2b25;
}

.home-hero img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.home-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 31, 25, .72), rgba(19, 31, 25, .38) 52%, rgba(19, 31, 25, .2)),
    linear-gradient(0deg, rgba(19, 31, 25, .16), rgba(19, 31, 25, .16));
  z-index: -1;
}

.home-hero__content{
  color: #fff;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.home-hero__content h1{
  max-width: 860px;
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.home-hero__content p{
  max-width: 650px;
  margin: .4rem 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.content-section{ margin-block: 1.25rem; }
.welcome-section{
  max-width: 860px;
  padding-block: .5rem;
}

.welcome-section h2,
.services-preview h2{
  margin-top: 0;
  margin-bottom: .7rem;
}

.welcome-section p{
  margin-block: .6rem;
}

.service-detail{
  max-width: 860px;
  padding-block: .5rem;
}

.service-detail h1,
.service-detail h2{
  margin-top: 0;
  margin-bottom: .7rem;
}

.service-detail h2{
  margin-top: 1.8rem;
}

.service-detail p{
  margin-block: .6rem;
}

.service-detail ul{
  margin: .5rem 0 1rem 1.2rem;
  padding: 0;
}

.service-detail li + li{
  margin-top: .3rem;
}

.faq-list{
  display: grid;
  gap: .6rem;
  margin-top: .9rem;
}

.faq-item{
  border-bottom: 1px solid var(--border);
}

.faq-question{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.faq-question button{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .75rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.faq-toggle{
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.faq-toggle::before{
  content: attr(data-symbol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.faq-question button[aria-expanded="true"] .faq-toggle{
  background: #eef8f2;
  border-color: #d7f0e2;
}

.faq-question button:focus-visible{
  outline: 3px solid rgba(14, 165, 233, .35);
  outline-offset: 3px;
}

.faq-answer{
  padding-bottom: .85rem;
}

.faq-answer p{
  margin: 0;
}

.services-page{
  max-width: 980px;
  padding-block: .5rem;
}

.services-page h1{
  margin-top: 0;
  margin-bottom: .7rem;
}

.services-page > p{
  max-width: 860px;
  margin-block: .6rem;
}

.service-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-summary{
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-icon{
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: .75rem;
  color: var(--brand-dark);
  opacity: .82;
}

.service-icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title-lockup{
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .7rem;
}

.service-title-lockup .service-icon{
  flex: 0 0 auto;
  margin-bottom: 0;
}

.service-title-lockup h1{
  margin: 0;
}

.service-summary h2{
  margin: 0 0 .65rem;
}

.service-summary h3{
  margin: 1rem 0 .35rem;
}

.service-summary p{
  margin-block: .6rem;
}

.service-summary ul{
  margin: .5rem 0 1rem 1.2rem;
  padding: 0;
}

.service-summary li + li{
  margin-top: .3rem;
}

.service-summary a{
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.service-summary a:hover{
  text-decoration: underline;
}

.services-preview{
  margin-top: 2rem;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card{
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-card h3{
  margin: 0 0 .65rem;
}

.service-card p{
  margin: 0 0 1rem;
  color: var(--muted);
}

.service-card a{
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.service-card a:hover{
  text-decoration: underline;
}

.inline-link{
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover{
  text-decoration: underline;
}

.section-card{
  background: var(--card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.section-card h1,
.section-card h2{ margin-top: 0; margin-bottom: .7rem; }
.section-card h3{ margin-bottom: .35rem; }
.section-card p{ margin-block: .6rem; }
.section-card ul{ margin: .5rem 0 .8rem 1.2rem; }
.section-card li + li{ margin-top: .3rem; }

.provider-credential{
  display: grid;
  grid-template-columns: minmax(95px, 125px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: .75rem;
}

.provider-credential--manz{
  grid-template-columns: minmax(110px, 145px) minmax(0, 1fr);
}

.provider-credential__logo{
  display: block;
}

.provider-credential__logo img{
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 560px){
  .provider-credential,
  .provider-credential--manz{
    grid-template-columns: 1fr;
  }

  .provider-credential__logo{
    width: 110px;
  }

  .provider-credential--manz .provider-credential__logo{
    width: 125px;
  }
}
.button-row{ margin-top: 1rem; }

.image-panel{
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.image-panel img,
.clinic-feature img,
.clinic-preview img,
.services-visual img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-feature{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .9fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.section-card.clinic-feature{
  margin-top: 2.5rem;
}

.clinic-feature__copy{
  max-width: 430px;
}

.clinic-feature__copy h2{
  margin: 0 0 .7rem;
}

.clinic-feature__copy p{
  margin-block: .6rem;
}

.clinic-feature__media{
  position: relative;
  max-width: 520px;
  justify-self: end;
}

.clinic-feature__main{
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-intro{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
  gap: 1rem;
  align-items: stretch;
}

.about-intro__copy{
  min-width: 0;
}

.about-intro__image{
  min-height: 320px;
}

.clinic-preview{
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
  margin: 1.2rem 0 1.35rem;
  padding: 1rem;
  border: 1px solid #d7f0e2;
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
}

.clinic-preview h2{
  margin: 0 0 .5rem;
}

.clinic-preview p{
  margin: 0;
  color: var(--muted);
}

.clinic-preview__images{
  display: grid;
  grid-template-columns: minmax(96px, .42fr) minmax(0, 1fr);
  gap: .75rem;
  align-items: stretch;
}

.clinic-preview__images img{
  min-height: 190px;
  border-radius: 12px;
}

.services-visual{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}

.services-visual img{
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-detail{
  display: flex;
  align-items: center;
  gap: .5rem;
}

.payment-detail p{
  min-width: 0;
}

.copy-button{
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.copy-button:hover{
  background: #eef8f2;
  border-color: #d7f0e2;
  color: var(--brand-dark);
}

.copy-button:focus-visible{
  outline: 3px solid rgba(14, 165, 233, .35);
  outline-offset: 2px;
}

.copy-button svg{
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.copy-status{
  min-width: 3.1rem;
  color: var(--brand-dark);
  font-size: .9rem;
  opacity: 1;
  transition: opacity 2s ease;
}

.copy-status.is-fading{
  opacity: 0;
}

.intro{ margin-block: 1.25rem 0.75rem; }
.intro .lede{ color: var(--muted); margin-top: .25rem; }
.intro .pricing-note{
  display: inline-block;
  margin-top: .45rem;
  padding: .45rem .7rem;
  color: var(--ink);
  background: #fff;
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
}

.schedule .intro{ margin-block: 0 .75rem; }

.booking-flow .intro{
  margin-block: 0 .75rem;
}

.eyebrow{
  margin: 0 0 .45rem;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-hero{
  max-width: 780px;
}

.booking-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 1.1rem;
}

.other-clinics{
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.other-clinics__intro{
  max-width: 760px;
  margin-bottom: .9rem;
}

.other-clinics__intro h2{
  margin-bottom: .45rem;
}

.other-clinics__intro p{
  color: var(--muted);
}

.other-clinics .schedule-table{
  display: block;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.other-clinics .schedule-table thead{
  display: none;
}

.other-clinics .schedule-table tbody{
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.other-clinics .schedule-table tr{
  display: grid;
  grid-template-columns: 92px minmax(160px, 1.15fr) minmax(120px, .75fr) minmax(90px, .55fr) minmax(130px, .75fr) auto;
  grid-template-areas:
    "logo name location day times action";
  gap: .75rem;
  align-items: center;
  padding: .9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.other-clinics .schedule-table td{
  display: block;
  padding: 0;
  border: 0;
}

.other-clinics .col-logo{ grid-area: logo; width: auto; }
.other-clinics .col-name{ grid-area: name; }
.other-clinics .col-location{ grid-area: location; }
.other-clinics .col-day{ grid-area: day; }
.other-clinics .col-times{ grid-area: times; }
.other-clinics .col-actions{ grid-area: action; text-align: right; }

.other-clinics .logo{
  width: 80px;
  height: 58px;
  border-radius: 10px;
}

.other-clinics .logo img{
  max-height: 48px;
}

.other-clinics .col-name .clinic-link{
  font-weight: 750;
}

.other-clinics .btn.book{
  background: #fff;
  color: var(--brand-dark);
  border-color: #b9e5cc;
}

.other-clinics .btn.book:hover{
  background: #eef8f2;
  border-color: var(--brand);
}

/* Table */
.table-wrap{
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow-x: auto;
}

.schedule-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}
.schedule-table thead th{
  text-align: left;
  font-size: .86rem;
  font-weight: 800;
  color: var(--brand-dark);
  background: #fff;
  border-bottom: 2px solid #cfe8d9;
  padding: .95rem .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.schedule-table td{
  padding: 1rem .9rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.schedule-table tbody tr:last-child td{ border-bottom: none; }

.schedule-table tbody tr.featured-clinic{
  background:
    linear-gradient(90deg, rgba(32, 163, 106, .14), rgba(255, 255, 255, 0) 50%, rgba(32, 163, 106, .14));
}

.schedule-table tbody tr.featured-clinic td{
  padding-block: 1.45rem;
  border-top: 1px solid #cfe8d9;
  border-bottom: 1px solid #cfe8d9;
}

.schedule-table tbody tr.featured-clinic td:first-child{
  border-left: 4px solid var(--brand);
}

/* Columns */
.col-logo{ width: 160px; }
.logo{ margin: 0; width: 120px; height: 80px; border-radius: 12px; background: #fff; display: grid; place-items: center; border: 1px solid var(--border); }
.logo img{ max-height: 70px; max-width: 100%; display: block; }
.logo-fallback{
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 700;
  letter-spacing: .5px;
}

.col-name .clinic-link{
  color: var(--ink); text-decoration: none; font-weight: 600;
}
.col-name .clinic-link:hover{ text-decoration: underline; }

.col-location{ color: var(--muted); }

.featured-clinic .logo{
  width: 145px;
  height: 96px;
  border-color: #b9e5cc;
  box-shadow: 0 10px 28px rgba(23, 131, 84, .13);
}

.featured-clinic .logo img{
  max-height: 72px;
  max-width: 82%;
}

.featured-clinic .col-name .clinic-link{
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.featured-clinic .col-location,
.featured-clinic .col-times{
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.col-day strong{
  display: inline-block;
  background: #eef8f2;
  color: var(--brand-dark);
  border: 1px solid #d7f0e2;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
}

.col-times{ font-variant-numeric: tabular-nums; }

.col-actions{ text-align: right; }
.btn{
  --pad-y: .6rem;
  --pad-x: 1rem;
  display: inline-block;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
}

.btn-prominent{
  --pad-y: .78rem;
  --pad-x: 1.25rem;
  font-size: 1.03rem;
  box-shadow: 0 10px 24px rgba(23, 131, 84, .18);
}

.btn-secondary{
  background: #fff;
  color: var(--brand-dark);
  border-color: #b9e5cc;
}

.btn-secondary:hover{
  background: #eef8f2;
  border-color: var(--brand);
}

.btn.book{
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn.book:hover{ background: var(--brand-dark); border-color: var(--brand-dark); }

/* Note */
.note{
  margin-top: .8rem;
  color: var(--muted);
  font-size: .95rem;
}

.booking-frame-wrap{
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 4px);
  background: #fff;
}

.booking-frame-wrap iframe{
  display: block;
  width: 100%;
  border: 0;
}

/* Footer */
.site-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-block: 1rem 2rem;
  color: var(--muted);
  font-size: .95rem;
}

.site-footer p{
  margin: 0;
}

.footer-social{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.footer-social a{
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background: #eef8f2;
  border-color: #cfe8d9;
  transform: translateY(-1px);
}

.footer-social svg{
  width: 1.25rem;
  height: 1.25rem;
}

.footer-social path{
  fill: currentColor;
}

.footer-social rect,
.footer-social circle{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* A11y helpers */
.visually-hidden{
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 900px){
  .service-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .other-clinics .schedule-table tr{
    grid-template-columns: 82px minmax(150px, 1fr) minmax(130px, auto) auto;
    grid-template-areas:
      "logo name times action"
      "logo location day action";
    gap: .3rem .75rem;
  }
}

/* Responsive: turn table into “cards” on small screens */
@media (max-width: 760px){
  :root { --header-offset: 180px; }

  .site-header{
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .75rem;
  }

  .brand img{ height: 58px; }

  .nav-toggle{
    display: inline-flex;
  }

  .site-header.nav-open .nav-toggle{
    border-color: var(--border);
    background: var(--card);
  }

  .site-header.nav-open .nav-toggle__icon{
    background: transparent;
  }

  .site-header.nav-open .nav-toggle__icon::before{
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle__icon::after{
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav{
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    z-index: 1001;
  }

  .site-header.nav-open .site-nav{
    display: block;
  }

  .site-nav ul{
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .site-nav li + li{
    border-top: 1px solid var(--border);
  }

  .site-nav a{
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 0;
    border: 0;
  }

  .site-nav a[aria-current="page"]{
    background: #eef8f2;
    border-color: transparent;
  }

  .service-grid,
  .service-list{ grid-template-columns: 1fr; }

  .clinic-feature,
  .about-intro,
  .clinic-preview,
  .services-visual{
    grid-template-columns: 1fr;
  }

  .clinic-feature__copy{
    max-width: none;
  }

  .clinic-feature__media{
    max-width: none;
    justify-self: stretch;
  }

  .about-intro__image{
    min-height: 360px;
  }

  .clinic-preview__images{
    grid-template-columns: .68fr 1fr;
  }

  .site-footer{
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-table thead{ display: none; }
  .schedule-table, .schedule-table tbody, .schedule-table tr, .schedule-table td{ display: block; width: 100%; }
  .schedule-table tr{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;                  /* slight spacing cleanup */
    margin: .75rem 0;
    text-align: center;             /* ← Center all text inside the card */
  }
   .schedule-table td{
    border: none;
    padding: .35rem 0;
  }
   /* Center the logo block */
  .schedule-table .col-logo{
    margin-bottom: .6rem;
    text-align: center;             /* ← ensure logo block centers */
  }
  .logo{
    margin-inline: auto;            /* ← center logo container */
  }

  /* Make clinic name slightly bolder and centered */
  .schedule-table .col-name{
    font-size: 1.15rem;             /* slightly larger */
    font-weight: 600;
    margin-top: .25rem;
  }

  .schedule-table .col-day{
    margin-top: .35rem;
  }

  /* Center the Book button */
  .schedule-table .col-actions{
    text-align: center !important;  /* ← override old left alignment */
    margin-top: .75rem;
  }
  .btn.book{
    display: inline-block;
  }

  .schedule-table tbody tr.featured-clinic{
    background: linear-gradient(180deg, rgba(32, 163, 106, .14), rgba(255, 255, 255, 0) 50%, rgba(32, 163, 106, .14));
    border: 2px solid #b9e5cc;
    box-shadow: 0 12px 30px rgba(23, 131, 84, .12);
  }

  .schedule-table tbody tr.featured-clinic td{
    border: none;
    padding-block: .45rem;
  }

  .schedule-table tbody tr.featured-clinic td:first-child{
    border-left: 0;
  }

  .schedule-table .featured-clinic .logo{
    width: 150px;
    height: 98px;
  }

  .booking-actions{
    align-items: stretch;
    flex-direction: column;
  }

  .booking-actions .btn{
    text-align: center;
  }

  .other-clinics .schedule-table tbody{
    display: grid;
    grid-template-columns: 1fr;
  }

  .other-clinics .schedule-table tr{
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 82px;
    grid-template-areas:
      "logo name spacer"
      "logo location spacer"
      "logo day spacer"
      "logo times spacer"
      "logo action spacer";
    gap: .3rem .75rem;
    margin: .75rem 0;
    text-align: center;
  }

  .other-clinics .schedule-table td{
    padding: 0;
  }

  .other-clinics .col-logo{
    margin-bottom: 0;
    text-align: left;
  }

  .other-clinics .logo{
    margin-inline: 0;
    width: 74px;
    height: 54px;
  }

  .other-clinics .col-actions{
    margin-top: .7rem;
    text-align: center !important;
  }

  .other-clinics .col-actions .btn{
    min-width: 5.2rem;
    text-align: center;
  }
}

@media (max-width: 520px){
  .other-clinics .schedule-table tr{
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
      "logo name"
      "logo location"
      "logo day"
      "logo times"
      "logo action";
  }
}
