﻿
html, body {
  margin: 0;
  padding: 0;
}

/* Base typography (Bootstrap-inspired) */
html, body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* GLOBAL LINK RESET */
a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

/* GLOBAL LINK RESET */
a,
a:visited,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}


/* ===============================
	DeskTop Nav
   =============================== */

.topnav {
  display:flex;
  align-items:center;
  padding: 10px 20px;
  gap: 12px;
}

/* logo stays at left */
.logo { order: 0; }

/* push the nav-items container to the right */
.nav-items {
  margin-left: auto;         /* this pushes the whole group to the right */
  display: flex;
  align-items: center;
  gap: 6px;                  /* spacing between items — tweak smaller if too wide */
}

/* individual items inside the nav-items group */
.nav-items > a,
.nav-items > .dropdown .dropbtn {
  padding: 8px 10px;         /* tighter side padding so items stay close */
}



.logo img {
  width: 160px;
}

/* All links */
.topnav a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Hoefler Text', "Century Gothic", serif;
  display: inline-block;
}

/* Dropdown styling */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown .dropbtn {
  font-size: 1em;
  border: none;
  outline: none;
  color: black;
  padding: 10px 15px;
  background-color: inherit;
  font-family: 'Hoefler Text', "Century Gothic", serif;
  cursor: pointer;
  position: relative;
}

/* Arrow */
.dropdown .dropbtn::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  transition: transform 0.3s ease;
}

/* Mobile arrow flip on click */
.dropdown.active .dropbtn::after {
  transform: rotate(180deg);
}

