@charset "UTF-8";
body {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #000000;
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Oswald", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
p {
  max-width: 711px;
  margin: 0;
}

ul,
ol {
  margin: 0.5rem 0;
}

p.small {
  font-size: 0.75rem;
  line-height: 1rem;
}

h1 {
  color: #abcb42;
  font-size: 2.75rem;
  line-height: 3.438rem;
}
@media screen and (min-width: 960px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}
@media screen and (min-width: 1280px) {
  h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 3rem;
  color: #000000;
}

h3 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #000000;
}

h4 {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5rem;
}

a {
  font-weight: 600;
  text-decoration-line: underline;
  color: #426a00;
}

.btn,
.book,
#contact form button {
  --btn-padding-y: 0.7rem;
  --btn-padding-x: 1.15rem;
  --btn-font-size: 0.95rem;
  --btn-line-height: 1.25rem;
  --btn-min-height: 2.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  min-height: var(--btn-min-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  text-decoration: none;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: var(--btn-font-size);
  font-weight: 700;
  line-height: var(--btn-line-height);
  white-space: normal;
  max-width: 100%;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 120ms ease;
}

.btn,
.book,
#contact form button,
.btn--brand {
  background-color: #abcb42;
  color: #000000;
  border-color: transparent;
  box-shadow: 0 2px 5px rgba(26, 26, 26, 0.12);
}

.btn:hover,
.book:hover,
#contact form button:hover,
.btn:focus-visible,
.book:focus-visible,
#contact form button:focus-visible,
.btn--brand:hover,
.btn--brand:focus-visible {
  background-color: #7b9f05;
  box-shadow: 0 8px 16px rgba(26, 26, 26, 0.15);
}

.btn:active,
.book:active,
#contact form button:active,
.btn--brand:active {
  transform: translateY(1px);
}

.btn--secondary {
  background-color: #ffffff;
  color: #426a00;
  border-color: rgba(204, 204, 204, 0.8);
  box-shadow: none;
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background-color: #f6f6f6;
  border-color: #abcb42;
  color: #426a00;
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.08);
}

.btn--sm {
  --btn-padding-y: 0.5rem;
  --btn-padding-x: 0.9rem;
  --btn-font-size: 0.85rem;
  --btn-line-height: 1.125rem;
  --btn-min-height: 2.25rem;
}

.btn--md {
  --btn-padding-y: 0.7rem;
  --btn-padding-x: 1.15rem;
  --btn-font-size: 0.95rem;
  --btn-line-height: 1.25rem;
  --btn-min-height: 2.75rem;
}

.btn--lg {
  --btn-padding-y: 0.85rem;
  --btn-padding-x: 1.5rem;
  --btn-font-size: 1rem;
  --btn-line-height: 1.35rem;
  --btn-min-height: 3.1rem;
}

.btn--block {
  width: 100%;
}

