@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

/* Prevent oversized media from forcing horizontal scroll (Hostinger / mobile) */
img,
video,
canvas {
  max-width: 100%;
}

img,
video {
  height: auto;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #303a4d;
  background-color: #E0F7E0;
}

.button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* Stop horizontal bleed from wide children (maps, old 100vw patterns) */
  overflow-x: hidden;
}

.page {
  margin: 0;
  padding: 0;
  padding-top: 11.5rem;
  position: relative;
}

/* Home: tighter gap under fixed header (~6cm total isn’t possible without overlapping a ~10rem header—this is the strong safe reduction) */
.page.page--home {
  padding-top: 10.125rem;
}

.page.page--home .main-hero {
  padding-top: 0.5rem;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .page.page--home .main-hero {
    padding: 1rem 20px 4rem 20px;
  }
}

/* ************HEADER************ */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #E6E6FA;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  min-height: 8rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: nowrap;
  gap: 2rem;
}

.header__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.header__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #303A4D;
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.actions-header__contact {
  color: #303A4D;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.actions-header__contact:last-child {
  margin-bottom: 0.5rem;
}

.actions-header__contact:hover {
  opacity: 0.8;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-left: auto;
  padding-top: 1rem;
}

.menu__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.menu__item {
  position: relative;
}

.menu__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #E6E6FA;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.menu__item:hover .menu__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu__submenu-item {
  padding: 0.5rem 1rem;
}

.menu__submenu-link {
  color: #303A4D;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.menu__submenu-link:hover {
  opacity: 0.8;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #303A4D;
  transition: opacity 0.3s ease;
}

.menu__link:hover {
  opacity: 0.8;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.actions-header__button {
  margin-top: 0;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 110%;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.actions-header__button:hover {
  background-color: #ffffff;
  color: #303a4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
}

.icon-menu {
  display: none;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 0;
}

/* *****************HOME**************** */

.main-hero {
  background: #E0F7E0;
  padding: 3rem 0 60px 0;
  min-height: auto;
}

.main-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 1rem;
}

.main-hero__text {
  flex: 1;
  max-width: 600px;
  margin-top: 0;
}

.main-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.main-hero__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #303A4D;
  max-width: 65rem;
  margin-bottom: 2rem;
}

.main-hero__description p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.main-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

.main-hero__button svg {
  width: 20px;
  height: 20px;
}

.main-hero__contact {
  margin-top: 0;
  margin-bottom: 2rem;
}

.main-hero__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: inherit;
  font-weight: 600;
  color: #303A4D;
  text-decoration: underline;
  background: none;
  padding: 0;
  border-radius: 0;
}

.main-hero__phone-link:hover {
  opacity: 0.85;
}

.main-hero__phone-link svg {
  flex-shrink: 0;
  vertical-align: middle;
}

.main-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.main-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .main-hero {
    padding: 2rem 20px 4rem 20px;
    min-height: auto;
  }
  
  .main-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
  }
  
  .main-hero__text,
  .main-hero__image {
    max-width: 100%;
    margin-top: 0 !important;
  }
  
  .main-hero__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .main-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .main-hero__image {
    margin-top: 1.5rem !important;
    order: -1;
  }
  
  .main-hero__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  
  .main-hero__button {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .main-hero {
    padding: 2rem 15px 3rem 15px;
  }
  
  .main-hero__text {
    margin-top: 0 !important;
  }
  
  .main-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .main-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .main-hero__image {
    margin-top: 1rem !important;
    order: -1;
  }
  
  .main-hero__image img {
    max-height: 300px;
  }
  
  .main-hero__button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
  
  .main-hero__button svg {
    width: 18px;
    height: 18px;
  }
}