/* Arrow rotation - desktop hover */
@media screen and (min-width: 701px) {
  .dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Hamburger hidden on desktop */
  .topnav .icon {
    display: none !important;
  }
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.dropdown-content a {
  padding: 8px 15px;
  color: #555;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ccc;
}

/* ===============================
   MOBILE NAVIGATION (<700px)
   =============================== */
@media screen and (max-width: 700px) {

  /* NAV LAYOUT ON MOBILE */
  .topnav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
  }

  /* LOGO */
  .topnav a.logo {
    display: block;       /* always visible */
    width: 150px;         /* adjust size for mobile */
    margin-bottom: 10px;
  }

  /* HAMBURGER ICON */
  .topnav .icon {
    display: block;
    font-size: 36px; 
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 10px; /* aligns with logo */
  }

  /* HIDE ALL MENU LINKS AND DROPDOWNS BY DEFAULT */
  .topnav a:not(.icon):not(.logo),
  .topnav .dropdown {
    display: none;
    width: 100%;
  }

  /* EXPANDED MENU WHEN HAMBURGER CLICKED */
  .topnav.responsive {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SHOW LINKS AND DROPDOWN BUTTONS WHEN MENU IS OPEN */
  .topnav.responsive a:not(.icon),
  .topnav.responsive .dropdown {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 0;
    
  }

  /* MOBILE DROPDOWN CONTENT REMAINS HIDDEN UNTIL TAPPED */
  .topnav.responsive .dropdown .dropdown-content {
    display: none;
    position: relative;
    box-shadow: none;
    background: #f3f3f3;
    text-align: left;        /* align text left */
    width: 100%;
    box-sizing: border-box;  /* ensures full width */
    margin: 0;               /* remove extra margins */
    padding: 0;
  }

  .topnav.responsive .dropdown .dropdown-content a {
    padding: 14px 14px;
  }

  /* MOVE X ICON TO BOTTOM WHEN MENU IS OPEN */
  .topnav.responsive .icon {
    position: static;   
    align-self: flex-end;
    margin-top: 10px;
    font-size: 20px;   
  }

  /* Ensure all links and dropdown buttons stack neatly */
  .topnav.responsive a:not(.icon),
  .topnav.responsive .dropdown {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 0;        /* same padding for all items */
    margin: 0;               /* remove extra margins */
  }

 
  /* Keep dropdown content indented slightly under their button */
  .topnav.responsive .dropdown .dropdown-content {
    padding-left: 20px;
  }
  
  /* Align dropdown buttons with other menu items in mobile */
.topnav.responsive .dropdown {
  width: 100%;
  margin: 0;           /* remove extra spacing */
}

.topnav.responsive .dropdown .dropbtn {
  padding: 14px 0px;     /* same as other menu items */
  padding-left: 14px;
  width: 100%;         /* fill the menu width */
  text-align: left;
  margin: 0px;
  box-sizing: border-box;
}

/* Make the nav-items stack vertically when mobile menu is open */
.topnav.responsive .nav-items {
  display: flex;               /* ensure it's a flex container */
  flex-direction: column;      /* stack children vertically */
  width: 100%;
  gap: 0;                      /* remove desktop gaps between items */
  padding: 0;
}

/* Ensure individual items fill the width and line up vertically */
.topnav.responsive .nav-items > a,
.topnav.responsive .nav-items > .dropdown,
.topnav.responsive .nav-items > .dropdown .dropbtn {
  display: block;
  width: 100%;
  padding: 14px 0;             /* same vertical padding as other mobile items */
  margin: 0;
  text-align: left;
  box-sizing: border-box;
}

}

/* Tablet breakpoint: 768px - 900px */
@media screen and (max-width: 900px) and (min-width: 701px) {
  .topnav {
    padding: 15px 20px; /* slightly smaller padding */
  }

  .topnav a {
    padding: 10px 12px; /* reduce spacing between links */
  }

  /* Optionally reduce dropdown min-width */
  .dropdown-content {
    min-width: 150px;
  }
}



.hero-section {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Prevent horizontal scroll */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Like background-size: cover */
  z-index: 0;        /* Behind everything */
}

.hero-overlay {
  background: rgba(0,0,0,0.3);   
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  box-sizing: border-box;
  position: relative;
  z-index: 1; /* Overlay above image */
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Hoefler Text', "Century Gothic", serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e8b4b8;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #d7999e;
}

/* MOBILE */
@media screen and (max-width: 700px) {
  .hero-section {
    padding: 40px 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* =============================
   SERVICES SECTION
============================= */

.services {
  padding: 80px 20px;
  text-align: center;
  background: #f9f5f2; /*  light beige sandy pink  */
}

.services h2 {
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 500;
  font-family: 'Hoefler Text', serif;
  color: #333;
}

/* GRID */
.services-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARD */
.service-card {
  background: white;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* IMAGE WRAPPER */
.service-image {
  overflow: hidden;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* IMAGE HOVER ZOOM */
.service-card:hover img {
  transform: scale(1.05);
}

/* SERVICE TITLE */
.service-card h3 {
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 500;
  font-family: 'Hoefler Text', serif;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* TITLE LIFT ON HOVER */
.service-card:hover h3 {
  transform: translateY(-3px);
  color: #666;
}

/* MOBILE */
@media (max-width: 600px) {
  .service-image img {
    height: 280px;
  }
}

.care-focus {
  background-color: #d2d8db;   /*  light blue grey  */
  padding: 80px 20px;
}

.care-focus .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.care-focus h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-family: 'Hoefler Text', serif;
  color: #354f5f;  /*  dark smokey blue  */
}

.care-focus .intro {
  font-size: 1.1rem;
  margin-bottom: 60px;
  color: #4c6271;  /*  medium smokey blue  */
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout */
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card styling */
.care-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 30px;
  text-decoration: none;
  color: #4c6271;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.care-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.care-card a {
  color: #4c6271;           /* same as card text */
  text-decoration: none;    /* optional */
  transition: color 0.3s ease;
}

.care-card a:hover,
.care-card a:focus {
  color: #c7a2a4;           /* brand/hover color */
  text-decoration: none;
}
.care-card .icon {
  font-size: 48px; /* you can replace with image or SVG */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c6271; /* ensures icons match text */
  transition: transform 0.3s ease; color 0.3s ease;
}

.care-card:hover .icon {
  transform: translateY(-8px);
}

.care-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: 'Hoefler Text', serif;
  color: #4c6271; /* match card text */
  transition: color 0.3s ease;
}

.care-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.care-card:hover h3 {
  color: #b9888c; /* replace with your preferred hover color */
}

/* Responsive */
@media (max-width: 1024px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   WHY CHOOSE US – ICON CAROUSEL
   =============================== */

.why-choose-us {
  background-color: #e3d5d7;  /*  light mauve pink  */
  padding: 70px 0;
  overflow: hidden;
}

.why-choose-us .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  font-family: 'Hoefler Text', serif;
  color: #4f484d;   /*  dark plum purle  */
}

.why-choose-us .intro {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4f484d;
}

/* Swiper container */
.reasons-carousel {
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Individual slide */
.reason-card {
  text-align: center;
  cursor: pointer;
  padding: 20px 10px;
}

/* ICON CONTAINER — YOU DROP YOUR SVG HERE */
.reason-card .icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

/* Lift interaction */
@media (hover: hover) {
  .reason-card:hover .icon {
    transform: translateY(-14px);
  }
}

/* Title */
.reason-card h3 {
  font-size: 1.15rem;
  font-family: 'Hoefler Text', serif;
  color: #4f484d;
  margin-bottom: 10px;
}

/* Description (hidden initially) */
.reason-card p {
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4f484d;
  max-width: 260px;
  margin: 14px auto 0;
}

/* Reveal on click */
.reason-card.active p {
  display: block;
}

/* Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #4f484d;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

/* Tablet */
@media screen and (min-width: 700px) {
  .reason-card .icon {
    width: 120px;
    height: 120px;
  }
}

/* Desktop */
@media screen and (min-width: 1024px) {
  .why-choose-us {
    padding: 90px 0;
  }

  .reason-card .icon {
    width: 130px;
    height: 130px;
  }
}

/* ===============================
   CONTACT / MAP SECTION
   =============================== */
.contact-section {
  padding: 60px 20px;
  background-color: #faf7f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  font-family: 'Hoefler Text', "Century Gothic", serif;
  color: #333;
}

/* Container for map + contact info */
.contact-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; /* ensures mobile stacking */
}

/* Map styling */
.contact-map {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 600px;
  height: auto;
}

/* Contact info styling */
.contact-info {
  flex: 1 1 300px;
  min-width: 250px;
  text-align: left;
}

.contact-info p {
  font-size: 1em;
  margin: 10px 0;
}

.contact-info a {
  color: #b06b87; /* complementary pink accent for links */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-info {
    text-align: center;
  }
}

/* ===============================
   FOOTER
   =============================== */

.site-footer {
  background-color: #798994; /* spa neutral */
  padding: 80px 20px 30px;
  font-family: 'Hoefler Text', "Century Gothic", serif;
  color: #faf7f9;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* BRAND */
.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #faf7f9;
}


/* LINKS */
.footer-links h4,
.footer-connect h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #faf7f9;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #555;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: start;
  margin-top: 16px;
}

.social-links img {
  width: 36px;
  height: 36px;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Pride flag inline with social icons */
.footer-pride {
  display: inline-block;
  margin-left: 10px;   /* space from last social icon */
  opacity: 0.85;       /* subtle */
  vertical-align: middle;
}

.footer-pride img {
  width: 36px;          /* same visual weight as social icons */
  height: auto;
  display: inline-block;
}


/* CONNECT */
.footer-connect {
  margin-top: 0;
 }

.billing-note {
  margin-top: 36px;              
  font-size: 1.1rem;               
  color: #f4e1e4;               
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* left text, right seal */
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .cookie-text {
  flex: 1 1 60%; /* take left side, shrink if needed */
}

.footer-bottom .ssl-seal {
  flex: 0 0 auto; /* keeps seal from shrinking */
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #faf7f9;
  margin: 0;
}

.footer-bottom a {
  color: #faf7f9;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #e8d1d3;
}

/* MOBILE & TABLET RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand img {
    margin: 0 auto 16px;
  }

  .social-links {
    justify-content: center;
    margin-top: 12px;
  }


  .billing-note {
    margin-top: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom .ssl-seal {
    margin-top: 10px;
  }
}

/* PRIVACY POLICY*/

/* Privacy Page Container */
.privacy-container {
    max-width: 1200px;               /* match site width */
    margin: 0 auto;                  /* center container */
    padding: 60px 20px;              /* space around content (top/bottom + sides) */
    font-family: 'Hoefler Text', "Century Gothic", serif; /* your chosen font */
    font-size: 16px;
    line-height: 1.6;
    color: #333;                     /* body text color */
    background-color: #faf7f9;       /* match site background */
}

/* Page Title */
.privacy-title {
    font-size: 2rem;                 /* matches other page titles */
    font-weight: 600;                /* bold heading */
    color: #333;                     /* same as site headings */
    margin-bottom: 30px;
    text-align: left;                /* align with page content */
}

/* Section Styling */
.privacy-section {
    margin-bottom: 25px;             /* space between sections */
}

/* Section Headings */
.privacy-heading {
    font-size: 1.4rem;               /* consistent subheading size */
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraphs */
.privacy-section p {
    margin-bottom: 15px;
}

/* Lists */
.privacy-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-list li {
    margin-bottom: 8px;
}

/* Links */
.privacy-section a,
.privacy-home-link a {
    color: #b9888c;                  /* matches your site link hover palette */
    text-decoration: underline;
}

.privacy-section a:hover,
.privacy-home-link a:hover {
    color: #7a5a5f;
}

/* Home link styling */
.privacy-home-link {
    text-align: center;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 15px;
        font-size: 15px;
    }
    .privacy-title {
        font-size: 1.6rem;
    }
    .privacy-heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 30px 10px;
        font-size: 14px;
    }
    .privacy-title {
        font-size: 1.4rem;
    }
    .privacy-heading {
        font-size: 1.1rem;
    }
}

/* ===============================
   SERVICE PAGE
   =============================== */

.service-hero {
  width: 100%;
  padding: 50px 20px 50px; 
  position: relative;
  overflow: hidden;
  background-color: #f6eded;
  background-image:
    radial-gradient(
      circle at 15% 25%,
      rgba(214, 176, 184, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(198, 221, 218, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 75%,
      rgba(232, 206, 210, 0.45),
      transparent 65%
    );
}

.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-hero h1 {
  font-family: 'Hoefler Text', "Century Gothic", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #2f2f2f;
  letter-spacing: 0.02em;
}


.service-intro {
  padding: 110px 20px;
  background-color: white;
}

.service-intro .intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.intro-text h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #2f2f2f;
}

.intro-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin-bottom: 18px;
  max-width: 520px;
}

/* IMAGE SHAPE */
.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;

  /* Sideways dome shape */
  border-radius: 120px 24px 24px 120px;

  /* Soft, modern elevation */
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* TABLET */
@media (max-width: 900px) {
  .service-intro .intro-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intro-text p {
    max-width: 100%;
  }

  .intro-image img {
    border-radius: 100px 20px 20px 100px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .chiropractic-intro {
    padding: 80px 20px;
  }

  .intro-text h2 {
    font-size: 1.9rem;
  }

  .intro-image img {
    border-radius: 60px;
  }
}

.service-booking {
  padding: 3.5rem 1.5rem;
  background-color: #f4f6f6; /* soft neutral */
}

.service-booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-booking-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #4f484d;
}

.service-booking-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f5f5f;
  max-width: 520px;
}

.booking-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background-color: #c7a2a4; /* matches your accent tones */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.booking-button:hover {
  background-color: #b88f91;
  transform: translateY(-2px);
}

.booking-button,
.booking-button:visited,
.booking-button:hover,
.booking-button:focus,
.booking-button:active {
  color: #ffffff !important;
  text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
  .service-booking-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-booking-text p {
    max-width: none;
  }
}


.service-benefits {
  background-color: #f9f5f2; /* soft neutral background */
  padding: 60px 20px;
}

.service-benefits .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.service-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.benefits-list li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.advanced-training {
  background-color: #ffffff; 
  padding: 90px 20px;
}

.advanced-training .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.advanced-training h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  color: #2f2f2f;
  margin: 40px 0 24px;
}