.btn--block-mobile {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .btn--block-mobile {
    width: auto;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(8, minmax(0.5rem, 1fr));
  gap: 24px;
  align-items: end;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 960px) {
  .wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .wrapper {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .wrapper {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

section.wrapper > *,
footer div > * {
  grid-column: 1/9;
}
@media screen and (min-width: 1280px) {
  section.wrapper > *,
  footer div > * {
    grid-column: 3/8;
  }
}

html {
  height: 100%;
}

body {
  min-height: 100%;
}

nav,
#menu {
  height: 100%;
}

section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

section#about {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  position: relative;
}
.modal .modal-content .close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
}
.modal .modal-content .profile-wrapper img {
  border-radius: 8px;
  margin-bottom: 1.5rem;
  width: 80%;
}
.modal .modal-content .profile-wrapper h3 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #000000;
  margin: 0 0 0.5rem;
}
.modal .modal-content .profile-wrapper .position {
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}
.modal .modal-content .profile-wrapper .position .days-info,
.modal .modal-content .profile-wrapper .position .age-info,
.modal .modal-content .profile-wrapper .position .fees-info,
.modal .modal-content .profile-wrapper .position .clinics-info,
.modal .modal-content .profile-wrapper .position .languages-info {
  border-radius: 4px;
}
.modal .modal-content .profile-wrapper .position .day,
.modal .modal-content .profile-wrapper .position .age-range,
.modal .modal-content .profile-wrapper .position .fee,
.modal .modal-content .profile-wrapper .position .role,
.modal .modal-content .profile-wrapper .position .clinic,
.modal .modal-content .profile-wrapper .position .language {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin: 0.25rem;
  background-color: #d9d9d9;
  color: #000000;
}
.modal .modal-content .profile-wrapper .bioText {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
.modal .modal-content .profile-wrapper .bioText .extra {
  color: #5c5c5c;
  font-size: 0.75rem;
  /* Let this default to display: none, so "read more" can toggle it */
  display: none;
}
.modal .modal-content .profile-wrapper .bioText .readmore {
  color: #426a00;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.modal .modal-content .profile-wrapper .book {
  margin-top: 1rem;
}

nav {
  /* Base (mobile) styles -- menu is hidden offscreen until the hamburger is clicked. */
  position: fixed;
  top: 0;
  left: -308px;
  width: 308px;
  height: 100%;
  transition: transform 0.3s ease;
  z-index: 999;
  /* Slide the entire nav into view when “open” */
}
nav.open {
  left: 0;
}
nav {
  /* The #menu container (vertical in mobile) */
}
nav #menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  padding: 1rem;
  width: 308px;
  background-color: #000000;
  position: relative;
  z-index: 999;
}
nav #menu span {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.75rem;
}
nav #menu span a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}
nav #menu span a:hover {
  font-weight: 600;
  text-decoration: underline;
}
nav #menu .nav-dropdown {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.75rem;
}
nav #menu .nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
nav #menu .nav-dropdown summary::-webkit-details-marker {
  display: none;
}
nav #menu .nav-dropdown summary::after {
  content: "v";
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}
nav #menu .nav-dropdown summary:hover, nav #menu .nav-dropdown summary:focus-visible {
  font-weight: 600;
  text-decoration: underline;
}
nav #menu .nav-dropdown[open] summary::after {
  transform: rotate(180deg);
}
nav #menu .nav-dropdown__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-left: 0.5rem;
}
nav #menu .nav-dropdown__menu a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}
nav #menu .nav-dropdown__menu a:hover {
  font-weight: 600;
  text-decoration: underline;
}
nav #menu {
  /* Social media links */
}
nav #menu .social-links {
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
nav {
  /* Dark backdrop behind nav when open (on mobile) */
}
nav #menu_backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 308px;
  width: calc(100% - 308px); /* Cover entire screen */
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
nav {
  /* When nav is open, show the backdrop */
}
nav.open #menu_backdrop {
  display: block;
}
nav {
  /* Larger screens: fix nav at top horizontally */
}
@media screen and (min-width: 1280px) {
  nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.95);
    /* Hide the backdrop on big screens */
  }
  nav #menu_backdrop {
    display: none;
  }
  nav {
    /* Re-style #menu to be a horizontal bar */
  }
  nav #menu {
    flex-direction: row;
    width: auto;
    gap: 2rem;
    padding: 1rem 2rem;
    background-color: transparent; /* so it blends with nav background */
    align-items: center;
    /* Remove underlines / borders for horizontal nav items */
  }
  nav #menu span {
    border-bottom: none;
    padding-bottom: 0;
  }
  nav #menu span a {
    color: #000000;
    font-weight: 400;
  }
  nav #menu .nav-dropdown {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
  }
  nav #menu .nav-dropdown summary {
    color: #000000;
    font-weight: 400;
  }
  nav #menu .nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 0;
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 1000;
  }
  nav #menu .nav-dropdown__menu a {
    color: #000000;
  }
  nav #menu .nav-dropdown[open] .nav-dropdown__menu {
    display: flex;
  }
}

#menu_button {
  position: fixed;
  top: 1rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #000000;
  padding: 0.75rem 1rem;
  border-radius: 0px 16px 16px 0px;
  z-index: 1001;
  transition: left 0.3s ease;
}
#menu_button img {
  width: 24px;
  height: 24px;
}
#menu_button span {
  font-weight: 700;
  color: #ffffff;
  display: none;
}
@media screen and (min-width: 1280px) {
  #menu_button {
    display: none;
  }
}
#menu_button.movedRight {
  left: 308px;
}