.main {
  position: relative;
  background: url("../images/Home/Deb_hero.webp") center -130% / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 0;
  padding-top: 8rem;
  background-color: #f8f9fa;
}.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.main__container {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0;
  padding: 0 0.9375rem;
  padding-top: 25rem;
  padding-bottom: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.main__caption {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: none;
}

.main__title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.main__text {
  max-width: 65rem;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #F5F5F5;
  font-weight: 600;
  padding: 0 1rem;
  text-shadow: none;
}

.main__text p {
  margin-bottom: 1.5rem;
}

.main__text p:last-child {
  margin-bottom: 0;
}

.main__button {
  margin-top: 0.5rem;
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.main__button:hover {
  background-color: #ffffff;
  color: #303a4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
}

.outro_home {
  position: relative;
  background: url("../images/Home/Deb_Brand_Photos-22_result.webp") 15% 25% / cover no-repeat;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.outro_home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.outro_home .outro__container {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  margin: 0;
  padding: 0 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.outro_home .outro__title,
.outro_home .outro__text {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.outro_home .outro__button {
  margin-left: 0;
}

@media (max-width: 768px) {
  .outro_home {
    background-position: center center;
    min-height: 100vh;
    padding: 4rem 20px 4rem 20px !important;
  }
  
  .outro__container {
    padding: 0 20px !important;
    padding-top: 4rem !important;
  }
  
  .outro__title {
    font-size: 2rem !important;
    margin-bottom: 3rem !important;
    text-align: left !important;
    padding-left: 1rem !important;
  }
  
  .outro__container > div {
    padding: 30px 15px !important;
    margin-top: 3rem !important;
  }
  
  .outro__container p {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }
  
  .outro__container cite {
    font-size: 1rem !important;
  }
  
  .outro__button {
    font-size: 1rem !important;
    padding: 0.8rem 1.5rem !important;
    margin-top: 2rem !important;
  }

  .outro_home .outro__container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .outro_home .outro__title {
    font-size: 2rem;
  }

  .outro_home .outro__text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .outro_home {
    background-position: center center;
    min-height: 100vh;
    padding: 3rem 15px 3rem 15px !important;
  }
  
  .outro__container {
    padding: 0 15px !important;
    padding-top: 3rem !important;
  }
  
  .outro__title {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
  }
  
  .outro__container > div {
    padding: 25px 12px !important;
  }
  
  .outro__container p {
    font-size: 1rem !important;
  }
  
  .outro__container cite {
    font-size: 0.9rem !important;
  }
  
  .outro__button {
    font-size: 0.9rem !important;
    padding: 0.7rem 1.2rem !important;
  }

  .outro_home .outro__container {
    padding: 0 1rem;
  }

  .outro_home .outro__title {
    font-size: 1.75rem;
  }
}

/* ************ABOUT HERO**************** */

.about-hero {
  background: #E0F7E0;
  padding: 3rem 0 30px 0;
  min-height: auto;
}

.about-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 1rem;
}

.about-hero__text {
  flex: 1;
  max-width: 600px;
  margin-top: 0;
}

.about-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-hero__title--one-line {
  font-size: 2.75rem;
}

.about-hero__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #303A4D;
  max-width: 65rem;
}

.about-hero__description p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

/* All About Your Practitioner hero: align top of image with first sentence (below title) */
.about-hero:not(.about-hero--section) .about-hero__image {
  margin-top: calc(5.7rem + 1.5cm);
}

.about-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-hero__feature-image {
  margin: 0;
  margin-top: -2cm;
  max-width: 500px;
  width: 100%;
}

.about-hero__feature-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 5px solid #4a6b4a;
  box-shadow: 0 0 0 2px #E0F7E0, 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-hero__feature-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

/* Hero when used as a section in the middle of the page (e.g. About page) */
.about-hero--section {
  padding: 3rem 0 3rem 0;
}
.about-hero--section .about-hero__text {
  margin-top: 0;
  /* Allow the interventions gallery to use more width on the About page */
  max-width: 100%;
}
.about-hero--section .about-hero__image {
  margin-top: 0;
}

/* How I Work: interventions photo gallery */
.interventions-gallery {
  display: grid;
  /* Aim for a 2-row gallery layout on desktop:
     with 9 images total, 5 columns yields 2 rows (one empty cell). */
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1.25rem;
  row-gap: 2.5rem; /* extra space for captions between the two rows */
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  width: 100%;
}
.interventions-gallery__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.interventions-gallery__caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #303A4D;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.interventions-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(48, 58, 77, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .interventions-gallery {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.75rem;
    row-gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .about-hero--section {
    padding: 2rem 20px 2rem 20px;
  }
  .about-hero {
    padding: 2rem 20px 3rem 20px;
    min-height: auto;
  }
  
  .about-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
  }
  
  .about-hero__text,
  .about-hero__image {
    max-width: 100%;
    margin-top: 0 !important;
  }
  
  .about-hero__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-hero__image {
    margin-top: 1.5rem !important;
  }
  
  .about-hero__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  
  .about-hero__feature-image img {
    max-height: none;
    object-fit: fill;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 15px 2rem 15px;
  }
  
  .about-hero__text {
    margin-top: 0 !important;
  }
  
  .about-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .about-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .about-hero__image {
    margin-top: 1rem !important;
  }
  
  .about-hero__image img {
    max-height: 300px;
  }
  
  .about-hero__feature-image img {
    max-height: none;
  }
}

/* ************ABOUT**************** */

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image--second {
  margin-top: 1rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.about__psychology-text {
  font-size: 1rem;
  color: #303A4D;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about__image--second img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About page: padding from header to My Approach to Healing */
#my-approach .about__container {
  padding-top: 3rem;
}

/* About page: move hero image down 3cm (parallel to My Approach to Healing text) */
#my-approach .about__image {
  margin-top: 3cm;
}

/* About page: move just the writing up 2cm */
#my-approach .about__content {
  margin-top: -2cm;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 2rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.outro_about {
  background: url("../images/Home/Deb_Brand_Photos-22.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.services-hero {
  background: #E0F7E0;
  padding: 3rem 0 60px 0;
  min-height: auto;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 1rem;
}

.services-hero__text {
  flex: 1;
  max-width: 600px;
  margin-top: 0;
}

.services-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services-hero__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #303A4D;
  max-width: 65rem;
}

.services-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
}

.services-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 2rem 20px 3rem 20px;
    min-height: auto;
  }
  
  .services-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
  }
  
  .services-hero__text,
  .services-hero__image {
    max-width: 100%;
    margin-top: 0 !important;
  }
  
  .services-hero__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .services-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .services-hero__image {
    margin-top: 1.5rem !important;
    order: -1;
  }
  
  .services-hero__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 2rem 15px 2rem 15px;
  }
  
  .services-hero__text {
    margin-top: 0 !important;
  }
  
  .services-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .services-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .services-hero__image {
    margin-top: 1rem !important;
    order: -1;
  }
  
  .services-hero__image img {
    max-height: 300px;
  }
}

.main_services {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/Services/IMG_8966_result.webp") top center / cover no-repeat;
}

.services {
  background-color: #E0F7E0;
}

.services__container {
  padding-top: 3.5rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Services page: four cards (Adult, Child, Youth, Supervision) */
.services__row--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.services__row--four .item-services__image {
  max-width: 100%;
  height: 340px;
}

.services__row--four .item-services__title {
  font-size: 1.25rem;
}

.services__row--four .item-services__text {
  font-size: 0.95rem;
  max-width: none;
}

.services__row--four .item-services__text--youth ul,
.services__row--four .item-services__text--child ul,
.services__row--four .item-services__text--adult ul,
.services__row--four .item-services__text--supervision ul {
  list-style-type: disc;
}

@media (max-width: 1200px) {
  .services__row--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .services__row--four .item-services__image {
    height: 380px;
  }
}

.item-services {
  background-color: #E0F7E0;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease 0s;
}

.item-services:hover {
  background-color: #d0e7d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Service cards: primary CTA + optional letter links */
.services__row--four .item-services__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  /* Keeps the "Book a Session" buttons aligned across cards
     even when some cards have extra letter links below. */
  min-height: 6.75rem;
}

.services__row--four .item-services__letter-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.35;
  text-align: center;
}

.services__row--four .item-services__letter-links a {
  color: #303a4d;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.services__row--four .item-services__letter-links a:hover {
  color: #1e2633;
}

/* Standalone “letter” pages linked from Services cards */
.letter-page {
  padding: 2.5rem 1rem 4rem;
  background-color: #f8f9fa;
}

.letter-page__container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(48, 58, 77, 0.08);
}

.letter-page__breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.letter-page__breadcrumb a {
  color: #303a4d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.letter-page__title {
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  line-height: 1.25;
  color: #303a4d;
}

.letter-page__body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #303a4d;
}

