:root {
  --black: #040707;
  --silver: #bcbdc0;
  --gold: #bf9459;
  --white: #ffffff;
  --primary: #040707;
  --secondary: #bf9459;
  --accent: #bcbdc0;
  --light: #f7f7f7;
  --text: #040707;
  --muted: #6f7174;
  --border: rgba(188, 189, 192, 0.45);
  --shadow: 0 18px 45px rgba(4, 7, 7, 0.14);
  --radius: 24px;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-padding {
  padding: 86px 0;
}

/* HEADER */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 40px;
  min-height: 90px;
  background: rgba(4, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(188, 189, 192, 0.25);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
}

.header-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  z-index: 1001;
}

.nav a {
  color: var(--white);
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--black) !important;
  background: var(--gold);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1003;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

/* HERO */

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(191, 148, 89, 0.3), transparent 35%),
    linear-gradient(135deg, #040707 0%, #111818 100%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.section-heading p,
.split-grid p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 148, 89, 0.28);
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
}

.btn-outline {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

/* CARDS / FORMS */

.booking-card,
.ai-card,
.feature-card,
.review-card,
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 30px;
  color: var(--black);
}

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: 14px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 148, 89, 0.18);
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* QUICK CTA */

.quick-cta {
  padding: 16px 0;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(188, 189, 192, 0.2);
  border-bottom: 1px solid rgba(188, 189, 192, 0.2);
}

.quick-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.quick-cta a {
  margin-left: 14px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
}

/* SECTIONS */

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.cards-grid,
.video-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.review-card {
  padding: 24px;
}

.feature-card h3,
.review-card h3 {
  color: var(--black);
}

.feature-card p,
.review-card p {
  color: var(--muted);
}

.highlight-section,
.reviews-section,
.ai-section {
  background: var(--light);
}

.video-card {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
}

/* TEAM */

#team .cards-grid {
  grid-template-columns: repeat(3, 340px);
  justify-content: center;
  gap: 30px;
}

#team .team-card {
  text-align: center;
}

#team .team-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  display: block;
}

/* WHY HCD */

.why-hcd-section {
  background: #f8f8f8;
}

.why-hcd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-item span {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.why-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
}

/* VIDEOS */

.video-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-frame.small {
  min-height: 150px;
}

.stars {
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 2px;
}

.center-action,
.center-buttons {
  justify-content: center;
  text-align: center;
}

.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* SWIPER */

.swiper {
  width: 100%;
  padding: 10px 5px 45px;
}

.swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 46px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--black);
  color: var(--gold);
}

/* AI ASSISTANT */

.ai-section {
  background: var(--light);
}

.ai-section .split-grid {
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
}

.ai-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.ai-info h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.ai-info p {
  max-width: 420px;
  margin: 0 auto;
}