header {
  background: url(../images/repeating-plus-background.png);
}
header p {
  color: #ffffff;
  align-self: start;
}
@media screen and (min-width: 960px) {
  header p {
    padding-bottom: 2.5rem;
  }
}
header > * {
  grid-column: 1/9;
}
@media screen and (min-width: 960px) {
  header p,
  header h1,
  header > img {
    grid-column: 1/5;
  }
}
@media screen and (min-width: 1680px) {
  header p,
  header h1,
  header > img {
    grid-column: 2/5;
  }
}
@media screen and (min-width: 960px) {
  header picture {
    grid-column: 5/9;
    grid-row: 1/4;
    align-self: center;
    justify-self: center;
  }
}
header #logo {
  padding-top: 3rem;
  width: 240px;
  max-width: 60vw;
  height: auto;
  justify-self: end;
}
@media screen and (min-width: 600px) {
  header #logo {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1280px) {
  header #logo {
    padding-top: 4rem;
    justify-self: start;
  }
}
@media screen and (min-width: 1440px) {
  header #logo {
    padding-top: 5rem;
    width: 251px;
  }
}
header #header-slogan {
  display: none;
  color: #abcb42;
  font-size: 1.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 1280px) {
  header #header-slogan {
    display: block;
    grid-column: 5/9;
    align-self: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  header #header-slogan {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
header.header--subpage #logo {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  header.header--subpage #logo {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  header.header--subpage #logo {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  header.header--subpage #logo {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
header picture > img {
  width: 100%;
  margin-bottom: -5px;
  max-height: 600px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (min-width: 1440px) {
  header p,
  header h1 {
    max-width: 530px;
  }
}

footer h2,
footer h3,
footer p {
  color: #ffffff;
}
footer > * {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  gap: 2rem;
}
footer #emergencySupport {
  background-color: #333333;
}
footer #emergencySupport > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer #emergencySupport > :nth-child(2) {
  gap: 1.5rem;
}
footer #emergencySupport > :nth-child(2) h3 {
  margin-bottom: 1rem;
}
@media screen and (min-width: 960px) {
  footer #emergencySupport > :nth-child(2) {
    flex-direction: row;
  }
}
footer #copyandprivacy {
  background-color: #1a1a1a;
}
footer #copyandprivacy .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
footer #copyandprivacy .footer-social .alliance-logo {
  height: 24px;
  width: auto;
  margin-left: 0.25rem;
}
@media screen and (min-width: 960px) {
  footer #copyandprivacy :nth-child(2) {
    grid-column: 9;
  }
}
footer a {
  color: #ffffff;
  font-weight: 400;
}
footer #clinicInfo {
  background-color: #f6f6f6;
  color: #1a1a1a;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
footer #clinicInfo h3,
footer #clinicInfo p {
  color: #1a1a1a;
}
footer #clinicInfo .clinic-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 15px 25px rgba(26, 26, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  grid-column: auto;
}
footer #clinicInfo .clinic-card--acknowledgement {
  grid-column: 1/-1;
}
@media screen and (min-width: 960px) {
  footer #clinicInfo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
footer #clinicInfo a {
  color: #426a00;
  font-weight: 600;
}

#home-impact {
  margin-top: 1rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
#home-impact .impact-panel {
  background: linear-gradient(145deg, #f6f6f6 0%, #ffffff 100%);
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
  padding: 1.25rem;
  grid-column: 1/9;
}
@media screen and (min-width: 600px) {
  #home-impact .impact-panel {
    padding: 1.75rem;
  }
}
@media screen and (min-width: 1280px) {
  #home-impact .impact-panel {
    padding: 2rem;
  }
}
#home-impact .impact-grid {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 1280px) {
  #home-impact .impact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }
}
#home-impact .impact-content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
#home-impact .impact-content h2,
#home-impact .impact-content p {
  max-width: none;
}
#home-impact .impact-kicker {
  color: #426a00;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#home-impact .impact-intro {
  color: #333333;
}
#home-impact .impact-stats {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 600px) {
  #home-impact .impact-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
#home-impact .impact-stat {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-left: 4px solid #abcb42;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: auto;
}
#home-impact .impact-stat__headline {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#home-impact .impact-stat__prefix,
#home-impact .impact-stat__label {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  max-width: none;
  text-wrap: balance;
}
#home-impact .impact-stat__value {
  font-family: "Oswald", Helvetica, sans-serif;
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  line-height: 0.92;
  color: #426a00;
  margin: 0;
  max-width: none;
  letter-spacing: 0.015em;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 1280px) {
  #home-impact .impact-stat__prefix,
  #home-impact .impact-stat__label {
    font-size: 1rem;
  }
}
#home-impact .impact-as-of {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #5c5c5c;
  max-width: none;
}
#home-impact .impact-actions {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  #home-impact .impact-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
#home-impact .impact-actions .book,
#home-impact .impact-actions .btn {
  width: 100%;
}
@media screen and (min-width: 600px) {
  #home-impact .impact-actions .book,
  #home-impact .impact-actions .btn {
    width: auto;
  }
}
#home-impact .impact-carousel {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.08);
}
#home-impact .impact-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 350ms ease;
}
#home-impact .impact-carousel__slide.is-active {
  opacity: 1;
}
#home-impact .impact-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(26, 26, 26, 0.45);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}
#home-impact .impact-carousel__nav:hover, #home-impact .impact-carousel__nav:focus-visible {
  background-color: rgba(26, 26, 26, 0.72);
  border-color: #ffffff;
}
#home-impact .impact-carousel__nav--prev {
  left: 0.65rem;
}
#home-impact .impact-carousel__nav--next {
  right: 0.65rem;
}
#home-impact .impact-carousel__nav span {
  display: block;
  transform: translateY(-0.02rem);
}
#home-impact .impact-carousel__nav:active {
  transform: translateY(-50%) scale(0.97);
}
@media screen and (min-width: 600px) {
  #home-impact .impact-carousel__nav {
    width: 2.05rem;
    height: 2.05rem;
    font-size: 1.05rem;
  }
}