.letter-page__body p {
  margin: 0 0 1rem;
}

.letter-page__body p:last-child {
  margin-bottom: 0;
}

.letter-page__body h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  color: #303a4d;
}

.letter-page__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.letter-page__body li {
  margin-bottom: 0.5rem;
}

.letter-page__body li:last-child {
  margin-bottom: 0;
}

.letter-page__cta {
  margin: 2rem 0 0;
}

/* Child letter page: image beside text */
.letter-page__container--split {
  max-width: 56rem;
  padding-top: 0;
}

.letter-page__banner {
  margin: 0 0 1.25rem;
  padding: 1.25rem 1rem 0;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(180deg, rgba(224, 247, 224, 0.45) 0%, #fff 100%);
  overflow: hidden;
}

.letter-page__banner img {
  display: block;
  width: 100%;
  max-width: calc(100% - 2cm); /* 2 cm narrower than full column */
  aspect-ratio: 21 / 9;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0.75rem;
}

.letter-page__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
}

@media (min-width: 600px) {
  .letter-page__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.letter-page__gallery-item {
  margin: 0;
  padding: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f8f9fa;
  box-shadow: 0 4px 14px rgba(48, 58, 77, 0.08);
}

.letter-page__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  max-height: 14rem;
}

.letter-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.letter-page__main {
  min-width: 0;
}

/* Right column: pop-it stacked above yoga (child letter) */
.letter-page__aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.letter-page__aside .letter-page__figure {
  margin: 0;
  padding: 0;
}

.letter-page__aside .letter-page__figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(48, 58, 77, 0.12);
}

.letter-page__aside .letter-page__figure--pop-offset {
  margin-top: 0.5cm;
}

/* Youth letter: first column image nudged down 1.5 cm from default pop-offset */
.letter-page--youth .letter-page__aside .letter-page__figure--pop-offset {
  margin-top: 2cm;
}

.letter-page__aside .letter-page__figure--yoga-offset {
  margin-top: 2cm;
}

.letter-page__aside .letter-page__figure--magic-boy-offset {
  margin-top: 2cm;
}

.letter-page__aside .letter-page__figure--aside-stack-4 {
  margin-top: 2cm;
}

/* Child letter: centred sensory photo before Contact */
.letter-page__accent-photo {
  grid-column: 1 / -1;
  margin: 1cm auto 0;
  padding: 0;
  width: 100%;
  max-width: 24rem; /* ~3/4 of previous 32rem */
}

.letter-page__accent-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(48, 58, 77, 0.12);
}

/* Inline CTA inside letter body (e.g. youth “Check out the Youth Space”) */
.letter-page__body-cta {
  margin: 0 0 1rem;
}

.letter-page__closing {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(48, 58, 77, 0.08);
  font-style: italic;
  color: #3d4a5c;
}

.letter-page__figure {
  margin: 0;
  padding: 0;
}

.letter-page__figure img {
  display: block;
  width: 100%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(48, 58, 77, 0.12);
}

@media (min-width: 768px) {
  .letter-page__layout {
    grid-template-columns: 1fr minmax(200px, 15rem);
    gap: 1.75rem;
    align-items: start;
  }

  .letter-page__cta--full {
    grid-column: 1 / -1;
  }

  .letter-page__aside {
    position: sticky;
    top: 1.25rem;
  }

  .letter-page__aside .letter-page__figure img {
    margin: 0;
    max-width: none;
  }

  .letter-page__layout > .letter-page__figure {
    position: sticky;
    top: 1.25rem;
  }

  .letter-page__layout > .letter-page__figure img {
    margin: 0;
    max-width: none;
  }

  .letter-page__layout > .letter-page__figure--collage {
    margin-top: -1cm;
  }
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../images/Services/pexels-pixabay-261055.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 75rem;
  margin: 0 auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* **************QUOTE POPUP**************** */

.quote-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.quote-popup.show {
  display: flex;
  opacity: 1;
}

.quote-popup__content {
  background: linear-gradient(135deg, #E0F7E0, #f8f9fa);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 1.2s ease-in-out;
}

.quote-popup.show .quote-popup__content {
  transform: scale(1);
}

.quote-popup__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #303A4D;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.quote-popup__close:hover {
  color: #666;
}

.quote-popup__quote p {
  font-size: 1.5rem;
  font-style: italic;
  color: #303A4D;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-popup__quote cite {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
  padding: 1.5rem 0;
  background-color: #E6E6FA;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  position: relative;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__acknowledgement {
  margin: 1rem 0;
  padding: 0.75rem;
  border-top: 1px solid rgba(48, 58, 77, 0.1);
  border-bottom: 1px solid rgba(48, 58, 77, 0.1);
}

.footer__acknowledgement p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #303A4D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  color: #303A4D;
  text-decoration: none;
}

.footer__policy:hover {
  opacity: 0.8;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  color: #303A4D;
}

.footer__name {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #303A4D;
  margin-bottom: 0.25rem;
}

.footer__business {
  font-size: 0.9rem;
  line-height: 1.2;
  color: #303A4D;
  margin-bottom: 0.5rem;
}

.footer__contact-item {
  color: #303A4D;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer__contact-item:hover {
  color: #98FB98;
}

.footer__social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.footer__social-icon:hover {
  fill: #98FB98;
}

/* Credential badges row in site footer — left-aligned on desktop to balance absolute images on the right */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-self: flex-start;
  width: 100%;
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
  max-width: 100%;
  /* Reserve space so badges don’t sit under Psychology Today / AU images on wide screens */
  padding-right: min(280px, 38vw);
}