.advanced-training .intro {
  font-size: 1.15rem;
  color: #4f4f4f;
  margin-bottom: 28px;
}

.advanced-training p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a5a5a;
  max-width: 720px;
  margin: 0 auto 30px;
}

/* Divider lines */
.advanced-training .divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background-color: rgba(0,0,0,0.12);
  margin: 0 auto;
}

/* Advanced Highlight Block */
.mscp-block {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: left;
  flex-wrap: wrap;
}

.mscp-block img {
  width: 90px;
  height: auto;
}

.mscp-text h3 {
  font-family: 'Hoefler Text', serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.mscp-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .advanced-training {
    padding: 70px 20px;
  }

  .mscp-block {
    text-align: center;
  }

  .mscp-text p {
    margin: 0 auto;
  }
}

/* ===============================
   BOTTOM BOOKING SECTION
   =============================== */

.service-booking-secondary {
  padding: 90px 20px;
  background-color: #f8f6f7;
  text-align: center;
}

.service-booking-secondary-inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-booking-secondary h3 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: #4f484d;
  font-family: 'Hoefler Text', serif;
}

.service-booking-secondary p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f5f5f;
  margin-bottom: 36px;
}

/* Button */
.secondary-booking-button {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background-color: #e6cccf;
  color: #4f484d;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.secondary-booking-button:hover {
  background-color: #d9b9bd;
  transform: translateY(-2px);
}