#about {
  margin-top: 2rem;
  margin-bottom: 2rem;
  grid-column: 1/9;
}
#about h2 {
  font-family: "Oswald", Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #000000;
  margin-bottom: 1rem;
}
#about p.intro {
  max-width: 711px;
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 2rem;
}
#about .four-quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
}
#about .four-quadrant-grid .quadrant {
  background-color: #f6f6f6;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease;
}
#about .four-quadrant-grid .quadrant h3 {
  font-family: "Oswald", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #426a00;
  margin-bottom: 0.5rem;
}
#about .four-quadrant-grid .quadrant p {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #333333;
}
#about .four-quadrant-grid .quadrant:hover {
  background-color: #e6e6e6;
}
@media screen and (max-width: 600px) {
  #about .four-quadrant-grid {
    grid-template-columns: 1fr;
  }
}

#faq .serviceblock {
  gap: 1.1rem;
}
#faq .faq-section {
  width: 100%;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
#faq .faq-item {
  background-color: #ffffff;
  border: 1px solid rgba(204, 204, 204, 0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(26, 26, 26, 0.06);
}
#faq .faq-question {
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  transition: background-color 180ms ease;
}
#faq .faq-question:hover, #faq .faq-question:focus-visible {
  background-color: #f6f6f6;
}
#faq .faq-question[aria-expanded=true] {
  background-color: rgba(171, 203, 66, 0.24);
}
#faq .faq-question .arrow {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(204, 204, 204, 0.8);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  background-color: #ffffff;
  transition: border-color 180ms ease, background-color 180ms ease;
}
#faq .faq-question .arrow::before {
  content: "▾";
  color: #426a00;
  font-size: 0.7rem;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 240ms ease, color 180ms ease;
}
#faq .faq-question[aria-expanded=true] .arrow {
  border-color: #426a00;
  background-color: #426a00;
}
#faq .faq-question[aria-expanded=true] .arrow::before {
  transform: rotate(180deg);
  color: #ffffff;
}
#faq .faq-answer {
  padding: 0 1rem 1rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  animation: fadeIn 0.25s ease-in-out;
}
#faq .faq-answer p {
  margin: 0.75rem 0 0;
  max-width: none;
}
#faq .faq-answer ul,
#faq .faq-answer ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}
#faq .faq-answer li + li {
  margin-top: 0.35rem;
}

#fee-calculator {
  background-color: #e0e9e1;
  border-radius: 1.5rem 1.5rem 0 0;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (min-width: 1280px) {
  #fee-calculator {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  #fee-calculator {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
#fee-calculator form {
  display: grid;
  grid-template-columns: repeat(8, minmax(0.5rem, 1fr));
  height: 1418px;
  gap: 1.5rem;
}
@media screen and (min-width: 1280px) {
  #fee-calculator form {
    height: 1194px;
  }
}
#fee-calculator form .tab {
  grid-column: 1/9;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  #fee-calculator form .tab {
    grid-column: 2/8;
  }
}
@media screen and (min-width: 1280px) {
  #fee-calculator form .tab {
    grid-column: 3/8;
  }
}
#fee-calculator form .tab img {
  width: 96px;
  height: 96px;
  order: 0;
  align-self: center;
}
#fee-calculator form .tab .step-number {
  color: #426a00;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
  text-align: center;
  order: 0;
}
#fee-calculator form .tab h3 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  align-self: center;
  order: 1;
  flex-grow: 0;
}
#fee-calculator form .tab p {
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}
#fee-calculator form .tab p.small {
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1rem;
  order: 3;
}
#fee-calculator form .tab span.small {
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1rem;
  order: 2;
  text-align: center;
}
#fee-calculator form .tab button {
  background: linear-gradient(180deg, #bee04d 0%, #abcb42 100%);
  border-radius: 4px;
  border-style: hidden;
  padding: 1rem 1rem;
  width: 100%;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  order: 3;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}