.ai-image-card {
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.ai-assistant-image {
  width: 100%;
  max-width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  margin: 0 auto 20px;
  display: block;
  box-shadow: var(--shadow);
}

.ai-card {
  padding: 26px;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

.ai-card input {
  margin-bottom: 12px;
}

.chat-log {
  display: grid;
  gap: 10px;
  height: 250px;
  overflow-y: auto;
  padding: 14px;
  background: #f8f8f8;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.bot-msg,
.user-msg {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 14px;
}

.bot-msg {
  color: var(--black);
  background: var(--silver);
}

.user-msg {
  justify-self: end;
  color: var(--white);
  background: var(--black);
}

.chat-input-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.chat-input-row button,
#sendChat {
  height: 50px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--gold);
  font-weight: 900;
}

.loading-msg {
  opacity: .8;
  font-style: italic;
}

.loading-msg::after {
  content: '';
  display: inline-block;
  width: 18px;
  text-align: left;
  animation: dots 1.2s infinite;
}

@keyframes dots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

.form-error{
  color:#d93025;
  font-size:14px;
  margin:5px 0 10px;
}

.input-error{
  border-color:#d93025 !important;
}

@media(max-width: 980px) {
  .ai-section .split-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ai-card {
    margin: 0 auto;
  }

  .ai-assistant-image {
    max-width: 360px;
    height: 360px;
  }
}

@media(max-width: 680px) {
  .ai-info h2 {
    font-size: 32px;
  }

  .ai-assistant-image {
    max-width: 280px;
    height: 280px;
  }
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

details {
  padding: 20px 22px;
  box-shadow: none;
}

summary {
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* FINAL CTA */

.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(191, 148, 89, 0.32), transparent 34%),
    var(--black);
}

.final-cta-card {
  text-align: center;
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

/* FLOATING BUTTONS */

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  padding: 12px 16px;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.floating-actions a:last-child {
  color: var(--white);
  background: var(--whatsapp);
}

.hidden-item {
  display: none !important;
}

.hidden-video {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .cards-grid,
  .video-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  #team .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar {
    padding: 10px 15px;
    min-height: 75px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .header-logo {
    height: 55px;
    max-width: 180px;
  }

  .menu-toggle {
    display: flex !important;
    flex-shrink: 0;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--black);
    border: 1px solid rgba(191, 148, 89, 0.35);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
    color: var(--white);
    border-bottom: 1px solid rgba(188, 189, 192, 0.16);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }

  .section-padding {
    padding: 58px 0;
  }

  .why-hcd-grid {
    grid-template-columns: 1fr;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 38px;
    height: 38px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 15px;
  }

  .swiper-slide img {
    height: 260px;
  }

  .video-frame {
    height: 220px;
  }

  .quick-cta-inner,
  .hero-actions,
  .chat-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .booking-card,
  .ai-card {
    padding: 22px;
  }

  .quick-cta a {
    display: block;
    margin: 8px 0 0;
  }

  .floating-actions {
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions a {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .hero-grid,
  .split-grid,
  .cards-grid,
  .video-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  #team .cards-grid {
    grid-template-columns: 1fr;
  }

  #team .team-card img {
    height: 320px;
  }

  .section-heading {
    text-align: left;
  }
}

.loading-msg{
  opacity:.8;
  font-style:italic;
}

.loading-msg::after{
  content:'';
  display:inline-block;
  width:18px;
  text-align:left;
  animation:dots 1.2s infinite;
}

@keyframes dots{
  0%{content:'';}
  33%{content:'.';}
  66%{content:'..';}
  100%{content:'...';}
}



.ai-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
    text-align:center;
}

.ai-section .split-grid{
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
}


.ai-assistant-image{
  width:100%;
  max-width:380px;
  height:380px;
  object-fit:cover;
  border-radius:24px;
  margin:0 auto 20px;
  display:block;
  box-shadow:var(--shadow);
}

.ai-image-card{
  background:#fff;
  border-radius:28px;
  padding:20px;
  box-shadow:var(--shadow);
  margin-bottom:24px;
}

.ai-info h2{
  font-size:42px;
  line-height:1.1;
  margin-bottom:12px;
}

.ai-info p{
  max-width:420px;
  margin:0 auto;
}

.ai-card{
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

@media(max-width:980px){
  .ai-section .split-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ai-card{
    margin: 0 auto;
  }

  .ai-assistant-image{
    max-width: 360px;
    height: 360px;
  }
}

@media(max-width:680px){
  .ai-assistant-image{
    max-width: 280px;
    height: 280px;
  }
}
.review-content{
  margin-bottom:15px;
}

.review-text{
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:10px;
}

.review-text.expanded{
  display:block;
  overflow:visible;
}

.review-toggle{
  padding:0;
  border:0;
  background:none;
  color:var(--gold);
  font-weight:900;
  cursor:pointer;
  font-size:14px;
}

.review-toggle:hover{
  text-decoration:underline;
}

.offer-banner{
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 24px;
  margin-bottom: 24px;

  background: linear-gradient(
    135deg,
    var(--black),
    #101414
  );

  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 18px;

  box-shadow:
    0 0 0 rgba(191,148,89,.25),
    0 0 25px rgba(191,148,89,.20);

  animation: offerGlow 2.5s ease-in-out infinite;
}

.offer-badge{
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 12px;

  background: var(--gold);
  color: var(--black);

  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  animation: badgePulse 1.5s infinite;
}

.offer-banner strong{
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.offer-title{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.offer-banner p:last-child{
  color: var(--silver);
  margin: 0;
}

/* Premium shine effect */
.offer-banner::before{
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );

  animation: shine 3s infinite;
}

@keyframes shine{
  100%{
    left: 160%;
  }
}

@keyframes offerGlow{
  0%,100%{
    box-shadow:
      0 0 15px rgba(191,148,89,.20),
      0 0 30px rgba(191,148,89,.10);
  }

  50%{
    box-shadow:
      0 0 30px rgba(191,148,89,.50),
      0 0 60px rgba(191,148,89,.20);
  }
}

@keyframes badgePulse{
  0%,100%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.08);
  }
}


.live-bookings{
    background: linear-gradient(
        90deg,
        rgba(191,148,89,0.08) 0%,
        rgba(255,255,255,1) 50%,
        rgba(191,148,89,0.08) 100%
    );
    border-top: 1px solid rgba(191,148,89,0.2);
    border-bottom: 1px solid rgba(191,148,89,0.2);
    padding: 12px 0;
    overflow: hidden;
}

.booking-ticker{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    min-height: 28px;
    text-align: center;
}

.booking-ticker strong{
    color: var(--secondary);
}

.pulse-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 rgba(191,148,89,.7);
    animation: pulseGold 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseGold{
    0%{
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(191,148,89,.7);
    }
    70%{
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(191,148,89,0);
    }
    100%{
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(191,148,89,0);
    }
}

.booking-fade{
    animation: bookingFade .6s ease;
}

@keyframes bookingFade{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px){
    .booking-ticker{
        font-size:13px;
        padding:0 15px;
        line-height:1.5;
    }
}

.location-section{
    padding:80px 0;
    background:var(--light);
}

.location-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:40px;
    margin-top:40px;
}

.location-map{
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(191,148,89,.15);
}


.location-map iframe{
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}


.location-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.location-info h3{
    margin:0;
    color:var(--primary);
}

.location-card{
    background:var(--white);
    padding:20px;
    border-radius:16px;
    border:1px solid rgba(191,148,89,.15);
}

.location-card strong{
    display:block;
    color:var(--secondary);
    margin-bottom:8px;
}

.location-card p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

.location-card a{
    color:var(--primary);
    text-decoration:none;
}

@media(max-width:768px){
    .location-map iframe{
        height: 350px;
    }
}

.location-actions{
    text-align: center;
    margin-top: 24px;
}

.location-actions .btn{
    min-width:280px;
    padding:16px 40px;
    font-size:18px;
}

.site-footer{
    background: var(--primary);
    color: var(--white);
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer-top{
    display:grid;
    grid-template-columns: 1fr 1.2fr;
    gap:60px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-brand h3{
    color:var(--secondary);
    margin-bottom:15px;
    font-size:30px;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    max-width:500px;
}

.footer-nav{
    display:grid;
    grid-template-columns:repeat(2,minmax(180px,1fr));
    gap:12px 25px;
}

.footer-nav a{
    color:rgba(255,255,255,.8);
    text-decoration:none;
    transition:.3s ease;
}

.footer-nav a:hover{
    color:var(--secondary);
    padding-left:4px;
}

.footer-bottom{
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.65);
    font-size:14px;
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-nav{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

}

.form-error {
  color: #d93025;
  font-size: 14px;
  margin: 5px 0 10px;
}

.input-error {
  border-color: #d93025 !important;
}

@media(max-width:768px){
  .location-grid{
    grid-template-columns:1fr;
  }
}

/* Treatments */
#treatments .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 500px));
  justify-content: center;
  gap: 30px;
}

#treatments .team-card {
  text-align: center;
}

#treatments .team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  #treatments .cards-grid {
    grid-template-columns: 1fr;
  }
}