.footer__badge {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 3px 10px rgba(48, 58, 77, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__badge img {
  display: block;
  max-width: 120px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer__logo {
  font-size: 1.25rem;
  text-align: center;
  max-width: 280px;
  line-height: 1.3;
  color: #303A4D;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer__badge img {
    max-width: 100px;
    max-height: 68px;
  }
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

@media (max-width: 768px) {
  .main_pages {
    min-height: auto !important;
    padding: 10rem 20px 3rem 20px !important;
  }
  
  .main__container_pages {
    padding-top: 0 !important;
    max-width: 100% !important;
    text-align: center;
  }
  
  .main_pages .main__title {
    font-size: 2rem !important;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .main__text_pages {
    max-width: 100%;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .main_pages {
    padding: 8rem 15px 2rem 15px !important;
  }
  
  .main_pages .main__title {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }
  
  .main__text_pages {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: calc(140px - 3cm);
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

/* Align the Child & Youth image with the section title */
.services-page__item#child-youth .services-page__column {
  align-items: flex-start;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

/* Tighten spacing specifically for the Clinical Supervision card */
.services-page__item#clinical-supervision .services-page__text {
  margin-bottom: 28px;
}

/* Nudge the Child & Youth CTA button slightly right */
.services-page__item#child-youth .services-page__button {
  margin-left: 2.5cm;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.services-page__play-collage {
  margin: calc(2.5rem) auto 0; /* moved down ~1cm */
  max-width: 540px; /* ~75% of the previous 720px */
  padding: 0 1rem;
  text-align: center;
}

.services-page__play-collage img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(48, 58, 77, 0.1);
}

@media (max-width: 768px) {
  .services-page__container {
    padding-top: calc(70px - 3cm);
  }
  
  .services-page__column {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  /* cross-axis is horizontal when stacked; keep centered */
  .services-page__item#child-youth .services-page__column {
    align-items: center;
  }
  
  .services-page__item {
    margin-bottom: 60px;
  }
  
  .services-page__item:not(:last-child) {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  
  .services-page__title {
    font-size: 2rem;
  }
  
  .services-page__text {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .services-page__item#clinical-supervision .services-page__text {
    margin-bottom: 1.25rem;
  }
  
  .services-page__img {
    max-width: 100%;
    height: auto;
  }

  .services-page__button {
    width: 100%;
    text-align: center;
  }

  .services-page__item#child-youth .services-page__button {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .services-page__container {
    padding-top: max(1rem, calc(60px - 2cm));
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .services-page__title {
    font-size: 1.8rem;
  }
  
  .services-page__text {
    font-size: 0.95rem;
  }
  
  .services-page__item {
    margin-bottom: 40px;
  }
  
  .services-page__item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

/* ****************CONTACT PAGE****************/

.contact-hero {
  background: #E0F7E0;
  padding: 3rem 0 60px 0;
  min-height: auto;
}

.contact-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 1rem;
}

.contact-hero__text {
  flex: 1;
  max-width: 600px;
  margin-top: 0;
}

.contact-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-hero__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #303A4D;
  max-width: 65rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.contact-hero__button svg {
  width: 24px;
  height: 24px;
}

.contact-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
}

.contact-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 2rem 20px 3rem 20px;
    min-height: auto;
  }
  
  .contact-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
  }
  
  .contact-hero__text,
  .contact-hero__image {
    max-width: 100%;
    margin-top: 0 !important;
  }
  
  .contact-hero__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .contact-hero__image {
    margin-top: 1.5rem !important;
    order: -1;
  }
  
  .contact-hero__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  
  .contact-hero__button {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 16rem 15px 2rem 15px;
  }
  
  .contact-hero__text {
    margin-top: 0 !important;
  }
  
  .contact-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .contact-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .contact-hero__image {
    margin-top: 1rem !important;
    order: -1;
  }
  
  .contact-hero__image img {
    max-height: 300px;
  }
  
  .contact-hero__button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  
  .contact-hero__button svg {
    width: 20px;
    height: 20px;
  }
}

.main_contact {
  position: relative;
  background: url("../images/Home/Deb_hero.webp") center -130% / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  padding-top: 8rem;
  background-color: #f8f9fa;
}

.main_contact .main__container_pages {
  text-align: left;
  padding-top: 400px;
  max-width: 40rem;
  margin: 0;
  padding-left: 20px;
  position: absolute;
  left: 0;
}

.main_contact .outro__title {
  text-align: left !important;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 3rem;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

@media (max-width: 768px) {
  .contact__container {
    flex-direction: column;
    gap: 3rem;
    padding-top: 2.5rem;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .contact__title {
    font-size: 2rem;
    text-align: center;
  }
  
  .contact__text {
    text-align: center;
  }
  
  .connect-contact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact__container {
    padding-top: 2rem;
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .contact__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f5f5f5;
  border-radius: 50%;
  flex-shrink: 0;
}

.connect-contact__icon svg {
  width: 24px;
  height: 24px;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.connect-contact__item:hover {
  opacity: 0.8;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

/* Google Maps / embeds — never use 100vw (causes horizontal overflow on narrow screens) */
.map iframe,
.page__map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(260px, 50vmin, 482px);
  filter: none;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */

.pricing-hero {
  background: linear-gradient(135deg, #E0F7E0 0%, #f8f9fa 100%);
  padding: calc(150px - 1.5cm) 0 80px 0;
  min-height: auto;
}

.pricing-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 0;
}

.pricing-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  min-height: auto;
  position: relative;
  z-index: 2;
}

.pricing-hero__text {
  flex: 1;
  max-width: 650px;
}

.pricing-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-hero__description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #303A4D;
}

.pricing-hero__description p {
  margin: 0;
}

.pricing-hero__image {
  flex: 0 0 auto;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  object-fit: cover;
  object-position: center 24%;
}

/* Decorative images around the pricing hero/cards (non-interactive) */
.pricing-decor {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

/* Small labels under each decorative therapy image */
.pricing-decor-caption {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-size: 0.9rem;
  color: #303A4D;
  background: rgba(248, 249, 250, 0.65);
  padding: 0.35rem 0.6rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(48, 58, 77, 0.08);
  backdrop-filter: blur(2px);
  text-align: center;
  white-space: nowrap;
}

.pricing-decor-wrap {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

/* When wrapped, keep the caption directly underneath the image */
.pricing-decor-wrap .pricing-decor {
  position: static;
  display: block;
}

.pricing-decor-wrap .pricing-decor-caption {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  margin-top: 0.5rem;
}

.pricing-decor-wrap--hero-1 {
  top: 84%;
  left: 2.25rem;
  width: 140px;
}

.pricing-decor-wrap--hero-2 {
  top: 84%;
  left: 11.25rem;
  width: 140px;
}

.pricing-decor-wrap--hero-3 {
  top: 84%;
  left: 20.5rem;
  width: 140px;
}

.pricing-decor-caption--hero-1 {
  top: auto;
  left: auto;
}

.pricing-decor-caption--hero-2 {
  top: auto;
  left: auto;
}

.pricing-decor-caption--hero-3 {
  top: auto;
  left: auto;
}

.pricing-decor--hero-1 {
  top: 84%;
  left: 2.25rem;
  right: auto;
  width: 140px;
  transform: rotate(-4deg);
  opacity: 0.9;
}

.pricing-decor--hero-2 {
  top: 84%;
  left: 11.25rem;
  right: auto;
  width: 140px;
  transform: rotate(0deg);
  opacity: 0.88;
}

.pricing-decor--cards-1 {
  top: 82%;
  left: -5.25rem;
  width: 160px;
  transform: rotate(-6deg);
  opacity: 0.95;
}

.pricing-decor--hero-3 {
  top: 84%;
  left: 20.5rem;
  right: auto;
  width: 140px;
  transform: rotate(4deg);
  opacity: 0.86;
}

.pricing-decor--cards-2 {
  top: 88%;
  left: calc(-5rem + 3cm);
  width: 150px;
  transform: rotate(-10deg);
  opacity: 0.95;
}

.pricing-decor--cards-3 {
  top: 86%;
  right: -6.75rem;
  width: 210px;
  transform: rotate(12deg);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pricing-decor {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: calc(8.5rem - 1.5cm) 1.5rem 3rem 1.5rem;
  }
  
  .pricing-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  
  .pricing-hero__text {
    max-width: 100%;
  }
  
  .pricing-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-hero__description {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .pricing-hero__image {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }
  
  .pricing-hero__image img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: calc(7.5rem - 1.5cm) 1rem 2.5rem 1rem;
  }
  
  .pricing-hero__title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .pricing-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .pricing-hero__image {
    max-width: 180px;
  }
}

.main_pricing {
  background: url("../images/Services/Deb_Brand_Photos-93_result.webp") top center / contain no-repeat;
}

/* ******************PRIVACY POLICY PAGE******************** */

.privacy-policy-hero {
  background: linear-gradient(135deg, #E0F7E0 0%, #f8f9fa 100%);
  padding: 2rem 0 3rem 0;
  min-height: auto;
}

.privacy-policy-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-policy-hero__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: auto;
}

.privacy-policy-hero__text {
  flex: 1;
  max-width: 650px;
}

.privacy-policy-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 2rem;
}

.privacy-policy-hero__description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #303A4D;
}

.privacy-policy-hero__description p {
  margin: 0;
}

.privacy-policy-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-policy-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .privacy-policy-hero {
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  
  .privacy-policy-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  
  .privacy-policy-hero__text {
    max-width: 100%;
  }
  
  .privacy-policy-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .privacy-policy-hero__description {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .privacy-policy-hero__image {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }
  
  .privacy-policy-hero__image img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .privacy-policy-hero {
    padding: 2rem 1rem 2.5rem 1rem;
  }
  
  .privacy-policy-hero__title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .privacy-policy-hero__description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .privacy-policy-hero__image {
    max-width: 180px;
  }
}

/* ******************EXPECTATIONS SECTION******************** */

.expectations {
  background-color: #E0F7E0;
  padding: 5rem 0;
}

.expectations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expectations__title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #303A4D;
}

.expectations__intro {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #303A4D;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.expectations__videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.expectations__video-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectations__video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.expectations__video-wrapper {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.expectations__video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000;
}

.expectations__video-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #303A4D;
  margin-bottom: 0.75rem;
}

.expectations__video-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .expectations {
    padding: 4rem 1.5rem;
  }
  
  .expectations__videos {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expectations__intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .expectations {
    padding: 3rem 1rem;
  }
  
  .expectations__video-item {
    padding: 1rem;
  }
  
  .expectations__video-title {
    font-size: 1.1rem;
  }
  
  .expectations__video-description {
    font-size: 0.95rem;
  }
}

.pricing {
  background-color: #F5F5F5;
  padding: 2rem 0;
}

.pricing__container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 0;
}

.pricing__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
  min-height: 500px;
  position: relative;
  z-index: 2;
}

.pricing__column {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing__column:hover {
  transform: translateY(-5px);
  background-color: #E6E6FA;
  opacity: 0.9;
}

.pricing__item {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

.item-pricing__info {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e1e4eb;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-pricing__label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303A4D;
  margin-bottom: 1rem;
}

.item-pricing__cost {
  font-size: 3rem;
  font-weight: 700;
  color: #303A4D;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.item-pricing__period {
  font-size: 1rem;
  color: #666;
}

.item-pricing__list {
  display: grid;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.item-pricing__item::before {
  content: "✓";
  color: #4A90E2;
  font-weight: bold;
}

.item-pricing__button {
  display: inline-block;
  text-align: center;
  padding: 1rem 2rem;
  background-color: #E0F7E0;
  color: #303a4d;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.item-pricing__button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.outro_pricing {
  background: url("../images/Services/Deb_Brand_Photos-47.jpg") center / cover no-repeat;
}

/* Desktop-only stagger so the pricing cards feel less uniform */
@media (min-width: 992px) {
  .pricing__row {
    align-items: flex-start;
  }

  .pricing__column:nth-child(1) {
    margin-top: 0;
  }

  .pricing__column:nth-child(2) {
    margin-top: 0;
  }

  .pricing__column:nth-child(3) {
    margin-top: 0;
  }

  .pricing__column:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .pricing__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing__row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing {
    padding: 4rem 0;
  }
  
  .item-pricing__label {
    font-size: 1.25rem;
  }
  
  .item-pricing__cost {
    font-size: 2.5rem;
  }
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #E0F7E0;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }

  .header__contact {
    display: none;
  }
  
  .header__navigation {
    margin-left: 0;
    padding-top: 0;
  }

  .header__left {
    padding-top: 0;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icon-menu {
    display: block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 2.5rem;
    gap: 50px;
    padding-bottom: 80px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: #fff;
    border-bottom: 1px solid #000;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
  }

  .actions-header__button {
    padding: 0.75rem;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .about__image {
    max-width: 100%;
    height: auto;
  }
  
  .about__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  
  .about__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about__text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about__button {
    width: 100%;
    text-align: center;
    max-width: 300px;
  }
  
  .about__gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
  }
  
  .about__gallery img {
    height: 180px !important;
  }
}

@media (max-width: 480px) {
  .about__container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .about__gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .about__gallery img {
    height: 150px !important;
  }
  
  .about__image {
    max-width: 100%;
    height: auto;
  }
  
  .about__image img {
    max-height: 350px;
  }
  
  .about__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .about__text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .about__text p:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .about__button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .services__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo {
    font-size: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }

  .header__logo {
    font-size: 1.25rem;
    padding-left: 4rem;
    background-size: 3rem;
    min-height: 3rem;
  }

  .main__title {
    font-size: 3rem;
  }
  
  .main__text {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer__policy,
  .footer__logo,
  .footer__copyright {
    justify-self: center;
    text-align: center;
  }

  .footer__logo {
    font-size: 1.5rem;
    max-width: 320px;
  }

  .footer__policy,
  .footer__copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .actions-header__contact {
    display: none;
  }

  .footer__contact {
    margin: 0.5rem 0;
  }

  .footer__container {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .footer__logo {
    font-size: 1.1rem;
    max-width: 240px;
  }

  .footer__name {
    font-size: 1rem;
  }

  .footer__contact-item {
    font-size: 0.85rem;
  }
}

/* Base link styles */
a {
  color: #303A4D;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Header specific styles */
.header a {
  color: #303A4D;
}

.header a:hover {
  color: #303A4D;
  opacity: 0.8;
}

/* Remove all color transitions */
.actions-header__contact,
.menu__link,
.footer__policy,
.footer__contact-item,
.connect-contact__item {
  transition: opacity 0.3s ease;
}

/* Remove all color changes on hover */
.actions-header__contact:hover,
.menu__link:hover,
.footer__policy:hover,
.footer__contact-item:hover,
.connect-contact__item:hover {
  color: #303A4D;
  opacity: 0.8;
}

/* Button styles */
.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #303a4d;
  background-color: #E0F7E0;
}

.button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Remove the general link hover effect */
a:hover:not(.button):not(.actions-header__button) {
  color: #303A4D;
  opacity: 0.8;
}

/* Keep button background colors but update hover */
.actions-header__button {
  background-color: #E0F7E0;
  color: #303a4d;
}

.actions-header__button:hover {
  background-color: #E0F7E0;
  color: #303a4d;
  opacity: 0.8;
  transform: translateY(-2px);
}

/* ****************PRIVACY POLICY PAGE**************** */
.privacy__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 2rem 0.938rem;
}

.privacy__section {
  margin-bottom: 3rem;
}

.privacy__section:last-child {
  margin-bottom: 0;
}

.privacy__title {
  margin-bottom: 2rem;
  color: #303A4D;
}

.privacy__content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #303A4D;
  margin-bottom: 1rem;
}

.privacy__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy__content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.privacy__content ul:last-child {
  margin-bottom: 0;
}

.privacy__content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy__content li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy__container {
    padding: 1.5rem 0.938rem;
  }

  .privacy__section {
    margin-bottom: 2rem;
  }

  .privacy__content {
    padding: 1.5rem;
  }

  .privacy__title {
    margin-bottom: 1.5rem;
  }

  .privacy__content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 47.999rem) {
  .header__navigation {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .menu__body {
    flex-direction: column;
    gap: 1rem;
  }
  
  .menu__list {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .menu__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
  
  .menu__submenu-item {
    padding: 0.25rem 0;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .main {
    background-position: center 80%;
    background-size: cover;
    padding-bottom: 60px !important;
    height: auto;
    min-height: 120vh;
  }
  
  .main__container {
    padding-top: 35rem !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .main__text {
    padding: 0 !important;
  }
  
  .main__text p {
    font-size: 1rem;
    padding: 15px !important;
    margin-bottom: 15px !important;
  }
  
  .main__text strong {
    font-size: 1.15em !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
  }
  
  .main__button {
    font-size: 0.9em !important;
    padding: 0.7rem 1.5rem !important;
    margin-top: 1rem !important;
  }
  
  .main__button svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .main {
    background-position: center 5%;
    background-size: cover;
    padding-bottom: 40px !important;
    min-height: 100vh;
    padding-top: 0 !important;
  }
  
  .main__container {
    padding-top: 5rem !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .main__text p {
    font-size: 0.9rem;
    padding: 12px !important;
    margin-bottom: 12px !important;
  }
  
  .main__text strong {
    font-size: 1.1em !important;
  }
  
  .main__button {
    font-size: 0.8em !important;
    padding: 0.6rem 1.2rem !important;
  }
  
  .main__button svg {
    width: 16px !important;
    height: 16px !important;
  }
}

.footer__image {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: 250px;
  height: auto;
}

.footer__image--australian {
  top: 80px;
  right: 3rem;
  max-width: 150px;
}

.footer__image--australian img {
  mix-blend-mode: multiply;
  filter: brightness(1.1) contrast(1.1);
}

.footer__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .footer__image {
    position: relative;
    top: auto;
    right: auto;
    max-width: 200px;
    margin: 1rem auto 0;
    text-align: center;
  }
  
  .footer__image--australian {
    top: auto;
    right: auto;
    max-width: 120px;
    margin: 0.5rem auto 0;
  }
}

/* ************SUPERVISION PAGE************ */

.supervision-hero {
  background: #E0F7E0;
  padding: 80px 0 60px 0;
  min-height: auto;
}

.supervision-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.supervision-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 1rem;
}

.supervision-hero__text {
  flex: 1;
  max-width: 600px;
  margin-top: 0;
}

.supervision-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.supervision-hero__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #303A4D;
  max-width: 65rem;
}

.supervision-hero__description p {
  margin-bottom: 1rem;
}

.supervision-hero__description ul {
  list-style: none;
  padding-left: 0;
}

.supervision-hero__description li {
  margin-bottom: 1rem;
}

.supervision-hero__image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5.5rem;
}

.supervision-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .supervision-hero {
    padding: 80px 20px 3rem 20px;
    min-height: auto;
  }
  
  .supervision-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    min-height: auto;
  }
  
  .supervision-hero__text,
  .supervision-hero__image {
    max-width: 100%;
    margin-top: 0 !important;
  }
  
  .supervision-hero__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .supervision-hero__description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }
  
  .supervision-hero__description ul {
    margin-left: 0;
  }
  
  .supervision-hero__image {
    margin-top: 1.5rem !important;
    order: -1;
  }
  
  .supervision-hero__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .supervision-hero {
    padding: 60px 15px 2rem 15px;
  }
  
  .supervision-hero__text {
    margin-top: 0 !important;
  }
  
  .supervision-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .supervision-hero__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .supervision-hero__description li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .supervision-hero__image {
    margin-top: 1rem !important;
    order: -1;
  }
  
  .supervision-hero__image img {
    max-height: 300px;
  }
}

.supervision__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 4rem 0.938rem;
}

.supervision__hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.supervision__content {
  flex: 1;
}

.supervision__title {
  margin-bottom: 1.5rem;
  color: #303A4D;
}

.supervision__text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #303A4D;
}

.supervision__image {
  flex: 1;
  max-width: 500px;
}

.supervision__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Supervision Features Section */
.supervision-features__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 4rem 0.938rem;
  background-color: #F8F9FA;
}