#fee-calculator form .tab button:hover {
  background: linear-gradient(180deg, #9abf1f 0%, #86a61e 100%);
}
#fee-calculator form .tab button:disabled {
  background: #e6e6e6;
}
#fee-calculator form .tab button:focus {
  background: linear-gradient(180deg, #c3ed39 0%, #b2d932 100%);
}
#fee-calculator form .tab fieldset {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 0;
  padding: 0;
  order: 2;
}
@media screen and (min-width: 1280px) {
  #fee-calculator form .tab fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0.5rem, 1fr));
  }
}
#fee-calculator form .tab label {
  background: white;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  gap: 10px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}
#fee-calculator form .tab .label-disabled {
  background: #e6e6e6;
}
#fee-calculator form .tab .label-hover {
  background: #abcb42;
}
#fee-calculator form .tab input:checked {
  accent-color: #426a00;
}
#fee-calculator form .tab div,
#fee-calculator form .tab a.new-estimate {
  order: 3;
}
#fee-calculator form .tab a.new-estimate {
  text-align: center;
}
#fee-calculator form .tab div.stepper {
  order: 0;
}
#fee-calculator form .tab div.stepper a {
  color: #5c5c5c;
  font-weight: 400px;
  font-size: 12px;
}
#fee-calculator form .tab div.stepper .step-group {
  height: 16px;
  gap: 1rem;
  display: flex;
}
#fee-calculator form .tab div.stepper span.step {
  height: 6px;
  width: 32px;
  background: #cccccc;
  display: inline-block;
  border-radius: 6px;
  flex-grow: 1;
}
#fee-calculator form .tab div.stepper span.active {
  background: #5ea228;
}
#fee-calculator form .tab .white-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  padding: 16px;
}
#fee-calculator form .tab .white-panel .assessmentrow {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
#fee-calculator form .tab .white-panel .assessmentrow span small {
  font-size: 0.75rem;
  color: #5c5c5c;
}
#fee-calculator form .tab .white-panel .assessmentrow span:last-child {
  text-align: right;
}
#fee-calculator form .tab .white-panel .assessmentrow:last-child {
  margin-bottom: 0;
}
#fee-calculator form .tab .white-panel:last-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#fee-calculator form div.booking-form {
  order: 3;
  display: flex;
  flex-direction: column;
}
#fee-calculator form div.booking-form h4 {
  font-family: "Oswald", Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  max-width: 100%;
  margin-bottom: 1rem;
}
#fee-calculator form div.booking-form p {
  order: initial;
  margin-bottom: 1rem;
}
#fee-calculator form div.booking-form label {
  background: initial;
  border-radius: 0;
  display: initial;
  flex-direction: initial;
  align-items: initial;
  padding: initial;
  gap: initial;
  box-shadow: initial;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 700;
}
#fee-calculator form div.booking-form input {
  border: 1px solid #bab8c1;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  height: 2.75rem;
}
#fee-calculator form div.booking-form input:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1280px) {
  #fee-calculator form .tab:first-of-type {
    grid-column: 3/8;
  }
}
@media screen and (min-width: 1440px) {
  #fee-calculator form .tab:first-of-type p {
    align-self: center;
  }
}
@media screen and (min-width: 1440px) {
  #fee-calculator form .tab:first-of-type button {
    max-width: 711px;
    align-self: center;
  }
}

.tab {
  display: none;
}

#hidden-form {
  display: none;
}

#privacy h2 {
  grid-column: 1/9;
}
@media screen and (min-width: 1680px) {
  #privacy h2 {
    grid-column: 3/7;
  }
}
#privacy p {
  grid-column: 1/9;
}
@media screen and (min-width: 1680px) {
  #privacy p {
    grid-column: 3/7;
  }
}
#privacy ul,
#privacy li {
  margin-top: 0;
  grid-column: 1/9;
  max-width: 711px;
}
@media screen and (min-width: 1680px) {
  #privacy ul,
  #privacy li {
    grid-column: 3/7;
  }
}

#map {
  min-height: 400px;
  width: 100%;
}

.serviceblock {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 8px;
  gap: 1rem;
}
.serviceblock ul,
.serviceblock ol {
  margin: 0;
}
.serviceblock h3 {
  font-family: "Open Sans", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}
