/* Global body styles */
body {
  font-family: "proxima nova", Verdana, Futura, Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-decoration: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

h2 {
  color: #000000;
  text-decoration: none;
  font-size: 2.5em;
  line-height: 1.2em;
}

h4 {
  color: #000000;
  text-decoration: none;
  font-size: 1.3em;
  line-height: .7em;
  
}

p {
  color: #000000;
  text-decoration: none;
   line-height: 1.5em;
  font-size: 1.2em;
}

p6 {
  color: #000000;
  text-decoration: none;
   line-height: 1.5em;
  font-size: 1.2em;
}

li {
  line-height: 1.5em;
  padding-bottom: 5px;
}

h3 {
  color: #000000;
  text-decoration: none;
  font-size: 1.5em;
  line-height: 1.4em;
}

h3 a {
  color: #000000;
  font-size: 1em;
  line-height: 1.4em;
}

/* Age group links in paeds section */
a.age-link {
  color: inherit;
  text-decoration: underline;
  line-height: inherit;
}

a.age-link:hover {
  color: inherit;
  text-decoration: underline;
}


/* ================= HEADER ================= */

/* Main header container */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5% 12px 1%;
  background: #ffffff;
}

/* Logo in header left */
.header-left img.logo {
  width: auto;
  height: 60px;
  margin: 0;
  padding: 0;
}

/* Header right section with button and burger */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem; /* spacing between Book button and burger */
}

/* Header navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav a {
  color:#9ab74b;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

/* Dropdown styles */
.header-nav .dropdown {
  position: relative;
  display: inline-block;
}

.header-nav .dropbtn {
  color: #9ab74b;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
}

.header-nav .dropbtn i {
  margin-left: 5px;
  font-size: 12px;
}

.header-nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.header-nav .dropdown-content a {
  color: #9ab74b;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: transparent;
}

.header-nav .dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Green background for BOOK link */
.header-nav .dropdown-content a[href="book.html"] {
  background-color: #9ab74b;
  color: white;
}

.header-nav .dropdown-content a[href="book.html"]:hover {
  background-color: #8aa43f;
  color: white;
}

.header-nav .dropdown:hover .dropdown-content {
  display: block;
}

.header-nav .dropdown:hover .dropbtn {
  color: #8aa43f;
}

/* Book Now button */
.button {
  background-color: white;
  border: none;
  color: #9ab74b;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 12px;
  float: none;
  margin-top:10px;
}

.book-button {
  background-color:#9ab74b;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 12px;
  float: none;
  margin-top:10px;
}



/* Icon styles for menu and footer */
.footer-icons .icon,
.menu-icons .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #444;
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.footer-icons .icon:hover,
.menu-icons .icon:hover {
  background: #0077ff;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ================= NAV ================= */

/* Side navigation menu, hidden by default */
.sidenavi {
  display: none;
}

.sidenavi ul {
  display: none;
}

/* Show side navigation when active */
.sidenavi.show {
  display: block;
  padding-top: 20px;
}

.sidenavi.show ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background-color: #9ab74b0b;
  animation: myAnimation 0.5s;
}

/* Animation for side navigation */
@keyframes myAnimation {
  0% {
    background-color: #9ab74b00;
    transform: translateX(-100%);
  }
}

/* Links in side navigation */
.sidenavi.show li a {
  display: block;
  padding: 10px 14px;
  color:#9ab74b;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  text-align: right;
}

.sidenavi.show li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Green background for BOOK link in main sidenavi */
.sidenavi.show li > a[href="book.html"] {
  background-color: #9ab74b;
  color: white;
}

.sidenavi.show li > a[href="book.html"]:hover {
  background-color: #8aa43f;
  color: white;
}

/* Submenu styles */
.sidenavi .submenu {
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(154, 183, 75, 0.2);
}

.sidenavi .submenu.show {
  display: block !important;
}