/* Mobile refinements */
@media (max-width: 600px) {
  .service-booking-secondary {
    padding: 70px 20px;
  }

  .service-booking-secondary h3 {
    font-size: 1.6rem;
  }
}

.secondary-booking-button,
.secondary-booking-button:visited,
.secondary-booking-button:hover,
.secondary-booking-button:focus,
.secondary-booking-button:active {
  color: #4f484d !important;
  text-decoration: none;
}


/* ===============================
   LASER THERAPY LINK BUTTON
   =============================== */

.laser-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  margin-top: 24px;

  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;

  color: #4f484d;
  background-color: transparent;
  border: 1.5px solid #c8aeb2;
  border-radius: 999px; /* soft pill shape */

  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover / focus */
.laser-link-button:hover,
.laser-link-button:focus {
  background-color: #c8aeb2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .laser-link-button {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   LASER – WHAT TO EXPECT
   =============================== */

.laser-expect {
  background-color: #f7f1f0; /* soft neutral, works across services */
  padding: 110px 20px;
}

.laser-expect-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.laser-expect-image img {
  width: 100%;
  height: auto;
  border-radius: 140px 0 0 140px; /* soft dome on left */
  object-fit: cover;
}

/* CONTENT */
.laser-expect-content h2 {
  font-size: 2rem;
  font-family: 'Hoefler Text', serif;
  color: #4f484d;
  margin-bottom: 24px;
}

.laser-expect-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a5458;
  margin-bottom: 18px;
  max-width: 560px;
}

/* TABLET */
@media (max-width: 900px) {
  .laser-expect-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .laser-expect-image img {
    border-radius: 120px 120px 0 0; /* dome shifts to top */
  }

  .laser-expect-content {
    text-align: center;
  }

  .laser-expect-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .laser-expect {
    padding: 90px 20px;
  }

  .laser-expect-content h2 {
    font-size: 1.8rem;
  }
}

/* CARE FOCUS PAGES */

.focus-hero {
  width: 100%;	
  padding: 50px 20px 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #b0c0c8; /* Base smokey blue-grey */
  background-image:
    radial-gradient(circle at 15% 25%, rgba(176, 192, 200, 0.5), transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255, 200, 210, 0.4), transparent 55%),
    radial-gradient(circle at 50% 75%, rgba(245, 220, 225, 0.45), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(190, 210, 220, 0.35), transparent 65%);
    }

.focus-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.focus-hero h1 {
  font-family: 'Hoefler Text', "Century Gothic", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #4f484d;
  margin-bottom: 16px;
}

.focus-hero p {
  font-size: 1.15rem;
  color: #4f484d;
  line-height: 1.6;
}


.focus-intro {
  padding: 5rem 1.5rem;
  background: #f8f9f8;
}

.focus-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.focus-image-wrapper {
  position: relative;
}

.focus-image-shape {
  border-radius: 160px 160px 40px 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.focus-image-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.focus-intro-content h1 {
  font-family: 'Hoefler Text', serif;
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.focus-intro-content .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #333;
}

.focus-intro-content p {
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .focus-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .focus-image-shape {
    border-radius: 120px 120px 32px 32px;
  }

  .focus-intro-content h1 {
    font-size: 2rem;
  }
}

.focus-reasons {
  padding: 80px 20px;
  background-color: #e3dee1;  /*  light mauve pink  */
}

.focus-reasons .container {
  max-width: 900px;
  margin: 0 auto;
}

.focus-reasons h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #4f484d;
}

.focus-reasons ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 60px;
}

.focus-reasons li {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-left: 22px;
  position: relative;
  color: #5f5f5f;
}

.focus-reasons li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c7a2a4;
}

@media (max-width: 768px) {
  .focus-reasons ul {
    columns: 1;
  }
}

.focus-team {
  padding: 100px 20px;
  background-color: #fff;
}

.focus-team .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.team-grid-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

@media (min-width: 720px) { /* 3 columns on medium+ screens */
  .team-grid-focus {
    grid-template-columns: repeat(3, 1fr);
  }
}


.team-card-focus h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #4f484d;
}

.team-card-focus p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f5f5f;
}

.focus-pathways {
  padding: 80px 20px;
  background-color: #d2d8db;   /*  light blue grey  */
  text-align: center;
}

.focus-pathways h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #4f484d;
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pathway-links a {
  padding: 14px 26px;
  border-radius: 30px;
  background-color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  color: #4f484d;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.pathway-links a:hover {
  background-color: #e6cccf;
  transform: translateY(-2px);
}

.focus-cta {
  padding: 70px 20px;
  background-color: #f8f9f8; /* soft neutral, calming */
  text-align: center;
}

.focus-cta .container {
  max-width: 800px;
  margin: 0 auto;
}

.focus-cta p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4f484d;
  margin-bottom: 28px;
}

/* Button styling */
.focus-cta .cta-button {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background-color: #c7a2a4; /* soft mauve-pink accent */
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.focus-cta .cta-button:hover {
  background-color: #b78f92;
  transform: translateY(-2px);
}


/* =====================================
   FOCUS SERVICE PAGES
   ===================================== */

.focus-service-hero {
  width: 100%;
  padding: 50px 20px 50px; 
  position: relative;
  overflow: hidden;
  text-align:center;
  background-color: #e3dee1;
  background-image:
    radial-gradient(
      circle at 15% 25%,
      rgba(214, 176, 184, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(198, 221, 218, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 75%,
      rgba(232, 206, 210, 0.45),
      transparent 65%
    );
}
		
.focus-service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.focus-service-hero h1 {
  font-family: 'Hoefler Text', "Century Gothic", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #4f484d;
  font-weight: 500;
  margin-bottom: 16px;
}

.focus-service-hero p {
  font-size: 1.15rem;
  color: #4f484d;
  line-height: 1.6;
}

.focus-service-intro {
  padding: 100px 20px;
  background-color: #f7f5f5;
}

.focus-service-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.focus-service-intro h2 {
  font-size: 2.2rem;
  font-family: 'Hoefler Text', serif;
  color: #2f2f2f;
  margin-bottom: 24px;
}

.focus-service-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
  margin-bottom: 18px;
}

/* ===============================
   FOCUS PAGE — IMAGE BREAK
   =============================== */

.focus-image-break {
  padding: 90px 20px;
  background-color: #ffffff;
}

.focus-image-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.focus-image-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 3 / 2;
  border-radius: 180px 180px 60px 60px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

.focus-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .focus-image-break {
    padding: 70px 20px;
  }

  .focus-image-frame {
    border-radius: 120px 120px 40px 40px;
    aspect-ratio: 4 / 3;
  }
}


.focus-service-reasons {
  padding: 80px 20px;
  background-color: #d2d8db;
}

.focus-service-reasons-inner {
  max-width: 900px;
  margin: 0 auto;
}

.focus-service-reasons h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #4f484d;
}

.focus-service-reasons ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 60px;
}

.focus-service-reasons li {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-left: 22px;
  position: relative;
  color: #5f5f5f;
}

.focus-service-reasons li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c7a2a4;
}

@media (max-width: 768px) {
  .focus-service-reasons ul {
    columns: 1;
  }
}

.focus-service-approach {
  background-color: #f8f9f8; /* soft neutral, consistent with focus pages */
  padding: 80px 20px;
}

.focus-service-approach-inner {
  max-width: 760px;
  margin: 0 auto;
}

.focus-service-approach-title {
  font-family: 'Hoefler Text', serif;
  font-size: 2.2rem;
  color: #4f484d;
  margin-bottom: 28px;
  text-align: center;
}

.focus-service-approach-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f5f5f;
  margin-bottom: 22px;
  text-align: center;
}

.focus-service-approach-text p:last-child {
  margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .focus-service-approach {
    padding: 60px 15px;
  }

  .focus-service-approach-title {
    font-size: 1.9rem;
  }
}


.focus-service-role {
  padding: 80px 20px;
  background-color: #d2d8db;
  text-align: center;
}

.focus-service-role-inner {
  max-width: 900px;
  margin: 0 auto;
}

.focus-service-role h3 {
  font-size: 1.9rem;
  margin-bottom: 28px;
  color: #4f484d;
}

.focus-service-role p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
  margin: 0 auto 18px;
}


.focus-service-report {
  padding: 40px 20px;
  background-color: #f0ebec;
  text-align: center;
}

.focus-service-report-inner {
  max-width: 900px;
  margin: 0 auto;
}


.focus-service-report h3 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: #4f484d;
}

.focus-service-report p {
  font-size: 1 rem;
  line-height: 1.7;
  color: #555;
  max-width: 760px;
  border-left: 4px solid #c7a2a4;
  padding-left: 20px;
  margin: 36px 0;
}

.focus-service-menopause-expect {
  padding: 90px 20px;
  background-color: #ffffff;
}

.focus-service-container {
  max-width: 900px;
  margin: 0 auto;
}

.focus-service-section-title {
  font-size: 1.9rem;
  margin-bottom: 32px;
  color: #4f484d;
  text-align: center;
}

.focus-service-menopause-expect p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

.focus-service-expect-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0 30px;
}

.focus-service-expect-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #5f5f5f;
}

.focus-service-expect-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c7a2a4;
  font-size: 1.2rem;
  line-height: 1;
}

.focus-service-related {
  padding: 80px 20px;
  background-color: #f6f7f6;
}

.focus-service-related-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.focus-service-related h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: #4f484d;
}

.focus-service-booking {
  padding: 80px 20px;
  background: #ffffff; /* soft neutral to separate sections */
  text-align: center;
}

.focus-service-booking-inner {
  max-width: 720px;
  margin: 0 auto;
}

.focus-service-booking h3 {
  font-size: 1.8rem;
  color: #2f3a3d;
  margin-bottom: 16px;
}

.focus-service-booking p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4f5b60;
  margin-bottom: 32px;
}

.focus-service-booking-button {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 40px;
  background-color: #c7a2a4;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.focus-service-booking-button:hover {
  background-color: #b78f92;

  transform: translateY(-2px);
}

/* Make sure buttons keep their color */
.focus-service-booking-button,
.focus-service-booking-button:visited,
.focus-service-booking-button:active,
.focus-service-booking-button:focus {
    color: #ffffff;  /* Force white text */
    text-decoration: none;
}

/* Hover and transition */
.focus-service-booking-button:hover {
    background-color: #b78f92;
    transform: translateY(-2px);
    color: #ffffff; /* Ensure hover doesn’t change text color */
}

.related-intro {
  font-size: 1rem;
  color: #5f5f5f;
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.related-card {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #4f484d;
}

.related-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f5f5f;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 600px) {
  .focus-service-related {
    padding: 60px 20px;
  }

  .related-intro {
    margin-bottom: 36px;
  }
}