.serviceblock .pricetable {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 1rem;
  width: 100%;
}
.serviceblock .pricetable .programdetails {
  padding-left: 10px;
  font-size: 0.875rem;
  color: #666;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (min-width: 600px) {
  .serviceblock .pricetable .programdetails {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .pricetable .programdetails {
    font-size: 1rem;
  }
}
.serviceblock .pricetable .pricerow {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0.5rem;
  gap: 1rem;
  border-bottom: 1px solid #cccccc;
  width: 100%;
}
.serviceblock .pricetable .pricerow span {
  flex: none;
  order: 0;
  flex-grow: 1;
  width: 213px;
}
@media screen and (min-width: 600px) {
  .serviceblock .pricetable .pricerow span {
    width: 334px;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .pricetable .pricerow span {
    width: auto;
  }
}
.serviceblock .pricetable .pricerow span:last-child {
  flex-grow: 0;
  width: 88px;
}
@media screen and (min-width: 600px) {
  .serviceblock .pricetable .pricerow span:last-child {
    width: 154px;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .pricetable .pricerow span:last-child {
    width: auto;
  }
}
.serviceblock .pricetable .pricerow.headings {
  font-size: 0.875rem;
  font-weight: 700;
  color: #426a00;
  padding: 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 600px) {
  .serviceblock .pricetable .pricerow.headings {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .pricetable .pricerow.headings {
    font-size: 1rem;
  }
}
.serviceblock .assessmentprocess {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 960px) {
  .serviceblock .assessmentprocess {
    flex-direction: row;
  }
}
.serviceblock .assessmentprocess .assessmentrow {
  display: flex;
  flex-direction: row;
  gap: 16px;
  box-sizing: border-box;
}
.serviceblock .assessmentprocess .assessmentrow img {
  width: 60px;
  height: 60px;
}
.serviceblock .assessmentprocess .assessmentrow .assessmentstack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.serviceblock .assessmentprocess .assessmentrow .assessmentstack span {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
}
.serviceblock .assessmentprocess .assessmentrow .assessmentstack span.steplabel {
  font-size: 0.75rem;
  font-weight: 400;
  color: #426a00;
  line-height: 1rem;
}
.serviceblock .assessmentprocess .assessmentrow .assessmentstack p {
  font-size: 0.75rem;
  line-height: 1rem;
}
@media screen and (min-width: 960px) {
  .serviceblock .assessmentprocess .assessmentrow {
    flex-direction: column;
  }
}
.serviceblock .supervision-types {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  .serviceblock .supervision-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .supervision-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.serviceblock .supervision-types li {
  background-color: #ffffff;
  border-left: 4px solid #abcb42;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  line-height: 1.4rem;
}
@media screen and (min-width: 600px) {
  .serviceblock .supervision-types li {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .supervision-types li {
    font-size: 1rem;
  }
}
.serviceblock .supervision-types li strong {
  display: block;
  font-family: "Oswald", Helvetica, sans-serif;
  font-size: 1rem;
  color: #426a00;
  margin-bottom: 0.35rem;
}
@media screen and (min-width: 600px) {
  .serviceblock .supervision-types li strong {
    font-size: 1.05rem;
  }
}
.serviceblock .funding-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.serviceblock .funding-accordion__item {
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.serviceblock .funding-accordion__item[open] {
  border-color: #abcb42;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.serviceblock .funding-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  margin: 0;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.serviceblock .funding-accordion__summary::-webkit-details-marker {
  display: none;
}
.serviceblock .funding-accordion__summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: #426a00;
  transition: transform 0.2s ease;
}
.serviceblock .funding-accordion__item[open] .funding-accordion__summary::after {
  content: "−";
}
.serviceblock .funding-accordion__title {
  font-size: 1rem;
  line-height: 1.4rem;
}
.serviceblock .funding-accordion__content {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.serviceblock .funding-accordion__content ol {
  padding-left: 1.25rem;
  margin: 0;
}
.serviceblock .funding-accordion__content .pricetable {
  margin-top: 0;
}
.serviceblock .room-clinic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.serviceblock .room-grid {
  width: 100%;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 600px) {
  .serviceblock .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .serviceblock .room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.serviceblock .room-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 20px rgba(26, 26, 26, 0.06);
}
.serviceblock .room-card__photo {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  display: block;
  padding: 0;
  border: none;
}
.serviceblock .room-card__photo:hover {
  transform: scale(1.02);
}
.serviceblock .room-card__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #333333;
}
@media screen and (min-width: 960px) {
  .serviceblock .room-card__details {
    font-size: 0.95rem;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox .lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  max-height: 90vh;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.lightbox .lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox .lightbox-caption {
  margin: 15px auto;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  font-family: "Oswald", Helvetica, sans-serif;
}
.lightbox .lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
}
.lightbox .lightbox-close:hover, .lightbox .lightbox-close:focus {
  color: #bbb;
}
.lightbox .lightbox-prev, .lightbox .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.lightbox .lightbox-prev:hover, .lightbox .lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox .lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.lightbox .lightbox-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.button-container {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
  width: 100%;
  align-items: stretch;
}
@media screen and (min-width: 600px) {
  .button-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
.button-container .book {
  width: 100%;
}

#team {
  background-color: #f6f6f6;
  overflow: hidden;
}
#team #ourteam {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#team #plus {
  position: relative;
  display: none;
}
@media screen and (min-width: 1280px) {
  #team #plus {
    display: block;
  }
}
#team #plus img {
  position: absolute;
  top: -446px;
  right: -33%;
}
@media screen and (min-width: 1280px) {
  #team #plus img {
    right: -31%;
  }
}
#team #teamlist {
  margin-top: 1rem;
}
#team #teamlist .team-heading {
  margin-bottom: 0.25rem;
}
#team #teamlist .team-subheading {
  margin-top: 0.1rem;
  margin-bottom: 0.35rem;
  color: #333333;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 700;
}
#team #teamlist #clinicians-list,
#team #teamlist #admin-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 0.75rem;
}
#team #teamlist .filter-panel ~ #no-clinicians {
  margin-top: 0.25rem;
}
#team #teamlist .filter-panel ~ #clinicians-list {
  margin-top: 0.5rem;
}
@media screen and (min-width: 960px) {
  #team #teamlist #clinicians-list > *,
  #team #teamlist #admin-list > * {
    flex: 0 0 45%;
  }
}
#team #teamlist img {
  border-radius: 8px;
  margin-bottom: 1.5rem;
  width: 100%;
}
#team #teamlist .position {
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}
#team #teamlist .position .days-info,
#team #teamlist .position .age-info,
#team #teamlist .position .fees-info,
#team #teamlist .position .clinics-info,
#team #teamlist .position .languages-info {
  border-radius: 4px;
}
#team #teamlist .position .day,
#team #teamlist .position .age-range,
#team #teamlist .position .fee,
#team #teamlist .position .role,
#team #teamlist .position .clinic,
#team #teamlist .position .language {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin: 0.25rem;
  background-color: #d9d9d9;
  color: #000000;
}
#team #teamlist .bioText {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
#team #teamlist .extra {
  color: #5c5c5c;
  font-size: 0.75rem;
}