.sidenavi .submenu li a {
  padding-left: 30px;
  font-size: 13px;
}

/* Green background for BOOK link in submenu */
.sidenavi .submenu li a[href="book.html"] {
  background-color: #9ab74b;
  color: white;
}

.sidenavi .submenu li a[href="book.html"]:hover {
  background-color: #8aa43f;
  color: white;
}

.sidenavi .submenu-toggle i {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Menu icons container */
.menu-icons {
  text-align: right;
  padding-right: 10px;
}

/* ================= FOOTER ================= */

/* Footer container */
.footer {
  display: block;
  padding: 40px 0;
  margin-bottom: 40px;
}

/* Copyright text */
.copywright {
  padding-left: 20%;
  float: left;
  color: #666666;
}

/* Footer icons */
.footer-icons {
  display: flex;
  float: right;
  gap: 0.5rem;
  padding-right: 15%;
}

/* ================= BURGER ================= */

/* Burger menu button */
.burger {
  margin-top: 0; /* remove the big top gap */
  margin-left: 10px;
  display: flex;
  width: 40px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  overflow: visible;
  position: relative;
}

.burger span {
  display: block;
  width: 32px;
  height: 4px;
  background: #9ab74b;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.burger span:nth-child(1) {
  top: 6px;
}

.burger span:nth-child(2) {
  top: 14px;
}

.burger span:nth-child(3) {
  top: 22px;
}

/* Active burger animation */
.burger.active span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100vw;
  height: 500px;
  background-image: url('images/legs.jpeg');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  transition: background-image 1s ease-in-out;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(154, 183, 75, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text img {
  filter: brightness(0) invert(1);
  width: 500px;
  height: auto;
  margin: 0;
}

.hero-line {
  width: 100px;
  height: 2px;
  background-color: white;
  border: none;
  margin-bottom: 20px;
}

.hero-text h2 {
  margin: 0 0 10px 0;
  font-size: 1.5em;
  color: #555;
}

.hero-text p {
  margin: 5px 0;
  font-size: 1.2em;
  color: white;
  max-width: 500px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

/* ================= SERVICES ================= */

.services-section {
  text-align: center;
  padding: 40px 0;
  background-color: #ffffff;
}

.services-section h1 {
  font-size: 3em;
  color: #555;
  margin: 0 0 20px 0;
}

.services-line {
  width: 200px;
  height: 2px;
  background-color: #555;
  border: none;
  margin: 0 auto;
}

/* ================= SERVICES GRID ================= */

.services-grid {
  padding: 40px 5%;
  background-color: #ffffff;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 40px;

}

.grid-item {
  font-weight: bold;
  padding: 20px;
  padding-bottom: 0px;
  text-align: center;
  font-size: 1.8em;
  color: #7a7a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item a {
  color: #7a7a7a;
  text-decoration: none;
}

.grid-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ================= REVIEWS GRID ================= */

.reviews-grid {
  padding: 0 0 40px 0;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0px;
}


.review-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}



.review-item.slide-from-left {
  transform: translateX(-100px);
}

.review-item.slide-from-right {
  transform: translateX(100px);
}

.review-item.slide-from-bottom {
  transform: translateY(100px);
}

.review-item.fade-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ================= PAIN SECTION ================= */

.pain-section {
  position: relative;
  width: 100vw;
  min-height: 3000px;
  height: auto;
  background-image: url('images/painimg.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pain-textbox {
  background-color: rgba(231, 230, 230, 0.7);
  padding: 60px;
  margin: 40px 0 0 0;
  max-width: 70%;
  min-height: 200px;
}

.pain-divider {
  width: 100%;
  height: 2px;
  background-color: #555;
  border: none;
  margin: 20px auto;
}
/* ================= testimonials SECTION ================= */
.reviews-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-box {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid #f2f2f2;
}

.stars {
  font-size: 1.4rem;
  color: #f5b400; /* gold stars */
  margin-bottom: 0.8rem;
}

.review-text {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-name {
  font-weight: 600;
  color: #444;
  margin-top: 0.5rem;
}
/* ================= Paeds SECTION ================= */

.paeds-section {
  position: relative;
  width: 100vw;
  min-height: 4400px;
  height: auto;
  background-image: url('images/baby1.jpeg');
  background-size: 100% auto;
  background-position: center top 40px;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.paeds-section a {
  color: #000000;
  text-decoration: underline;
}

.paeds-img {
  float: right;
  width: 30%;
  margin: 0 0 20px 20px;
  display: block;
  clear: none;
  shape-outside: margin-box;
  shape-margin: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ================= Testimonials SECTION ================= */
.testimonials-section {
  position: relative;
  width: 100vw;
  min-height: 5500px;
  height: auto;
  background-image: url('images/baby.jpeg');
  background-size: cover;
  background-position: center 80px;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.training-img {
  float: right;
  width: 30%;
  clear: right;
  margin: 0 0 20px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ================= Sports Massage SECTION ================= */
.sportsmassage-section {
  position: relative;
  width: 100vw;
  min-height: 3000px;
  height: auto;
  background-image: url('images/legs.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ================= CST Adults SECTION ================= */
.cst-adults-section {
  position: relative;
  width: 100vw;
  min-height: 3000px;
  height: auto;
  background-image: url('images/cstadult.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ================= Training SECTION ================= */
.training-section {
  position: relative;
  width: 100vw;
  min-height: 3500px;
  height: auto;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('images/training.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ================= About Me SECTION ================= */
.aboutme-section {
  position: relative;
  width: 100vw;
  min-height: 3000px;
  height: auto;
  background-image: url('images/legs.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.aboutme-img {
  float: right;
  width: 30%;
  margin: 0 0 20px 20px;
  clear: right;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-content-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
}

.contact-info {
  width: 30%;
  flex-shrink: 0;
}

.contact-info h1 {
  color: #000000;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-info h2 {
  color: #000000;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #000000;
  margin: 5px 0;
}

.contact-info a {
  color: #9ab74b;
  text-decoration: underline;
}

.contact-map {
  width: 70%;
  flex-shrink: 0;
}

.contact-map iframe {
  width: 100%;
  height: 800px;
  border: 0;
}/* ================= Contact SECTION ================= */
.contact-section {
  position: relative;
  width: 100vw;
  min-height: 3000px;
  height: auto;
  background-image: url('images/legs.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 40px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.pain-section,
.paeds-section,
.testimonials-section,
.sportsmassage-section,
.cst-adults-section,
.training-section,
.aboutme-section,
.contact-section {
  min-height: 0;
  padding-bottom: 60px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 70%;
  background-color: rgba(231, 230, 230, 0.7);
  padding: 60px;
  margin: 40px auto 0 auto;
}

.contact-box .contact-info {
  flex: 0 0 calc(30% - 10px);
}

.contact-box .map {
  flex: 0 0 calc(70% - 10px);
}

.contact-box .map iframe {
  width: 100%;
  height: 800px;
}

.contact-image-row {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-inline-img {
  width: calc((100% - 24px) / 3);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Make the contact page text box wider to accommodate the map */
.contact-section .pain-textbox {
  max-width: 90% !important;
  padding: 60px;
}

/* ================= Book Page ================= */
.book-text-box {
  max-width: 90%;
  background-color: rgba(231, 230, 230, 0.7);
  padding: 40px;
  margin: 40px auto 20px auto;
}

.book-text-box h1 {
  color: #000000;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.book-text-box h2 {
  color: #000000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.book-text-box p {
  color: #000000;
  line-height: 1.6;
}

.book-text-box ul {
  color: #000000;
  line-height: 1.8;
  margin-left: 20px;
}

.book-text-box .book {
  width: 100%;
  margin-top: 30px;
}

.book-text-box .book iframe {
  width: 100%;
  min-height: 1000px;
}

/* ================= review SECTION ================= *//* ================= review SECTION ================= */
.review-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
  font-size: 1.7em;
  line-height: 1.5;
}

.review-overlay2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
  font-size: 1.7em;
  line-height: 1.5;
}

.review-overlay3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 20px;
  padding-bottom: 40px; 
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
  font-size: 1.7em;
  line-height: 1.5;
}

.review-overlay p, .review-overlay2 p, .review-overlay3 p {
  color: white;
}

.review-overlay a, .review-overlay2 a, .review-overlay3 a {
  color: #ffffff;
  text-decoration: underline;
  display: inline;
  margin: 0;
  padding: 0;
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  background: #ffffff;
  color: #111111;
  border: 1px solid #e3e3e3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  max-width: 720px;
  width: calc(100% - 40px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95em;
  color: #111111;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  border: 1px solid #9ab74b;
  background: #9ab74b;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9em;
}

.cookie-actions button.secondary {
  background: #ffffff;
  color: #2b2b2b;
  border-color: #c8c8c8;
}

.cookie-actions button:hover {
  filter: brightness(0.95);
}

/* ================= MOBILE ================= */

@media screen and (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }
}

@media screen and (max-width: 800px){
    .header{height: 50px}
    .button {float: right; margin-top: 20px;}
    .footer-icons{ display: flex; justify-content: center; align-items: center; padding-top: 20px; padding-left: 0px; padding-right: 0px;}
    .burger{display: flex;}
    .header-nav { display: none; }
    .hero-text img { width: 300px;}
    .hero-text p {padding: 0 10px; font-size: 1.1em; max-width: 90%;}
    .hero-text h2 {margin: 5px 0 10px 0; font-size: 1.4em; }
    .services-grid {
        padding: 20px 5%;
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 10px;
    }
    .grid-item {
        padding: 15px 0px;
        font-size: 1.2em;
        word-wrap: break-word;
    }
  .reviews-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .review-item:nth-child(1) {
    order: 1;
  }
  .review-item:nth-child(2) {
    order: 2;
  }
  .review-item:nth-child(3) {
    order: 4;
  }
  .review-item:nth-child(4) {
    order: 3;
  }
  .review-item:nth-child(5) {
    order: 5;
  }
  .review-item:nth-child(6) {
    order: 6;
  }
  .grid-item {
    padding-bottom: 10px;
  }
  .services-section {padding-bottom: 0px;}
  .review-overlay a, .review-overlay2 a, .review-overlay3 a {
    font-size: 0.7em;
    }
  .review-overlay, .review-overlay2, .review-overlay3 {
    font-size: 0.7em;
    }
  .pain-textbox {
    max-width: 85%;
    padding: 15px;
    font-size: 0.9em;
  }
  .pain-textbox h2 {
    font-size: 1.8em;
  }
  .hero.hide-on-submenu {
    display: none;
  }
  .contact-box {
    flex-direction: column;
    max-width: 90%;
    padding: 30px;
  }
  .contact-box .contact-info,
  .contact-box .map {
    flex: 1 1 100%;
    width: 100%;
  }
  .contact-box .map iframe {
    height: 400px;
  }
  .reviews-grid .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }
  .review-box {
    padding: 1.2rem;
  }
  .stars {
    font-size: 1.2rem;
  }
  .aboutme-img {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .paeds-img {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .training-img {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .paeds-section {
    background-size: 100% auto;
  }
  .pain-section {
    background-size: 100% auto;
  }
  .pain-section,
  .paeds-section,
  .testimonials-section,
  .sportsmassage-section,
  .cst-adults-section,
  .training-section,
  .aboutme-section,
  .contact-section {
    padding-top: 30px;
  }
  .pain-textbox,
  .contact-box,
  .book-text-box {
    margin-top: 0;
  }
}