.focus-service-cta {
  padding: 70px 20px;
  background-color: #d2d8db;
  text-align: center;
}

.focus-service-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.focus-service-cta p {
  font-size: 1.15rem;
  color: #4f484d;
  margin-bottom: 26px;
}

.focus-service-cta a {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background-color: #c7a2a4;
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.focus-service-cta a:hover {
  background-color: #b78f92;
  transform: translateY(-2px);
}

/* ==================================
   Perinatal Chiropractic Focus
   Pregnancy Section
   ================================== */

.focus-service-intro {
  padding: 110px 20px;
}

.focus-service-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT COLUMN */
.focus-service-intro-content {
  flex: 1;
  max-width: 560px;
}

/* IMAGE COLUMN */
.focus-service-intro-image {
  flex: 1;
  max-width: 480px;
}

.focus-service-intro-image img {
  width: 100%;
  height: auto;          /* keeps proportions */
  max-height: 500px;     /* limit vertical height */
  object-fit: cover;     /* ensures image fills the frame nicely */
  border-radius: 22px;
  display: block;
}


.focus-service-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 22px; /* matches your soft card language */
  display: block;
}

/* MOBILE STACKING */
@media (max-width: 900px) {
  .focus-service-intro-inner {
    flex-direction: column;
    gap: 40px;
  }

  .focus-service-intro-content,
  .focus-service-intro-image {
    max-width: 100%;
  }
}

.chiro_perinatal-intro-credentials {
  font-size: 0.95rem;
  color: #6a6a6a;
  margin-top: 12px;
  font-style:italic
}


.chiro_focus_perinatal {
  padding: 80px 20px;
  background-color: #e3dee1;
}

.chiro_focus_perinatal_container {
  max-width: 900px;
  margin: 0 auto;
}

/* MAIN HEADING */
.chiro_focus_perinatal_heading {
  font-family: 'Hoefler Text', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: #2f2f2f;
}

/* SUBHEADINGS */
.chiro_focus_perinatal_subheading {
  font-family: 'Hoefler Text', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 18px;
  color: #4f484d;
}

.chiro_focus_perinatal_text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
  max-width: 760px;
}

.chiro_focus_perinatal_symptoms {
  background-color: #ffffff;
  border-radius: 22px; /* matches your card language */
  padding: 40px 36px;
  margin: 50px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.chiro_focus_perinatal_list {
  padding-left: 0;
  list-style: none;
  columns: 2;
  column-gap: 50px;
  margin-top: 24px;
}

.chiro_focus_perinatal_list li {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f5f5f;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.chiro_focus_perinatal_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c7a2a4; /* your mauve accent */
}

.chiro_focus_perinatal_safety {
  margin-top: 40px;
  padding-left: 22px;
  border-left: 4px solid #c7a2a4;
  font-size: 0.95rem;
  font-style: italic;
  color: #5a5a5a;
  max-width: 760px;
}

/* MOBILE */
@media (max-width: 768px) {
  .chiro_focus_perinatal_list,
  .chiro_focus_perinatal_goals {
    columns: 1;
  }

  .chiro_focus_perinatal_heading {
    font-size: 2rem;
  }

  .chiro_focus_perinatal_subheading {
    font-size: 1.4rem;
  }
}


.chiro_focus_perinatal_image_break {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.chiro_focus_perinatal_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chiro_focus_perinatal_image_overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 242, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chiro_focus_perinatal_image_text {
  font-family: 'Hoefler Text', serif;
  font-size: 1.8rem;
  color: #4f484d;
  max-width: 600px;
  text-align: center;
  padding: 0 20px;
}

/* ==================================
   Postpartum Section Variation
   ================================== */

.chiro_focus_perinatal_postpartum {
  background-color: #e6e6e6;
}


/* ===============================
   CHIROPRACTIC PERINATAL - WHAT TO EXPECT
   =============================== */

.chiro_perinatal-what-to-expect {
  background-color: #f8f9f8; /* soft neutral background */
  padding: 80px 20px;
}

.chiro_perinatal-focus-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.chiro_perinatal-section-title {
  font-family: 'Hoefler Text', serif;
  font-size: 2.4rem;
  color: #4f484d;
  margin-bottom: 24px;
  text-align: center;
}

.chiro_perinatal-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f5f5f;
  margin-bottom: 30px;
}

.chiro_perinatal-expectation-text-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f5f5f;
  margin-bottom: 16px;
}

.chiro_perinatal-expectation-text-block strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #4f484d;
}

.therapy-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.therapy-accordion h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-button {
  background-color: #f9f9f9;
  color: #2c3e50;
  cursor: pointer;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #e8f0f4;
}

.accordion-button.active {
  background-color: #dceaf1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
  padding: 0 1.5rem;
}

.accordion-content p {
  margin: 1rem 0;
  line-height: 1.6;
  color: #444;
}

/* ===============================
   CONTACT PAGE
   =============================== */
   
.contact-hero {
  width: 100%;
  background-color: #dbcccf;          
  justify-content: center;           
  align-items: center;                
  text-align: center;                
  padding: 50px 20px 50px;
  width: 100%;
  padding: 50px 20px 50px; 
  position: relative;
  overflow: hidden;

}

.contact-hero-inner h1 {
  font-family: 'Hoefler Text', serif;
  font-size: 2.8rem;
  color: #4f484d;                     /* matches your headings */
  margin: 0;
}

/* ===============================
   CONTACT PAGE – PRIMARY CONTACT OPTIONS
   =============================== */
.contact-primary {
  background-color: #f4f6f6 ;   /* light neutral */
  padding: 80px 20px;
  text-align: center;
}

.contact-primary-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-microcopy {
  font-family: 'Hoefler Text', serif;
  font-size: 1.1rem;
  color: #5f5f5f;
  margin-bottom: 40px;
}

/* Cards Container */
.contact-cards {
  display: flex;
  justify-content: center;    /* center horizontally */
  gap: 40px;
  flex-wrap: wrap;            /* allows stacking on smaller screens */
}

/* Individual Card */
.contact-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
  flex: 1 1 220px;           /* flex-grow, flex-shrink, min width */
  max-width: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Card Heading */
.contact-card h3 {
  font-family: 'Hoefler Text', serif;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #4f484d;
}

/* Contact Links */
.contact-link {
  font-family: 'Hoefler Text', serif;
  font-size: 1.05rem;
  color: #b06b87;        /* accent color for links */
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #b06b87;
}

/* Book Appointment Button uses existing style */
.contact-card .booking-button {
  margin-top: 10px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background-color: #c7a2a4;  /* matches site primary accent */
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-card .booking-button:hover {
  background-color: #b88f91;
  transform: translateY(-2px);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    gap: 25px;
  }

  .contact-card {
    max-width: 100%;
  }
}


/* Location & Parking Section */
.location-parking {
  background-color: #d2d8db;
  padding: 60px 20px;
  font-family: 'Hoefler Text', serif;
}

.location-parking .container {
  max-width: 900px;
  margin: 0 auto;
}

.location-parking h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  color: #555;
}

.address {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
}

.map {
  flex: 1 1 300px;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    gap: 30px;
  }
}

.appointment-note {
  text-align: center;        /* Center the text */
  font-style: italic;        /* Italic for subtle emphasis */
  color: #666666;            /* Soft gray for low visual weight */
  font-family: 'Hoefler Text', serif;
  font-size: 1rem;           /* Matches body text size */
  margin: 40px 0;            /* Space above and below the section */
  max-width: 600px;          /* Keeps it readable on wide screens */
  margin-left: auto;
  margin-right: auto;
  
}

.faq-link {
  text-align: center;            /* Centered on the page */
  font-family: 'Hoefler Text', serif;
  font-size: 0.9rem;             /* Slightly smaller than body text */
  color: #888888;                /* Low visual weight gray */
  margin: 20px 0 60px 0;         /* Space above and below */
}

.faq-link a {
  text-decoration: underline;    /* Optional: subtle underline */
  color: #888888;                /* Match the text color */
  transition: color 0.3s ease;
}

.faq-link a:hover {
  color: #000000;                /* Darken slightly on hover for clarity */
}

.section-divider {
  border: none;
  border-top: 1px solid #e0e0e0; /* light gray */
  margin: 24px 0; /* space above and below */
  width: 100%;
}


.location-content {
  display: flex;
  gap: 40px;       /* space between text and map */
  flex-wrap: wrap;  /* stacks on smaller screens */
  align-items: flex-start;
}

.location-text {
  flex: 1 1 400px;  /* allows column to shrink/grow */
  min-width: 300px;
}

.location-map {
  flex: 1 1 400px;
  min-width: 300px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    align-items: center; /* centers both text and map */
    text-align: center;  /* optional, makes text look nicer */
  }

  .location-map iframe {
    width: 90%;   /* make map narrower but not full width */
    height: 300px; /* keeps map height reasonable */
  }
}

/* ===============================
	OUR TEAM PAGE
   =============================== */


/* Banner Section */
.page-banner-human {
  width: 100%;
  padding: 50px 20px 50px;
  position: relative;
  overflow: hidden;
  text-align: centre;
background: linear-gradient(
    90deg,
    #e5ebed 0%,
    #c7d2d7 50%,
    #a8b9bf 100%
),
radial-gradient(circle at 20% 40%, rgba(255,255,255,0.1), transparent 55%),
radial-gradient(circle at 80% 60%, rgba(255,255,255,0.08), transparent 50%);
}

/* Inner wrapper for isolation */
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align:center;
}

/* Banner H1 */
.page-banner-human h1 {
  font-family: 'Hoefler Text', "Century Gothic", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #4f484d;
  letter-spacing: 0.02em;
}


.team-summary {
  background: #ffffff;
  padding: 60px 20px 80px;
  text-align: center;
}

.team-summary .container {
  max-width: 850px;
  margin: 0 auto;
}

.team-summary h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #333;
}

.team-summary p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.team-intro {
  padding: 100px 20px; /* vertical + horizontal padding */
  background-color: #e3dee1; /* soft neutral background */
}

.team-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Text block */
.team-intro .intro-text h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #2f2f2f;
}

.team-intro .intro-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a5a5a;
  margin-bottom: 18px;
  max-width: 520px;
}

/* Image block */
.team-intro .intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 120px 24px 24px 120px; /* soft dome shape like other sections */
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Tablet adjustments */
@media (max-width: 900px) {
  .team-intro-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .team-intro .intro-text p {
    max-width: 100%;
  }

  .team-intro .intro-image img {
    border-radius: 100px 20px 20px 100px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .team-intro {
    padding: 70px 20px;
  }

  .team-intro .intro-text h2 {
    font-size: 1.9rem;
  }

  .team-intro .intro-image img {
    border-radius: 60px;
  }
}

/* Inclusive section spacing */
.inclusive-care {
  margin: 60px auto;
  padding: 0 20px; /* prevents edge overflow on mobile */
  max-width: 700px;
  box-sizing: border-box;
}

/* Text block with vertical bar */
.inclusive-text {
  margin: 0 auto;
  padding-left: 18px;
  border-left: 3px solid #444; /* vertical bar */
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.6;
  color: inherit;
  text-align: center;
}

/* Flag */
.inclusive-flag {
  display: block;
  margin: 0 auto 12px auto;
  width: 34px;
  height: auto;
  opacity: 0.9;
}


/* Full-width wrapper for background color */
.team-grid-section {
  width: 100%;
  background-color: #f5f5f5; /* Replace with your desired color */
  padding: 60px 0;           /* Vertical spacing for the section */
  box-sizing: border-box;     /* ensure padding is included in width */
}


.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 70px 50px;
  padding: 0px 20px;
  
  
}

.team-card {
  max-width: 360px;
  margin: 0 auto;
}

.team-image img {
  height: 240px;
}


/* Individual Team Card */
.team-card {
  background: #fff;
  border-radius: 16px 16px 8px 8px; /* rounded top more prominent */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Match service card container feel */
.team-card {
  border-radius: 22px;
}



/* IMAGE WRAPPER — big arch */
.team-image {
  height: 300px;
  overflow: hidden;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Tablet */
@media (max-width: 900px) {
  .team-image {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .team-image {
    height: 260px;
  }
}


/* Info */
.team-info {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-info h3 {
  margin: 0;
  font-family: 'Hoefler Text', serif;
  font-size: 1.25rem;
}

.team-info .title {
  font-family: "Century Gothic", sans-serif;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

.team-info .bio-teaser {
  font-family: "Century Gothic", sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin: 0.5rem 0;
}

.team-info .bio-full {
  font-family: "Century Gothic", sans-serif;
  font-size: 0.95rem;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0.5rem;
}



.bio-full {
  max-height: 0;           /* start hidden */
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0.5rem;
}


/* Read More Button */
.read-more-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: #0077cc;
  font-family: "Century Gothic", sans-serif;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #005fa3;
}

/* Expand/Collapse Functionality */
.read-more-btn.active + .bio-full {
  display: block;
}

.team-cta {
  background-color: #fffffff; 
  padding: 60px 20px;
  text-align: center;
}

.team-cta h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #333;
}

.team-cta p {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
  color: #555;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-buttons a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 24px;
  font-family: 'Century Gothic', sans-serif;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-primary {
  background-color: #c7a2a4; /* warm primary color */
  color: #ffffff !important;
}

.cta-primary:hover {
  background-color: #b78f92;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: white;
}


.cta-secondary {
  background-color: transparent;
  color: #354f5f !important;
  border: 2px solid #b78f92;
}

.cta-secondary:hover {
  background-color: #b78f92;
  color: white !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .team-cta h2 {
    font-size: 1.6rem;
  }

  .team-cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===============================
	FAQ
   =============================== */

.faq-intro-section {
  background: #ffffff;
  padding: 70px 20px 60px;
}

.faq-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.faq-intro-inner h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  margin-bottom: 14px;
  color: #354f5f;
}

.faq-intro-inner p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4c6271;
}

.faq-jump-links {
  padding: 30px 20px 60px;
}

.faq-jump-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.faq-jump-inner a {
  background: #f3eeee;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: center;
  font-family: 'Hoefler Text', serif;
  color: #354f5f;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-jump-inner a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.faq-groups {
  padding: 80px 20px;
}

.faq-group {
  max-width: 800px;
  margin: 0 auto 70px;
}

.faq-group h3 {
  font-family: 'Hoefler Text', serif;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #354f5f;
}

/* Accordion rows */

.faq-group details {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
}

.faq-group summary {
  cursor: pointer;
  font-family: 'Hoefler Text', serif;
  font-size: 1.05rem;
  color: #354f5f;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

/* Hide default arrow */
summary::-webkit-details-marker {
  display: none;
}

/* Plus / minus */

.faq-group summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-group details[open] summary::after {
  transform: rotate(45deg);
}

/* Answer */

.faq-group details p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

.faq-cta {
  background: #d2d8db;
  padding: 80px 20px;
}

.faq-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-inner h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #354f5f;
}

.faq-cta-inner p {
  color: #4c6271;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* ===============================
	GALLERY
   =============================== */

.clinic-gallery {
  padding: 60px 20px;
  background-color: #f9f8f7; /* soft neutral background */
  text-align: center;
}

.clinic-gallery h2 {
  font-family: 'Hoefler Text', serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: #333;
}

.clinic-gallery p {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gallery items */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.caption {
  font-family: 'Century Gothic', sans-serif;
  font-size: 0.95rem;
  color: #444;
  padding: 12px;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  .gallery-item img {
    height: 260px;
  }
}


/* ===============================
	REFERRALS
   =============================== */

.page-banner-human {
  background-color: #d7d3cf;
  padding: 80px 20px;
  text-align: center;
}

.page-banner-human h1 {
  font-family: 'Hoefler Text', serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #333;
}

.page-banner-human p {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.1rem;
  color: #555;
}


.referral-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align:center;
}

/* Main Content */
.referral-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.referral-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align:center;
}

/* Options */
.referral-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.referral-option {
  background-color: #ffffff;
  border-left: 4px solid #c7a2a4;
  padding: 24px 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  border-radius: 8px;
}

.referral-option h3 {
  font-family: 'Hoefler Text', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.referral-option p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
}

.referral-cta {
  text-align: center;
  padding: 40px 20px;
}

.referral-support {
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
}


.referral-cta .cta-primary {
  display: inline-block;
  background-color: #c7a2a4;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 28px;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.referral-cta .cta-primary:hover {
  background-color: #b78f92;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.cta-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 600px) {
  .referral-hero h1 {
    font-size: 1.8rem;
  }

  .referral-option {
    padding: 20px;
  }
}