#team .filter-toggle {
  width: 100%;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-family: "Open Sans", Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
#team .filter-toggle:hover, #team .filter-toggle:focus-visible {
  border-color: #426a00;
  color: #426a00;
}
@media screen and (min-width: 960px) {
  #team .filter-toggle {
    width: auto;
    align-self: flex-start;
    padding: 0.65rem 1.5rem;
  }
}
#team .filter-toggle.has-active {
  border-color: #426a00;
  color: #426a00;
}
#team .filter-toggle__label {
  flex: 1;
}
#team .filter-toggle__count {
  min-width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: #abcb42;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#team .filter-toggle__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background-color: #abcb42;
  position: relative;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
#team .filter-toggle__icon::before, #team .filter-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 2px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
#team .filter-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#team .filter-toggle__icon.is-open::after {
  opacity: 0;
}
#team .filter-toggle[aria-expanded=false] .filter-toggle__icon {
  transform: rotate(90deg);
}
#team .filter-panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  margin: 0.2rem 0 1rem;
  box-shadow: 0 20px 45px rgba(26, 26, 26, 0.08);
  display: grid;
  gap: 1.25rem;
  border: 1px solid rgba(204, 204, 204, 0.4);
}
@media screen and (min-width: 1280px) {
  #team .filter-panel {
    position: sticky;
    top: 6rem;
    z-index: 1;
  }
}
#team .filter-panel[data-collapsed=true] {
  display: none;
}
#team .filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}
#team .filter-reset {
  align-self: flex-start;
  background-color: transparent;
  border: 1px solid #426a00;
  color: #426a00;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}
#team .filter-reset:hover, #team .filter-reset:focus-visible {
  background-color: #426a00;
  color: #ffffff;
}
@media screen and (min-width: 960px) {
  #team .filter-reset {
    align-self: stretch;
  }
}
#team .filter-controls .filter-container {
  flex: 1 1 15rem;
}
#team .filter-controls .filter-reset {
  flex: 0 0 auto;
  margin-left: auto;
}
#team .filter-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}
#team .filter-item {
  border: 1px solid rgba(204, 204, 204, 0.6);
  border-radius: 16px;
  padding: 0.1rem 0.1rem 0;
  background-color: #f6f6f6;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