.supervision-features__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #303A4D;
}

.supervision-features__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.supervision-features__item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supervision-features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.supervision-features__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #303A4D;
}

.supervision-features__text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #303A4D;
}

.supervision-features__text ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.supervision-features__text li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: #303A4D;
}

/* Supervision Benefits Section */
.supervision-benefits__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 4rem 0.938rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.supervision-benefits__content {
  flex: 1;
}

.supervision-benefits__title {
  margin-bottom: 1.5rem;
  color: #303A4D;
}

.supervision-benefits__text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #303A4D;
}

.supervision-benefits__text ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.supervision-benefits__text ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #303A4D;
}

.supervision-benefits__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #5a9e5a;
}

.supervision-benefits__text li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #303A4D;
}

.supervision-benefits__image {
  flex: 1;
  max-width: 500px;
}

.supervision-benefits__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Soften and slightly reduce the circle-of-capacity image */
.supervision-benefits__image img.supervision-benefits__image--soft {
  width: 88%;
  margin: 0 auto;
  display: block;
  opacity: 0.65;
}

/* Supervision Process Section */
.supervision-process__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 4rem 0.938rem;
  background-color: #F8F9FA;
}

.supervision-process__title {
  text-align: center;
  margin-bottom: 3rem;
  color: #303A4D;
}

.supervision-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.supervision-process__step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.supervision-process__step:hover {
  transform: translateY(-5px);
}

.supervision-process__number {
  width: 60px;
  height: 60px;
  background: #E0F7E0;
  color: #303A4D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.supervision-process__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #303A4D;
}

.supervision-process__content p {
  line-height: 1.6;
  color: #303A4D;
}

/* Main supervision page background */
.main_supervision {
  background: linear-gradient(135deg, #E0F7E0 0%, #F0F8F0 100%);
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

/* Responsive Design for Supervision Page */
@media (max-width: 768px) {
  .supervision__hero {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .supervision__image {
    max-width: 100%;
  }
  
  .supervision-benefits__container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .supervision-benefits__image {
    max-width: 100%;
  }
  
  .supervision-features__row {
    grid-template-columns: 1fr;
  }
  
  .supervision-process__steps {
    grid-template-columns: 1fr;
  }
  
  .supervision__container,
  .supervision-features__container,
  .supervision-benefits__container,
  .supervision-process__container {
    padding: 2rem 0.938rem;
  }
}

/* Mobile Responsiveness for Practice Section */
@media (max-width: 768px) {
  .practice {
    padding: 4rem 20px 4rem 20px !important;
  }
  
  .practice__container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  
  .practice__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .practice__content {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }
  
  .practice__text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left;
  }
  
  .practice__text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .practice__text ul {
    padding-left: 1rem;
  }
  
  .practice__text li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .practice__image {
    max-width: 100% !important;
    margin-top: 0 !important;
    order: -1;
  }
  
  .practice__image img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
  }
  
  .practice__button {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem !important;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .practice {
    padding: 3rem 15px 3rem 15px !important;
  }
  
  .practice__container {
    padding: 0 0.5rem !important;
  }
  
  .practice__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .practice__content {
    gap: 1.5rem !important;
  }
  
  .practice__text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .practice__text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .practice__text ul {
    padding-left: 0.8rem;
  }
  
  .practice__text li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .practice__image img {
    max-height: 300px;
  }
  
  .practice__button {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Mobile Responsiveness for Supervision Hero Section */
@media (max-width: 768px) {
  .main_supervision {
    padding: 120px 0 40px 0 !important;
  }
  
  .main__container_pages {
    max-width: 100% !important;
    width: 95% !important;
    padding: 0 15px !important;
  }
  
  .main__title {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
  
  .main__text_pages {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  .main__text_pages p {
    margin-bottom: 15px !important;
    font-size: 0.95rem !important;
  }
  
  .main__text_pages div {
    margin-left: 10px !important;
  }
}

@media (max-width: 480px) {
  .main_supervision {
    padding: 100px 0 30px 0 !important;
  }
  
  .main__container_pages {
    width: 98% !important;
    padding: 0 10px !important;
  }
  
  .main__title {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
  }
  
  .main__text_pages {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .main__text_pages p {
    margin-bottom: 12px !important;
    font-size: 0.9rem !important;
  }
  
  .main__text_pages div {
    margin-left: 5px !important;
  }
}

@media (max-width: 480px) {
  .supervision-features__item,
  .supervision-process__step {
    padding: 1.5rem;
  }
  
  .supervision-process__number {
    width: 50px;
    height: 50px;
  }
}

/* Mobile Header and Navigation */
@media (max-width: 768px) {
  .header__container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    min-height: auto;
  }

  .header__left {
    text-align: left;
    min-width: 0;
    flex: 1 1 auto;
  }

  .header__logo {
    font-size: 1.5rem;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
  }

  .header__contact {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .actions-header__contact {
    font-size: 0.9rem;
  }

  .header__navigation {
    flex-shrink: 0;
    margin-left: 0;
    padding-top: 0;
  }

  .menu__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu__link {
    padding: 0.5rem 1rem;
    display: block;
  }

  .actions-header__button {
    margin-top: 1rem;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header__logo {
    font-size: 1.3rem;
  }
  
  .actions-header__contact {
    font-size: 0.8rem;
  }
  
  .menu__link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .actions-header__button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .footer__contact {
    order: 1;
  }

  .footer__badges {
    order: 2;
    padding-right: 0;
    justify-content: center;
    align-self: center;
  }
  
  .footer__acknowledgement {
    order: 3;
    font-size: 0.9rem;
  }
  
  .footer__bottom {
    order: 4;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer__image {
    order: 5;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 1.5rem 0.5rem;
  }
  
  .footer__name,
  .footer__business {
    font-size: 0.9rem;
  }
  
  .footer__contact-item {
    font-size: 0.8rem;
  }
  
  .footer__acknowledgement p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .footer__copyright {
    font-size: 0.8rem;
  }
}

/* Mobile Pricing Section Fixes */
@media (max-width: 768px) {
  .pricing__row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .pricing__column {
    width: 100%;
    max-width: 100%;
  }
  
  .pricing__item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .item-pricing {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  
  .item-pricing__cost {
    font-size: 2.5rem !important;
    text-align: center;
  }
  
  .item-pricing__label {
    text-align: center;
    font-size: 1.2rem;
  }
  
  .item-pricing__period {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .item-pricing__list {
    text-align: left;
    margin: 1.5rem 0;
  }
  
  .item-pricing__item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
  }
  
  .item-pricing__button {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing__row {
    gap: 1rem;
  }
  
  .item-pricing {
    padding: 1.5rem 1rem;
  }
  
  .item-pricing__cost {
    font-size: 2rem !important;
  }
  
  .item-pricing__label {
    font-size: 1.1rem;
  }
  
  .item-pricing__period {
    font-size: 0.8rem;
  }
  
  .item-pricing__item {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
}

/* Mobile Contact Page Hero Section */
@media (max-width: 768px) {
  .main_contact {
    padding: 0 !important;
    height: auto;
    min-height: 120vh;
    background-position: center 70%;
    background-size: cover;
  }
  
  .main_contact .outro__container {
    padding-top: 0 !important;
  }
  
  .main_contact .outro__container > div {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    max-width: 100% !important;
    padding: 32rem 20px 3rem 20px !important;
  }
  
  .main_contact .main__title {
    font-size: 2rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
  }
  
  .main_contact p {
    font-size: 1rem !important;
    text-align: center !important;
    padding: 15px !important;
    line-height: 1.5 !important;
  }
  
  .main_contact .main__phone-icon {
    text-align: center !important;
    margin-top: 1.5rem !important;
  }
  
  .main_contact .main__phone-icon a {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.5rem !important;
  }
  
  .main_contact .main__phone-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 480px) {
  .main_contact {
    background-position: center 70%;
    min-height: 120vh;
  }
  
  .main_contact .outro__container > div {
    padding: 30rem 15px 2rem 15px !important;
  }
  
  .main_contact .main__title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }
  
  .main_contact p {
    font-size: 0.9rem !important;
    padding: 12px !important;
  }
  
  .main_contact .main__phone-icon a {
    font-size: 0.85rem !important;
    padding: 0.7rem 1.2rem !important;
  }
  
  .main_contact .main__phone-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
}

.item-pricing__note {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #303A4D;
  font-weight: 500;
}

@media (max-width: 480px) {
  .expectations {
    padding: 3rem 1rem;
  }
  
  .expectations__video-item {
    padding: 1rem;
  }
  
  .expectations__video-title {
    font-size: 1.1rem;
  }
  
  .expectations__video-description {
    font-size: 0.95rem;
  }
}

.qualifications {
  background-color: #f5f5f5;
  padding: 4.5rem 0;
}

.qualifications__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.qualifications__title {
  margin-bottom: 1.5rem;
  color: #303A4D;
}

.qualifications__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #303A4D;
}

.qualifications__badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.qualifications__badge {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualifications__badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.qualifications__badge img {
  max-width: 120px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .qualifications__badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .qualifications {
    padding: 4rem 1.5rem;
  }

  .qualifications__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .qualifications__badge {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .qualifications {
    padding: 3.5rem 1rem;
  }

  .qualifications__badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .qualifications__badge {
    padding: 0.9rem;
    border-radius: 12px;
  }

  .qualifications__badge img {
    max-width: 140px;
    max-height: 70px;
  }
}

.faq-hero {
  background: linear-gradient(135deg, #E0F7E0 0%, #f8f9fa 100%);
  padding: 2cm 0 70px 0;
  min-height: auto;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-hero__content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.faq-hero__text {
  flex: 1;
  max-width: 650px;
}

.faq-hero__title {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #303A4D;
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-hero__description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #303A4D;
}

.faq-hero__description p {
  margin: 0;
}

.faq-hero__image {
  flex: 0 0 auto;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 18rem 1.5rem 3.5rem 1.5rem;
  }

  .faq-hero__content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .faq-hero__image {
    order: -1;
    max-width: 240px;
  }

  .faq-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-hero__description {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    padding: 16rem 1rem 3rem 1rem;
  }

  .faq-hero__image {
    max-width: 200px;
  }

  .faq-hero__title {
    font-size: 2rem;
  }
}

.faq {
  background-color: #ffffff;
  padding: 4.5rem 0;
}

.faq__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__title {
  color: #303A4D;
  margin-bottom: 1rem;
}

.faq__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #303A4D;
  max-width: 720px;
  margin: 0 auto;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.faq__item {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq__item[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding-bottom: 0.15rem;
}

.faq__item summary {
  font-size: 1.15rem;
  font-weight: 600;
  color: #303A4D;
  cursor: pointer;
  outline: none;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5b6b;
}

.faq__item ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
  text-align: left;
}

.faq__item ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5b6b;
  margin-bottom: 0.4rem;
}

@media (max-width: 992px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 3.5rem 1rem;
  }

  .faq__item {
    padding: 1.25rem 1.5rem;
  }

  .faq__item summary {
    font-size: 1.05rem;
  }
}

/* Video poster overlay – play button and softer look before play */
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(48, 58, 77, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.video-poster-overlay.is-hidden {
  pointer-events: none;
  opacity: 0;
}
.video-poster-overlay:hover {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
}
.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(224, 247, 224, 0.95);
  color: #303a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-poster-overlay:hover .video-play-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}
.video-play-icon svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}