#team .filter-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid rgba(204, 204, 204, 0.6);
  background-color: #ffffff;
}
#team .filter-item summary::-webkit-details-marker {
  display: none;
}
#team .filter-title {
  font-family: "Oswald", Helvetica, sans-serif;
  font-size: 1.05rem;
}
#team .filter-summary {
  font-size: 0.85rem;
  color: #5c5c5c;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11rem;
}
#team .filter-caret {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(204, 204, 204, 0.6);
  position: relative;
  flex-shrink: 0;
}
#team .filter-caret::before, #team .filter-caret::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 2px;
  background-color: #1a1a1a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#team .filter-caret::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#team .filter-item[open] {
  border-color: #abcb42;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.08);
}
#team .filter-item[open] .filter-caret::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#team .filter-item[open] .filter-caret::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
#team .filter-body {
  padding: 0 1rem 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(204, 204, 204, 0.4);
}
#team .filter-item.has-selection summary {
  border-color: #426a00;
  background-color: rgba(171, 203, 66, 0.25);
}
#team .filter-item.has-selection .filter-title,
#team .filter-item.has-selection .filter-summary {
  color: #426a00;
  font-weight: 600;
}
#team .filter-item.has-selection .filter-caret {
  border-color: #426a00;
  background-color: rgba(171, 203, 66, 0.45);
}
#team .filter-helper {
  font-size: 0.875rem;
  color: #5c5c5c;
}
#team .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  max-height: 9.5rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}
#team .chip {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  scroll-snap-align: start;
  animation: fadeIn 250ms ease;
}
#team .chip:hover, #team .chip:focus-visible {
  border-color: #426a00;
}
#team .chip.is-active,
#team .chip[aria-pressed=true] {
  background-color: #426a00;
  border-color: #426a00;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(66, 106, 0, 0.35);
  position: relative;
  padding-right: 1.6rem;
}
#team .chip.is-active::after,
#team .chip[aria-pressed=true]::after {
  content: "✓";
  position: absolute;
  right: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
}
#team .chip.chip-animate {
  animation: fadeIn 250ms ease;
}
#team #clinicians-list > div {
  transition: opacity 200ms ease;
}
#team #clinicians-list .clinician.is-filtering {
  animation: fadeIn 300ms ease;
}

#contact {
  background-color: #f6f6f6;
}

#contact form {
  margin-right: 1.2rem;
}
#contact form label {
  font-size: 0.75rem;
}
#contact form input,
#contact form textarea {
  width: 100%;
  border: 1px solid #bab8c1;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
}
#contact form input {
  height: 2.75rem;
}
#contact form textarea {
  height: 6.25rem;
  line-height: 2rem;
}
#contact form button {
  width: 100%;
}
@media screen and (min-width: 600px) {
  #contact form button {
    width: auto;
  }
}
#contact form p {
  margin-bottom: 1rem;
}

#formFailure img {
  margin-top: 1rem;
}

#formComplete img {
  margin-top: 1rem;
}

.successtitle {
  color: #426a00;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Open Sans", Helvetica, sans-serif;
  margin: 1rem 0;
}

.errortitle {
  color: #d00000;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Open Sans", Helvetica, sans-serif;
  margin: 1rem 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Featured clinicians */
.featured-clinicians-section {
  padding-top: 0 !important;
  margin-top: -1.5rem;
}

.featured-clinicians-section .featured-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.clinician-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
}

.clinician-card .image-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.clinician-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.clinician-card .meta {
  padding: 0.75rem;
}

.clinician-name {
  margin: 0;
  font-size: 1.05rem;
}

.clinician-title {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #666;
}

/* Carousel layout */
.featured-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  /* Prevent wrapper from overflowing its container */
  max-width: 100%;
  position: relative;
}

.featured-carousel {
  overflow: hidden;
  flex: 1; /* Take remaining space */
  min-width: 0; /* Allow shrinking below content size */
}

.featured-carousel-track {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.featured-carousel .clinician-card {
  /* Show 2 items: (100% - 1rem gap) / 2 */
  flex: 0 0 calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
  scroll-snap-align: start;
}

/* Carousel controls */
.carousel-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.4rem 0.6rem;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
  z-index: 2;
}

.carousel-btn:focus {
  outline: 3px solid rgba(0, 120, 215, 0.25);
}

/* Small screens: Show 1 item */
@media (max-width: 640px) {
  .featured-carousel .clinician-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */