* {
  box-sizing: border-box;
}

:root {
  --navy: #061634;
  --navy-2: #0b2149;
  --orange: #e1890f;
  --gold: #f3a833;
  --cream: #fffaf3;
  --text: #111827;
  --muted: #5b6472;
  --line: rgba(6, 22, 52, 0.12);
  --shadow: 0 22px 60px rgba(6, 22, 52, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: min(360px, 52vw);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--navy);
}

nav a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.button {
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  background: var(--orange);
  color: white;
}

.button.secondary {
  color: var(--navy);
  border: 2px solid var(--orange);
  background: white;
}

.button.secondary.light {
  color: white;
  border-color: white;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 span {
  color: var(--orange);
  white-space: nowrap;
}

.lead {
  max-width: 760px;
  color: #1f2937;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  border-radius: 28px;
  padding: 14px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 18px;
}

.section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.price-cards article,
.contact-grid > * {
  padding: 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
}

.service-grid article h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.service-grid article::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.area-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.area-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: white;
  border-left: 6px solid var(--orange);
  font-weight: 900;
  color: var(--navy);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-cards strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.price-cards span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.price-cards .birthday {
  background: var(--navy);
  color: white;
}

.price-cards .birthday strong {
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.price-cards .birthday span {
  color: white;
}

.cta-panel {
  margin: clamp(18px, 4vw, 56px);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel h2 {
  color: white;
}

.cta-panel .eyebrow {
  background: rgba(255,255,255,0.14);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid a {
  text-decoration: none;
}

.contact-grid span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.1rem;
}

footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: white;
  text-align: center;
}

.fine-print {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

  .price-cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  h1 span {
    white-space: normal;
  }

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

  .brand img {
    width: 100%;
  }
}

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

.hero-copy {
  max-width: 980px;
}

#areas .area-list {
  justify-self: end;
  width: min(100%, 340px);
}

#areas .area-list li {
  max-width: 340px;
}

#areas h2 {
  white-space: nowrap;
}

#areas .area-list li {
  position: relative;
  border-left: none;
  padding-left: 46px;
}

#areas .area-list li::before {
  content: "📍";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

@media (max-width: 760px) {
  #areas h2 {
    white-space: normal;
  }
}

#areas .local-care-cities {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--navy);
}

#areas .area-list li {
  background: transparent;
  box-shadow: none;
}

.pricing-subtitle {
  display: block;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0;
  margin-top: 8px;
  color: var(--muted);
}

.rate-note {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.new-client-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 700;
}

.new-client-card li {
  margin-bottom: 6px;
}

.price-cards .birthday {
  position: relative;
  overflow: hidden;
}

.price-cards .birthday::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 12% 20%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 18%, #ffffff 0 3px, transparent 4px),
    radial-gradient(circle at 35% 70%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 76%, #ffffff 0 3px, transparent 4px),
    linear-gradient(35deg, transparent 0 46%, var(--gold) 47% 50%, transparent 51%),
    linear-gradient(120deg, transparent 0 47%, #ffffff 48% 50%, transparent 51%);
  background-size: 72px 72px, 64px 64px, 88px 88px, 78px 78px, 90px 90px, 105px 105px;
  pointer-events: none;
}

.price-cards .birthday > * {
  position: relative;
  z-index: 1;
}

.new-client-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: start;
}

.new-client-card p {
  grid-column: 1 / -1;
}

.new-client-card strong {
  grid-column: 1;
}

.new-client-card ul {
  grid-column: 2;
  margin: 4px 0 0;
  padding-left: 18px;
  font-size: 0.82rem;
  line-height: 1.25;
}

.new-client-card li {
  margin-bottom: 3px;
}

.price-cards .birthday {
  background:
    radial-gradient(circle at 18% 22%, rgba(243, 168, 51, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 70%, rgba(225, 137, 15, 0.95) 0 5px, transparent 6px),
    radial-gradient(circle at 28% 78%, rgba(255, 255, 255, 0.8) 0 3px, transparent 4px),
    linear-gradient(135deg, #061634 0%, #0b2149 100%);
}

.price-cards .birthday::before {
  opacity: 0.38;
  background-image:
    linear-gradient(25deg, transparent 0 42%, #f3a833 43% 48%, transparent 49%),
    linear-gradient(115deg, transparent 0 45%, #ffffff 46% 50%, transparent 51%),
    linear-gradient(70deg, transparent 0 43%, #e1890f 44% 49%, transparent 50%),
    radial-gradient(circle at 20% 20%, #ffffff 0 3px, transparent 4px),
    radial-gradient(circle at 70% 60%, #f3a833 0 4px, transparent 5px);
  background-size: 52px 52px, 64px 64px, 78px 78px, 45px 45px, 58px 58px;
  background-position: 0 0, 18px 10px, 8px 24px, 22px 16px, 34px 5px;
}

.price-cards .birthday::after {
  content: "✦ ✧ ✦";
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(243, 168, 51, 0.9);
  font-size: 1.25rem;
  letter-spacing: 6px;
  pointer-events: none;
}

.price-cards .birthday {
  background: var(--navy) !important;
}

.price-cards .birthday::before,
.price-cards .birthday::after {
  content: none !important;
  display: none !important;
}

.birthday-cake {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.82em;
  vertical-align: 0.05em;
}

.price-cards .birthday strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.birthday-cake {
  margin-left: 0 !important;
  font-size: 1.45em !important;
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(4px);
}

.hero h1 br {
  display: block;
}

.pricing .rate-note {
  display: block;
  margin-top: 10px;
}

.pricing .rate-note {
  margin-top: 2px !important;
  margin-bottom: 0;
}

#services .section-heading {
  max-width: none;
}

#services h2 {
  white-space: nowrap;
}

#services .service-grid article:nth-last-child(2) {
  grid-column: 2 / 3;
}

#services .service-grid article:last-child {
  grid-column: 3 / 4;
}

@media (max-width: 980px) {
  #services h2 {
    white-space: normal;
  }

  #services .service-grid article:nth-last-child(2),
  #services .service-grid article:last-child {
    grid-column: auto;
  }
}

.cta-panel {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.cta-panel .hero-actions,
.cta-panel .cta-actions {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

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

.cta-panel {
  margin-left: clamp(18px, 5vw, 72px) !important;
  margin-right: clamp(18px, 5vw, 72px) !important;
}

.cta-panel {
  margin-left: clamp(18px, 5vw, 72px) !important;
  margin-right: clamp(18px, 5vw, 72px) !important;
  margin-top: -18px !important;
  margin-bottom: clamp(18px, 4vw, 42px) !important;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.fade-page {
  opacity: 0;
  animation: pageFadeIn 420ms ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subpage-main .section:first-child {
  border-top: none;
  padding-top: clamp(44px, 7vw, 92px);
}

nav a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a:hover {
  color: var(--orange);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.fade-page {
  animation: pageFadeIn 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.fade-page {
  opacity: 0;
  animation: smokeClearIn 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  will-change: opacity, filter, transform, clip-path;
}

@keyframes smokeClearIn {
  0% {
    opacity: 0;
    filter: blur(18px) saturate(0.85);
    transform: scale(1.018) translateY(18px);
    clip-path: inset(0 0 10% 0 round 18px);
  }
  35% {
    opacity: 0.55;
    filter: blur(10px) saturate(0.95);
    transform: scale(1.01) translateY(10px);
    clip-path: inset(0 0 5% 0 round 12px);
  }
  70% {
    opacity: 0.88;
    filter: blur(3px) saturate(1);
    transform: scale(1.003) translateY(3px);
    clip-path: inset(0 0 0 0 round 0);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: scale(1) translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

body.fade-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,0.98), rgba(255,255,255,0.68) 32%, transparent 62%),
    radial-gradient(circle at 70% 55%, rgba(255,255,255,0.82), rgba(255,255,255,0.48) 28%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0));
  animation: smokeVeilClear 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  filter: blur(16px);
}

@keyframes smokeVeilClear {
  0% {
    opacity: 1;
    transform: scale(1.04);
  }
  55% {
    opacity: 0.42;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-page,
  body.fade-page::before {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

body:has(#contact) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:has(#contact) main {
  flex: 1;
}

body:has(#contact) footer {
  margin-top: auto;
}

.contact-grid .phone-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-grid .phone-contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1;
}

.contact-grid .phone-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-grid .email-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-grid .email-contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1;
}

.contact-grid .email-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-grid .email-contact-text strong {
  overflow-wrap: anywhere;
}

.contact-grid .home-safety-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-grid .home-safety-contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-grid .home-safety-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-grid .home-safety-contact-text strong {
  overflow-wrap: anywhere;
}

.contact-grid .home-safety-contact-icon {
  position: relative;
  font-size: 0 !important;
  letter-spacing: 0 !important;
}

.contact-grid .home-icon-house {
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-1px);
}

.contact-grid .home-icon-plus {
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.contact-grid .home-icon-house {
  font-size: 2.35rem !important;
  color: var(--orange) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  transform: translateY(-2px) !important;
}

.contact-grid .home-safety-contact-icon {
  color: var(--orange) !important;
  overflow: hidden;
}

.contact-grid .email-contact-icon {
  font-size: 2.05rem !important;
  font-weight: 900 !important;
}

.contact-grid .email-contact-icon {
  font-size: 2.56rem !important;
}

.contact-grid .home-icon-plus {
  background: transparent !important;
  color: #000 !important;
  border-radius: 0 !important;
  right: 1px !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  font-size: 1.05rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.contact-grid .home-icon-house {
  color: var(--orange) !important;
}

.contact-grid .email-contact-icon {
  font-size: 2.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
}

.contact-grid .home-safety-contact-icon {
  overflow: visible !important;
}

.contact-grid .home-icon-plus {
  right: 4px !important;
  bottom: 5px !important;
  transform: translate(35%, 35%) !important;
  color: #000 !important;
  background: transparent !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  z-index: 2;
}

.contact-grid .home-icon-house {
  position: relative;
  z-index: 1;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  position: relative !important;
  overflow: visible !important;
  color: var(--orange) !important;
  border-color: var(--orange) !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
}

.contact-grid .shield-shape {
  color: var(--orange) !important;
  font-size: 2.15rem !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-grid .shield-plus {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange) !important;
  background: transparent !important;
  font-size: 1.12rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transform: translateY(-1px);
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid var(--orange) !important;
  border-radius: 50% !important;
  color: var(--orange) !important;
  overflow: hidden !important;
  font-size: 0 !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 33px !important;
  height: 33px !important;
  object-fit: contain !important;
  display: block !important;
}

.contact-grid .shield-shape,
.contact-grid .shield-plus {
  display: none !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 39px !important;
  height: 39px !important;
  transform: scale(1.08);
  filter: drop-shadow(0.7px 0 var(--orange))
          drop-shadow(-0.7px 0 var(--orange))
          drop-shadow(0 0.7px var(--orange))
          drop-shadow(0 -0.7px var(--orange));
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid var(--orange) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  font-size: 0 !important;
  color: var(--orange) !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 37px !important;
  height: 37px !important;
  object-fit: contain !important;
  display: block !important;
  transform: none !important;
  filter: none !important;
}

.contact-grid .shield-shape,
.contact-grid .shield-plus,
.contact-grid .home-icon-house,
.contact-grid .home-icon-plus {
  display: none !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  overflow: hidden !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  display: block !important;
  transform: translateY(0) !important;
  filter: none !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  transform: translate(0, 0) !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  overflow: hidden !important;
  position: relative !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 47px !important;
  height: 47px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) scale(1.08) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  left: 50% !important;
  top: 54% !important;
  transform: translate(-50%, -50%) scale(1.08) !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid var(--orange) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 40px !important;
  height: 40px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  position: static !important;
  transform: none !important;
  margin: 0 !important;
  display: block !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  position: static !important;
  transform: none !important;
  margin: 0 auto !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  transform: translateY(2px) !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  transform: translate(2px, 2px) !important;
}

.contact-grid .home-safety-contact-icon.shield-plus-icon img {
  transform: translate(1px, 2px) !important;
}

.contact-grid .email-contact-icon {
  transform: translateY(-2px) !important;
}

.contact-grid .email-contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: translateY(0) !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.contact-grid .email-contact-icon {
  transform: translateY(-1px) !important;
}

#areas .area-visual {
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 190px;
  align-items: stretch;
  gap: 16px;
  width: min(100%, 470px);
}

#areas .area-visual .area-list {
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
}

#areas .area-visual .area-list li {
  min-height: 52px;
  display: flex;
  align-items: center;
}

#areas .west-gta-map {
  height: 100%;
  max-height: 244px;
  width: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
  background: white;
}

@media (max-width: 980px) {
  #areas .area-visual {
    justify-self: stretch;
    width: 100%;
    grid-template-columns: 1fr;
  }

  #areas .west-gta-map {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

#areas .area-visual {
  justify-self: end;
  display: grid !important;
  grid-template-columns: minmax(190px, 260px) 190px !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: min(100%, 470px) !important;
}

#areas .area-visual .area-list {
  width: 100% !important;
  justify-self: stretch !important;
  align-self: stretch !important;
}

#areas .area-visual .area-list li {
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
}

#areas .west-gta-map {
  height: 100% !important;
  max-height: 244px !important;
  width: 190px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  background: white !important;
}

@media (max-width: 980px) {
  #areas .area-visual {
    justify-self: stretch !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  #areas .west-gta-map {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

#areas .area-visual {
  justify-self: end;
  display: grid !important;
  grid-template-columns: minmax(190px, 260px) 190px !important;
  align-items: stretch !important;
  gap: 16px !important;
  width: min(100%, 470px) !important;
}

#areas .west-gta-map {
  height: 100% !important;
  max-height: 244px !important;
  width: 190px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  background: white !important;
}

#areas .area-visual {
  grid-template-columns: minmax(180px, 245px) 260px !important;
  width: min(100%, 560px) !important;
  align-items: center !important;
}

#areas .west-gta-map {
  width: 260px !important;
  height: 244px !important;
  max-height: 244px !important;
  justify-self: center !important;
  align-self: center !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

#areas .area-visual {
  grid-template-columns: minmax(170px, 230px) 330px !important;
  width: min(100%, 650px) !important;
  align-items: center !important;
}

#areas .west-gta-map {
  width: 330px !important;
  height: 280px !important;
  max-height: 280px !important;
  justify-self: center !important;
  align-self: center !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  #areas .area-visual {
    grid-template-columns: 1fr !important;
  }

  #areas .west-gta-map {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

#areas .area-visual {
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
}

#areas .area-visual .area-list {
  align-self: center !important;
  justify-self: center !important;
  margin: 0 !important;
  width: 230px !important;
}

#areas .area-visual .area-list li {
  justify-content: flex-start !important;
  min-height: 44px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

#areas .area-visual .area-list li::before {
  content: "📍" !important;
}

#areas .area-visual .area-list .my-location-area {
  font-weight: 900 !important;
  color: var(--navy) !important;
}

#areas .west-gta-map {
  justify-self: center !important;
  align-self: center !important;
}

#areas .area-visual {
  justify-self: center !important;
  display: grid !important;
  grid-template-columns: 230px 330px !important;
  gap: 34px !important;
  align-items: center !important;
  width: min(100%, 640px) !important;
}

#areas .area-visual .area-list {
  justify-self: center !important;
  align-self: center !important;
  width: 230px !important;
  margin: 0 !important;
}

#areas .west-gta-map {
  justify-self: center !important;
  align-self: center !important;
}

@media (max-width: 980px) {
  #areas .area-visual {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
}

#areas .area-visual {
  grid-template-columns: 260px 330px !important;
  gap: 24px !important;
  width: min(100%, 650px) !important;
}

#areas .area-visual .area-list {
  justify-self: end !important;
  width: 230px !important;
  margin-right: 8px !important;
}

#areas .area-visual {
  grid-template-columns: 230px 330px !important;
  gap: 8px !important;
  width: min(100%, 590px) !important;
}

#areas .area-visual .area-list {
  justify-self: end !important;
  width: 230px !important;
  margin-right: 0 !important;
}

#areas .west-gta-map {
  justify-self: start !important;
}

#areas.split {
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr) !important;
  column-gap: 18px !important;
}

#areas .area-visual {
  justify-self: end !important;
  grid-template-columns: 240px 330px !important;
  gap: 10px !important;
  width: 580px !important;
  transform: translateX(72px) !important;
}

#areas .area-visual .area-list {
  justify-self: end !important;
  width: 235px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#areas .west-gta-map {
  justify-self: start !important;
}

@media (max-width: 980px) {
  #areas.split {
    grid-template-columns: 1fr !important;
  }

  #areas .area-visual {
    transform: none !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }
}

#areas .west-gta-map {
  justify-self: end !important;
  transform: translateX(72px) !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .west-gta-map {
  transform: translateX(0) !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .west-gta-map {
  transform: translateX(-52px) !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .area-visual {
  transform: translateX(0) !important;
  justify-self: end !important;
  grid-template-columns: 240px 330px !important;
  gap: 10px !important;
  width: 580px !important;
}

#areas .area-visual .area-list {
  justify-self: end !important;
  width: 235px !important;
  margin-right: 0 !important;
}

#areas .west-gta-map {
  transform: translateX(-104px) !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  #areas .area-visual {
    transform: none !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  #areas .west-gta-map {
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .area-visual {
  grid-template-columns: 240px 412px !important;
  width: 662px !important;
  justify-self: end !important;
}

#areas .west-gta-map {
  width: 412px !important;
  height: 350px !important;
  max-height: 350px !important;
  justify-self: end !important;
  transform: translateX(-52px) !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  #areas .area-visual {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  #areas .west-gta-map {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .west-gta-map {
  transform: translateX(52px) !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    justify-self: stretch !important;
  }
}

#areas .area-visual {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}

#areas .area-visual .area-list {
  display: none !important;
}

#areas .west-gta-map {
  justify-self: end !important;
  margin-left: auto !important;
  transform: translateX(52px) !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    width: 100% !important;
  }
}

#areas .west-gta-map {
  transform: translateX(0) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    transform: none !important;
    width: 100% !important;
  }
}

#areas .local-care-cities {
  line-height: 1.8;
}

#areas .city-pin {
  color: #d11f1f;
  margin-right: 4px;
}

#areas .local-care-cities {
  white-space: nowrap;
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  #areas .local-care-cities {
    white-space: normal;
  }
}

#areas .west-gta-map {
  height: 385px !important;
  max-height: 385px !important;
  object-fit: cover !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  #areas .west-gta-map {
    height: auto !important;
    max-height: none !important;
  }
}

.cta-panel {
  grid-template-columns: 1fr auto !important;
}

.cta-panel > div:first-child {
  min-width: 0 !important;
}

.cta-panel > div:first-child p:not(.eyebrow) {
  white-space: nowrap !important;
}

.cta-panel .cta-actions {
  margin-left: auto !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.cta-panel .cta-actions .button {
  min-width: 225px !important;
  text-align: center !important;
}

@media (max-width: 980px) {
  .cta-panel > div:first-child p:not(.eyebrow) {
    white-space: normal !important;
  }

  .cta-panel .cta-actions {
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }

  .cta-panel .cta-actions .button {
    min-width: 225px !important;
  }
}

.cta-panel .cta-actions .button.primary:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

.cta-panel .cta-actions .button.secondary.light:hover {
  background: #ffffff !important;
  color: var(--navy) !important;
  border-color: #ffffff !important;
}

.hero .button.primary:hover,
.site-header .nav-cta:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

.about-section .about-lead {
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-grid article,
.about-panel {
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
}

.about-grid h3,
.about-panel h3 {
  color: var(--navy);
}

.about-panel {
  margin-top: 20px;
  background: var(--navy);
  color: white;
}

.about-panel h3 {
  color: white;
}

.about-panel p {
  margin-bottom: 0;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.footer-nacc-logo {
  width: 98px;
  height: auto;
  flex: 0 0 auto;
}

.footer-text {
  text-align: left;
}

.footer-text p {
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    text-align: center;
  }
}

.footer-inner {
  position: relative;
  justify-content: center !important;
}

.footer-nacc-logo {
  width: 147px !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-text {
  text-align: center !important;
}

@media (max-width: 640px) {
  .footer-nacc-logo {
    position: static;
    transform: none;
    width: 147px !important;
  }
}

.about-panel p {
  margin-bottom: 14px;
}

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

.about-panel a {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.about-section {
  padding-bottom: clamp(42px, 6vw, 76px) !important;
}

.about-grid {
  margin-bottom: 20px !important;
}

.about-panel {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.about-panel {
  margin-top: 36px !important;
}

.about-section {
  padding-bottom: 36px !important;
}

.cta-panel {
  margin-top: 10px !important;
}

body:has(#about) footer a[href*="adobe" i],
body:has(#about) footer img[src*="adobe" i],
body:has(#about) footer img[alt*="adobe" i],
body:has(#about) footer img[src*="acrobat" i],
body:has(#about) footer img[alt*="acrobat" i] {
  display: none !important;
}

body:has(#about) footer img,
body:has(#about) footer a,
body:has(#about) .footer-nacc-logo {
  display: none !important;
}

body:has(#about) .footer-inner {
  justify-content: center !important;
}

body:has(#about) .footer-text {
  text-align: center !important;
}

body:has(#about) footer.plain-about-footer {
  position: relative !important;
  text-align: center !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
}

body:has(#about) footer.plain-about-footer *::before,
body:has(#about) footer.plain-about-footer *::after,
body:has(#about) footer.plain-about-footer img,
body:has(#about) footer.plain-about-footer svg,
body:has(#about) footer.plain-about-footer a,
body:has(#about) footer.plain-about-footer button,
body:has(#about) footer.plain-about-footer [role="button"],
body:has(#about) footer.plain-about-footer .footer-nacc-logo {
  display: none !important;
}

body:has(#about) .youtube-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
}

body:has(#about) .about-panel a.youtube-link::after,
body:has(#about) .about-panel a.youtube-link::before {
  content: none !important;
  display: none !important;
}

footer {
  overflow: hidden;
}

.footer-inner {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.footer-nacc-logo {
  width: 147px !important;
  height: auto !important;
  flex: 0 0 auto !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  border: 0 !important;
  box-shadow: none !important;
}

.footer-text {
  text-align: center !important;
}

footer object,
footer embed,
footer iframe,
footer a[href*="adobe" i],
footer a[href*=".pdf" i],
footer img[src*="adobe" i],
footer img[src*="acrobat" i],
footer img[src*="pdf" i],
footer [class*="adobe" i],
footer [class*="acrobat" i],
footer [class*="pdf" i] {
  display: none !important;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column !important;
  }

  .footer-nacc-logo {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) footer.about-clean-footer {
  background: var(--navy) !important;
  color: white !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
  text-align: center !important;
  overflow: hidden !important;
}

body:has(#about) .about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 90px !important;
}

body:has(#about) .about-footer-nacc-logo {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
}

body:has(#about) .about-footer-text {
  text-align: center !important;
}

body:has(#about) footer.about-clean-footer a,
body:has(#about) footer.about-clean-footer object,
body:has(#about) footer.about-clean-footer embed,
body:has(#about) footer.about-clean-footer iframe,
body:has(#about) footer.about-clean-footer button,
body:has(#about) footer.about-clean-footer svg,
body:has(#about) footer.about-clean-footer [class*="adobe" i],
body:has(#about) footer.about-clean-footer [class*="acrobat" i],
body:has(#about) footer.about-clean-footer [class*="pdf" i],
body:has(#about) footer.about-clean-footer [id*="adobe" i],
body:has(#about) footer.about-clean-footer [id*="acrobat" i],
body:has(#about) footer.about-clean-footer [id*="pdf" i] {
  display: none !important;
}

body:has(#about) footer.about-clean-footer img:not(.about-footer-nacc-logo) {
  display: none !important;
}

@media (max-width: 640px) {
  body:has(#about) .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body:has(#about) .about-footer-nacc-logo {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) .about-panel a.youtube-link {
  color: var(--gold) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-panel a.youtube-link::before,
body:has(#about) .about-panel a.youtube-link::after {
  content: none !important;
  display: none !important;
}

body:has(#about) .about-panel object,
body:has(#about) .about-panel embed,
body:has(#about) .about-panel iframe,
body:has(#about) .about-panel img,
body:has(#about) .about-panel svg,
body:has(#about) .about-panel [class*="pdf" i],
body:has(#about) .about-panel [class*="adobe" i],
body:has(#about) .about-panel [class*="acrobat" i] {
  display: none !important;
}

body:has(#about) .about-panel {
  min-height: 80px;
}

body:has(#about) .about-panel p {
  margin-bottom: 14px;
}

body:has(#about) .about-panel p:last-child {
  margin-bottom: 0;
}

body:has(#about) .about-panel a,
body:has(#about) .about-panel object,
body:has(#about) .about-panel embed,
body:has(#about) .about-panel iframe,
body:has(#about) .about-panel img,
body:has(#about) .about-panel svg {
  display: none !important;
}

body:has(#about) .about-panel a.youtube-link-clean {
  display: inline !important;
  color: var(--gold) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-panel a.youtube-link-clean::before,
body:has(#about) .about-panel a.youtube-link-clean::after {
  content: none !important;
  display: none !important;
}

body:has(#about) .about-panel object,
body:has(#about) .about-panel embed,
body:has(#about) .about-panel iframe,
body:has(#about) .about-panel img,
body:has(#about) .about-panel svg,
body:has(#about) .about-panel [class*="pdf" i],
body:has(#about) .about-panel [class*="adobe" i],
body:has(#about) .about-panel [class*="acrobat" i] {
  display: none !important;
}

body:has(#about) .about-panel a,
body:has(#about) .about-panel object,
body:has(#about) .about-panel embed,
body:has(#about) .about-panel iframe,
body:has(#about) .about-panel img,
body:has(#about) .about-panel svg {
  display: none !important;
}

body:has(#about) footer.about-clean-footer {
  background: var(--navy) !important;
  color: white !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
  text-align: center !important;
  overflow: hidden !important;
}

body:has(#about) .about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 90px !important;
}

body:has(#about) .about-footer-nacc-logo {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
}

body:has(#about) .about-footer-nacc-logo svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

body:has(#about) .about-footer-text {
  text-align: center !important;
}

body:has(#about) footer.about-clean-footer img,
body:has(#about) footer.about-clean-footer a,
body:has(#about) footer.about-clean-footer object,
body:has(#about) footer.about-clean-footer embed,
body:has(#about) footer.about-clean-footer iframe,
body:has(#about) footer.about-clean-footer button,
body:has(#about) footer.about-clean-footer [class*="pdf" i],
body:has(#about) footer.about-clean-footer [class*="adobe" i],
body:has(#about) footer.about-clean-footer [class*="acrobat" i] {
  display: none !important;
}

@media (max-width: 640px) {
  body:has(#about) .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body:has(#about) .about-footer-nacc-logo {
    position: static !important;
    transform: none !important;
  }
}

.price-cards .birthday .birthday-care-note {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

body:has(#about) footer.about-clean-footer {
  background: var(--navy) !important;
  color: white !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
  text-align: center !important;
  overflow: hidden !important;
}

body:has(#about) .about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 90px !important;
}

body:has(#about) .about-footer-nacc-logo {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
}

body:has(#about) .about-footer-nacc-logo svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

body:has(#about) .about-footer-text {
  text-align: center !important;
}

@media (max-width: 640px) {
  body:has(#about) .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body:has(#about) .about-footer-nacc-logo {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) footer.about-clean-footer {
  background: var(--navy) !important;
  color: #ffffff !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
  text-align: center !important;
  overflow: visible !important;
}

body:has(#about) footer.about-clean-footer .about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  min-height: 90px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body:has(#about) footer.about-clean-footer .nacc-footer-badge {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 5 !important;
}

body:has(#about) footer.about-clean-footer .nacc-footer-badge svg,
body:has(#about) footer.about-clean-footer svg.nacc-footer-svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 147px !important;
  height: auto !important;
  max-width: none !important;
}

body:has(#about) footer.about-clean-footer .about-footer-text {
  text-align: center !important;
}

body:has(#about) footer.about-clean-footer object,
body:has(#about) footer.about-clean-footer embed,
body:has(#about) footer.about-clean-footer iframe,
body:has(#about) footer.about-clean-footer a[href*=".pdf" i],
body:has(#about) footer.about-clean-footer a[href*="adobe" i],
body:has(#about) footer.about-clean-footer [class*="pdf" i]:not(.nacc-footer-badge):not(.nacc-footer-svg),
body:has(#about) footer.about-clean-footer [class*="adobe" i],
body:has(#about) footer.about-clean-footer [class*="acrobat" i] {
  display: none !important;
}

@media (max-width: 640px) {
  body:has(#about) footer.about-clean-footer .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body:has(#about) footer.about-clean-footer .nacc-footer-badge {
    position: static !important;
    transform: none !important;
  }
}

html {
  background: #fffaf3;
}

body.fade-page {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

body.fade-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  opacity: 1;
  animation: pageOverlayFadeIn 850ms cubic-bezier(0.45, 0, 0.2, 1) forwards;
  will-change: opacity;
}

body.page-is-leaving::before {
  animation: pageOverlayFadeOut 620ms cubic-bezier(0.45, 0, 0.2, 1) forwards !important;
}

@keyframes pageOverlayFadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageOverlayFadeOut {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

main,
.site-header,
footer {
  transition: opacity 620ms cubic-bezier(0.45, 0, 0.2, 1);
}

body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving footer {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.fade-page::before,
  body.page-is-leaving::before {
    animation: none !important;
    display: none !important;
  }

  main,
  .site-header,
  footer {
    transition: none !important;
  }
}

body.fade-page::before {
  opacity: 0.35 !important;
  animation: pageOverlayFadeInFast 360ms cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

body.page-is-leaving::before {
  animation: pageOverlayFadeOutFast 260ms cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes pageOverlayFadeInFast {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageOverlayFadeOutFast {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0.35;
    visibility: visible;
  }
}

main,
.site-header,
footer {
  transition: opacity 260ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving footer {
  opacity: 0.35 !important;
}

body.fade-page::before {
  opacity: 0.35 !important;
  animation: pageOverlayFadeInSmoother 520ms cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

body.page-is-leaving::before {
  animation: pageOverlayFadeOutSmoother 420ms cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes pageOverlayFadeInSmoother {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageOverlayFadeOutSmoother {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0.35;
    visibility: visible;
  }
}

main,
.site-header,
footer {
  transition: opacity 420ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving footer {
  opacity: 0.35 !important;
}

body.fade-page {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  filter: none !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%) !important;
}

body.fade-page main,
body.fade-page .site-header,
body.fade-page footer {
  opacity: 1 !important;
  transition: none !important;
}

body.fade-page::before {
  content: "";
  position: fixed;
  inset: -8%;
  z-index: 999999;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 32%, rgba(255,255,255,0.96), rgba(255,255,255,0.68) 28%, rgba(255,250,243,0.22) 48%, transparent 70%),
    radial-gradient(circle at 72% 56%, rgba(255,255,255,0.86), rgba(255,255,255,0.52) 26%, rgba(255,250,243,0.18) 48%, transparent 72%),
    radial-gradient(circle at 48% 78%, rgba(255,250,243,0.72), rgba(255,255,255,0.42) 30%, transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,250,243,0.42));
  filter: blur(18px);
  opacity: 1;
  transform: scale(1.035);
  animation: smokeRevealIn 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  will-change: opacity, filter, transform;
}

body.page-is-leaving::before {
  animation: smokeCoverOut 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving footer {
  opacity: 0.82 !important;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes smokeRevealIn {
  0% {
    opacity: 1;
    filter: blur(22px);
    transform: scale(1.045);
  }
  45% {
    opacity: 0.58;
    filter: blur(16px);
    transform: scale(1.025);
  }
  78% {
    opacity: 0.18;
    filter: blur(8px);
    transform: scale(1.008);
  }
  100% {
    opacity: 0;
    filter: blur(0);
    transform: scale(1);
    visibility: hidden;
  }
}

@keyframes smokeCoverOut {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: scale(1);
    visibility: visible;
  }
  55% {
    opacity: 0.38;
    filter: blur(10px);
    transform: scale(1.015);
  }
  100% {
    opacity: 0.72;
    filter: blur(18px);
    transform: scale(1.03);
    visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fade-page::before,
  body.page-is-leaving::before {
    animation: none !important;
    display: none !important;
  }

  body.page-is-leaving main,
  body.page-is-leaving .site-header,
  body.page-is-leaving footer {
    opacity: 1 !important;
    transition: none !important;
  }
}

body.fade-page::before,
body.page-is-leaving::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.fade-page,
body.page-is-leaving {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
}

body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving footer,
body.fade-page main,
body.fade-page .site-header,
body.fade-page footer {
  opacity: 1 !important;
  transition: none !important;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  animation-name: softBlinkOut;
}

::view-transition-new(root) {
  animation-name: softBlinkIn;
}

@keyframes softBlinkOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  45% {
    opacity: 0.55;
    filter: blur(1.5px);
    transform: scale(0.998);
  }
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.996);
  }
}

@keyframes softBlinkIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.004);
  }
  45% {
    opacity: 0.48;
    filter: blur(1.8px);
    transform: scale(1.002);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

body.is-fallback-leaving {
  opacity: 0.35 !important;
  filter: blur(2px) !important;
  transition:
    opacity 360ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 360ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

body.is-fallback-entering {
  animation: fallbackSoftOpen 520ms cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

@keyframes fallbackSoftOpen {
  0% {
    opacity: 0.35;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root),
  body.is-fallback-leaving,
  body.is-fallback-entering {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

body {
  opacity: 1;
}

body.transition-new-page {
  opacity: 0;
}

body.transition-new-page.transition-visible {
  opacity: 1;
  transition: opacity 850ms cubic-bezier(0.45, 0, 0.2, 1), filter 850ms cubic-bezier(0.45, 0, 0.2, 1);
  filter: blur(0);
}

body.transition-soft-loading {
  overflow-x: hidden;
}

.page-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  opacity: 1;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 850ms cubic-bezier(0.45, 0, 0.2, 1), filter 850ms cubic-bezier(0.45, 0, 0.2, 1);
  filter: blur(0);
}

.page-transition-layer.fade-away {
  opacity: 0;
  filter: blur(3px);
}

.page-transition-layer .site-header,
.page-transition-layer main,
.page-transition-layer footer {
  opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  body.transition-new-page,
  body.transition-new-page.transition-visible,
  .page-transition-layer,
  .page-transition-layer.fade-away {
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .page-transition-layer {
    display: none !important;
  }
}

html {
  background: #fffaf3;
}

body {
  opacity: 1;
}

body.page-fade-start {
  opacity: 0;
  filter: blur(3px);
}

body.page-fade-in {
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 900ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 900ms cubic-bezier(0.45, 0, 0.2, 1);
}

body.page-fade-out {
  opacity: 0;
  filter: blur(3px);
  transition:
    opacity 900ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 900ms cubic-bezier(0.45, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  body.page-fade-start,
  body.page-fade-in,
  body.page-fade-out {
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

body {
  opacity: 1 !important;
  filter: none !important;
}

body.seamless-transitioning {
  overflow-x: hidden;
}

.seamless-old-page,
.seamless-new-page {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  overflow: hidden;
  pointer-events: none;
  will-change: opacity, filter;
}

.seamless-old-page {
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 760ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 760ms cubic-bezier(0.45, 0, 0.2, 1);
}

.seamless-old-page.fade-out {
  opacity: 0;
  filter: blur(4px);
}

.seamless-new-page {
  opacity: 0;
  filter: blur(4px);
  transition:
    opacity 760ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 760ms cubic-bezier(0.45, 0, 0.2, 1);
}

.seamless-new-page.fade-in {
  opacity: 1;
  filter: blur(0);
}

.seamless-old-page .site-header,
.seamless-old-page main,
.seamless-old-page footer,
.seamless-new-page .site-header,
.seamless-new-page main,
.seamless-new-page footer {
  opacity: 1 !important;
  filter: none !important;
}

.seamless-preload-frame {
  position: fixed;
  width: 1px;
  height: 1px;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .seamless-old-page,
  .seamless-new-page {
    transition: none !important;
    filter: none !important;
  }
}

html {
  background: #fffaf3 !important;
}

body.final-fade-enabled {
  opacity: 0 !important;
  filter: blur(2px) !important;
  transition:
    opacity 700ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 700ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

body.final-fade-enabled.final-fade-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
}

body.final-fade-enabled.final-fade-leaving {
  opacity: 0 !important;
  filter: blur(2px) !important;
}

body.final-fade-enabled::before,
body.final-fade-enabled.page-is-leaving::before,
body.final-fade-enabled.fade-page::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

body.final-fade-enabled main,
body.final-fade-enabled .site-header,
body.final-fade-enabled footer {
  opacity: 1 !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  body.final-fade-enabled,
  body.final-fade-enabled.final-fade-visible,
  body.final-fade-enabled.final-fade-leaving {
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

body.final-fade-enabled {
  opacity: 0 !important;
  filter: blur(1px) !important;
  transition:
    opacity 420ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 420ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

body.final-fade-enabled.final-fade-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
}

body.final-fade-enabled.final-fade-leaving {
  opacity: 0.25 !important;
  filter: blur(1px) !important;
}

body.final-fade-enabled {
  opacity: 0 !important;
  filter: blur(2px) !important;
  transition:
    opacity 650ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 650ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

body.final-fade-enabled.final-fade-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
}

body.final-fade-enabled.final-fade-leaving {
  opacity: 0.08 !important;
  filter: blur(2px) !important;
}

body.final-fade-enabled {
  transition:
    opacity 780ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 780ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

body.final-fade-enabled {
  transition:
    opacity 650ms cubic-bezier(0.45, 0, 0.2, 1),
    filter 650ms cubic-bezier(0.45, 0, 0.2, 1) !important;
}

.home-hero {
  min-height: auto;
  padding-top: clamp(66px, 9vw, 118px);
  padding-bottom: clamp(54px, 7vw, 90px);
}

.home-hero .hero-copy {
  max-width: 1060px;
}

.home-hero h1 {
  max-width: 1040px;
}

.hero-lead {
  max-width: 920px;
  font-size: clamp(1.06rem, 1.55vw, 1.25rem);
  color: var(--muted);
  font-weight: 700;
}

.home-pathways {
  padding-top: clamp(44px, 6vw, 76px);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pathway-grid article {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.pathway-number {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pathway-grid h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.pathway-grid p {
  color: var(--muted);
  margin-bottom: 18px;
}

.pathway-grid a {
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.pathway-grid article:hover {
  transform: translateY(-3px);
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 16px 38px rgba(6, 22, 52, 0.10);
}

.home-highlight {
  align-items: center;
}

.home-highlight p {
  color: var(--muted);
  font-weight: 700;
}

.highlight-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 42px rgba(6, 22, 52, 0.16);
}

.highlight-card h3 {
  color: white;
}

.highlight-card ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.highlight-card li {
  margin-bottom: 10px;
  font-weight: 800;
}

.home-route {
  padding-top: 0;
}

.route-card {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 42px rgba(6, 22, 52, 0.16);
}

.route-card h2,
.route-card .eyebrow {
  color: white;
}

.route-card p {
  margin-bottom: 0;
  max-width: 760px;
}

.route-card .cta-actions {
  justify-content: flex-end;
}

.route-card .button {
  min-width: 225px;
  text-align: center;
}

@media (max-width: 980px) {
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card {
    grid-template-columns: 1fr;
  }

  .route-card .cta-actions {
    justify-content: flex-start;
  }
}

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

.pathway-number {
  display: none !important;
}

.route-card .cta-actions .button {
  min-width: 225px !important;
  text-align: center !important;
}

.route-card .cta-actions .ready-yes-button {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

.route-card .cta-actions .ready-yes-button:hover,
.route-card .cta-actions .ready-book-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

.route-card .cta-actions .ready-contact-button:hover {
  background: #ffffff !important;
  color: var(--navy) !important;
  border-color: #ffffff !important;
}

.route-card {
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
}

.route-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 225px;
  align-items: center;
  column-gap: 26px;
}

.route-copy .ready-yes-button {
  justify-self: center;
  align-self: center;
  width: 225px;
  min-width: 225px !important;
  text-align: center;
}

.route-card > .cta-actions {
  justify-content: flex-end !important;
  align-items: center !important;
}

@media (max-width: 980px) {
  .route-card {
    grid-template-columns: 1fr !important;
  }

  .route-copy {
    grid-template-columns: 1fr !important;
    row-gap: 18px;
  }

  .route-copy .ready-yes-button {
    justify-self: start;
  }
}

.route-copy {
  display: block !important;
}

.route-top-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}

.route-top-row .eyebrow {
  margin-bottom: 0 !important;
}

.route-top-row .ready-yes-button {
  width: 225px;
  min-width: 225px !important;
  text-align: center;
}

@media (max-width: 640px) {
  .route-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.route-top-row .ready-yes-button {
  position: relative;
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

.route-top-row .ready-yes-button .yes-hover {
  display: none;
}

.route-top-row .ready-yes-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

.route-top-row .ready-yes-button:hover .yes-default {
  display: none;
}

.route-top-row .ready-yes-button:hover .yes-hover {
  display: inline;
}

.comfort-trust-accent {
  color: var(--orange) !important;
}

.contact-grid .whatsapp-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-grid .whatsapp-contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #25D366;
  border-radius: 50%;
  color: #25D366;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.contact-grid .whatsapp-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-grid .whatsapp-contact-text strong {
  overflow-wrap: anywhere;
}

.facilities-section .facilities-lead {
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.facilities-grid article,
.facility-support-panel {
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
}

.facilities-grid h3,
.facility-support-panel h3 {
  color: var(--navy);
}

.facilities-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.facility-support-panel {
  margin-top: 20px;
  background: var(--navy);
  color: white;
}

.facility-support-panel h3 {
  color: white;
}

.facility-support-panel ul {
  columns: 2;
  gap: 34px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.facility-support-panel li {
  margin-bottom: 10px;
  font-weight: 800;
  break-inside: avoid;
}

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

  .facility-support-panel ul {
    columns: 1;
  }
}

#facilities .facility-support-panel {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

#facilities + .cta-panel {
  margin-top: 18px !important;
}

.inline-heart,
.contact-heart-inline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

body:has(#contact) .contact-grid {
  display: grid !important;
}

body:has(#contact) .home-safety-contact-card {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: min(100%, 520px) !important;
}

body:has(#contact) .contact-red-plus,
body:has(#contact) .home-icon-plus,
body:has(#contact) .shield-plus {
  color: #d11f1f !important;
}

.price-orange {
  color: var(--orange) !important;
}

body:has(#areas) .outside-area-note {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  max-width: 720px;
}

body:has(#areas) .outside-area-note {
  max-width: 900px !important;
  width: 100% !important;
  margin-top: 14px !important;
  overflow-wrap: normal !important;
  text-wrap: pretty;
}

body:has(#areas) .areas-text-width-wrap {
  width: min(100%, 720px) !important;
  max-width: 720px !important;
}

body:has(#areas) .areas-text-width-wrap p,
body:has(#areas) .areas-text-width-wrap .outside-area-note {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body:has(#areas) .outside-area-note {
  margin-top: 14px !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  text-wrap: pretty;
}

body:has(#areas) .outside-area-note {
  color: var(--muted) !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

body:has(#areas) .outside-area-note {
  display: block !important;
  max-width: 720px !important;
  width: 100% !important;
  margin-top: 14px !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  box-sizing: border-box !important;
}

body:has(#areas) .areas-support-text {
  width: 100% !important;
  max-width: 760px !important;
}

body:has(#areas) .local-care-cities {
  display: inline !important;
  white-space: normal !important;
}

body:has(#areas) .city-pin {
  color: #d11f1f !important;
  margin-right: 4px !important;
}

body:has(#areas) .outside-area-note {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin-top: 14px !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  box-sizing: border-box !important;
}

body:has(#facilities) .facilities-grid {
  margin-bottom: 20px !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 0 !important;
}

body:has(#facilities) .facilities-grid {
  gap: 18px !important;
  margin-bottom: 18px !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 0 !important;
}

body:has(#facilities) .facilities-section {
  padding-bottom: 36px !important;
}

body:has(#facilities) .facilities-grid {
  margin-bottom: 36px !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 10px !important;
}

body:has(#facilities) .facilities-grid {
  margin-bottom: 20px !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 20px !important;
}

body:has(#facilities) .facilities-grid {
  gap: 18px !important;
  margin-bottom: 0 !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

body:has(#facilities) .facilities-section {
  padding-bottom: clamp(42px, 6vw, 76px) !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 0 !important;
}

body:has(#facilities) .facilities-grid {
  gap: 18px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

body:has(#facilities) .facilities-section {
  padding-bottom: clamp(42px, 6vw, 76px) !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 0 !important;
}

body:has(#facilities) .facilities-grid article,
body:has(#facilities) .facility-support-panel {
  padding: 24px !important;
  border-radius: 22px !important;
}

body:has(#facilities) .facility-support-panel {
  margin-top: 36px !important;
  margin-bottom: 0 !important;
}

body:has(#facilities) .facilities-section {
  padding-bottom: 18px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 0 !important;
}

body:has(#facilities) .facilities-section {
  padding-bottom: 36px !important;
}

body:has(#facilities) #facilities + .cta-panel {
  margin-top: 10px !important;
}

body:has(#contact) .support-heart-orange {
  color: var(--orange) !important;
}

body:has(#contact) .support-heart-orange {
  color: var(--orange) !important;
}

body:has(#contact) .support-heart-orange {
  color: var(--orange) !important;
  white-space: nowrap !important;
}

body:has(#contact) h1,
body:has(#contact) h2 {
  text-wrap: balance;
}

body:has(#contact) .support-heart-orange {
  color: var(--orange) !important;
}

body:has(#contact) .comfort-trust-accent {
  color: var(--orange) !important;
}

body:has(#contact) h2 .comfort-trust-accent {
  color: var(--orange) !important;
}

body:has(#contact) .contact-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body:has(#contact) .home-safety-contact-card {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: calc((100% - 18px) / 2) !important;
  max-width: calc((100% - 18px) / 2) !important;
  min-height: unset !important;
  height: auto !important;
  box-sizing: border-box !important;
}

body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card .home-safety-icon,
body:has(#contact) .home-safety-contact-card .home-safety-icon *,
body:has(#contact) .home-safety-contact-card .shield-icon,
body:has(#contact) .home-safety-contact-card .shield-icon *,
body:has(#contact) .home-safety-contact-card .contact-red-plus,
body:has(#contact) .home-safety-contact-card .home-icon-plus,
body:has(#contact) .home-safety-contact-card .shield-plus {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

@media (max-width: 760px) {
  body:has(#contact) .contact-grid {
    grid-template-columns: 1fr !important;
  }

  body:has(#contact) .home-safety-contact-card {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

body:has(#contact) .contact-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body:has(#contact) .contact-grid > a,
body:has(#contact) .contact-grid > article,
body:has(#contact) .contact-card-even,
body:has(#contact) .phone-contact-card,
body:has(#contact) .whatsapp-contact-card,
body:has(#contact) .home-safety-contact-card {
  width: 100% !important;
  max-width: none !important;
  min-height: 132px !important;
  height: 132px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
}

body:has(#contact) .home-safety-contact-card {
  grid-column: 2 / 3 !important;
  justify-self: stretch !important;
}

body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card [class*="shield" i],
body:has(#contact) .home-safety-contact-card [class*="shield" i] *,
body:has(#contact) .home-safety-contact-card [class*="home" i],
body:has(#contact) .home-safety-contact-card [class*="home" i] *,
body:has(#contact) .home-safety-contact-card [class*="safety" i],
body:has(#contact) .home-safety-contact-card [class*="safety" i] *,
body:has(#contact) .home-safety-contact-card .contact-red-plus,
body:has(#contact) .home-safety-contact-card .home-icon-plus,
body:has(#contact) .home-safety-contact-card .shield-plus {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

@media (max-width: 980px) {
  body:has(#contact) .contact-grid {
    grid-template-columns: 1fr !important;
  }

  body:has(#contact) .home-safety-contact-card {
    grid-column: auto !important;
  }

  body:has(#contact) .contact-grid > a,
  body:has(#contact) .contact-grid > article,
  body:has(#contact) .contact-card-even,
  body:has(#contact) .phone-contact-card,
  body:has(#contact) .whatsapp-contact-card,
  body:has(#contact) .home-safety-contact-card {
    height: auto !important;
    min-height: 126px !important;
  }
}

body:has(#contact) .home-safety-contact-card,
body:has(#contact) .home-safety-contact-card span,
body:has(#contact) .home-safety-contact-card strong,
body:has(#contact) .home-safety-contact-card div,
body:has(#contact) .home-safety-contact-card p {
  color: var(--navy) !important;
}

body:has(#contact) .home-safety-contact-card .home-safety-icon,
body:has(#contact) .home-safety-contact-card .home-safety-icon *,
body:has(#contact) .home-safety-contact-card .shield-icon,
body:has(#contact) .home-safety-contact-card .shield-icon *,
body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card .contact-red-plus,
body:has(#contact) .home-safety-contact-card .home-icon-plus,
body:has(#contact) .home-safety-contact-card .shield-plus {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

body:has(#contact) .home-safety-contact-card,
body:has(#contact) .home-safety-contact-card div,
body:has(#contact) .home-safety-contact-card span:not(.home-safety-icon):not(.shield-icon):not(.contact-red-plus):not(.home-icon-plus):not(.shield-plus),
body:has(#contact) .home-safety-contact-card strong,
body:has(#contact) .home-safety-contact-card p {
  color: var(--navy) !important;
}

body:has(#contact) .home-safety-contact-card .home-safety-icon,
body:has(#contact) .home-safety-contact-card .home-safety-icon *,
body:has(#contact) .home-safety-contact-card .shield-icon,
body:has(#contact) .home-safety-contact-card .shield-icon *,
body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card .contact-red-plus,
body:has(#contact) .home-safety-contact-card .home-icon-plus,
body:has(#contact) .home-safety-contact-card .shield-plus {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

body:has(#contact) .home-safety-contact-card .home-safety-contact-text,
body:has(#contact) .home-safety-contact-card .home-safety-contact-text *,
body:has(#contact) .home-safety-contact-card .phone-contact-text,
body:has(#contact) .home-safety-contact-card .phone-contact-text *,
body:has(#contact) .home-safety-contact-card .whatsapp-contact-text,
body:has(#contact) .home-safety-contact-card .whatsapp-contact-text *,
body:has(#contact) .home-safety-contact-card strong,
body:has(#contact) .home-safety-contact-card p,
body:has(#contact) .home-safety-contact-card span:not([class*="icon" i]):not([class*="plus" i]):not([class*="shield" i]) {
  color: #061634 !important;
  fill: #061634 !important;
  stroke: none !important;
}

body:has(#contact) .home-safety-contact-card [class*="icon" i],
body:has(#contact) .home-safety-contact-card [class*="icon" i] *,
body:has(#contact) .home-safety-contact-card [class*="shield" i],
body:has(#contact) .home-safety-contact-card [class*="shield" i] *,
body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card [class*="plus" i] {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

body:has(#contact) .home-safety-contact-card,
body:has(#contact) .home-safety-contact-card div,
body:has(#contact) .home-safety-contact-card strong,
body:has(#contact) .home-safety-contact-card p,
body:has(#contact) .home-safety-contact-card span:not([class*="icon" i]):not([class*="shield" i]):not([class*="plus" i]) {
  color: #061634 !important;
}

body:has(#contact) .home-safety-contact-card svg,
body:has(#contact) .home-safety-contact-card svg *,
body:has(#contact) .home-safety-contact-card [class*="icon" i],
body:has(#contact) .home-safety-contact-card [class*="icon" i] *,
body:has(#contact) .home-safety-contact-card [class*="shield" i],
body:has(#contact) .home-safety-contact-card [class*="shield" i] *,
body:has(#contact) .home-safety-contact-card [class*="plus" i],
body:has(#contact) .home-safety-contact-card [class*="plus" i] * {
  color: #d11f1f !important;
  fill: #d11f1f !important;
  stroke: #d11f1f !important;
}

body:has(#pricing) .birthday-cake,
body:has(#pricing) .cake-icon,
body:has(#pricing) .birthday img,
body:has(#pricing) img[src*="cake" i] {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  align-self: center !important;
  justify-self: center !important;
}

body:has(#pricing) .birthday {
  text-align: center !important;
}

.price-orange {
  color: var(--orange) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

body:has(#pricing) .price-cards article,
body:has(#pricing) .price-card {
  display: flex !important;
  flex-direction: column !important;
}

body:has(#pricing) .price-cards article h3,
body:has(#pricing) .price-card h3 {
  min-height: 58px !important;
}

body:has(#pricing) .price-cards article ul,
body:has(#pricing) .price-card ul {
  margin-top: 14px !important;
}

body:has(#pricing) .price-cards article:has(.price-orange) .price,
body:has(#pricing) .price-card:has(.price-orange) .price {
  margin-top: 0 !important;
}

.footer-inner,
.about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  min-height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-nacc-logo-right,
.nacc-footer-badge-right {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  border: 0 !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nacc-footer-badge-right svg {
  display: block !important;
  width: 147px !important;
  height: auto !important;
}

.footer-nacc-logo,
.about-footer-nacc-logo,
.nacc-footer-badge {
  left: 0 !important;
}

.footer-text,
.about-footer-text {
  text-align: center !important;
  max-width: 620px !important;
}

@media (max-width: 760px) {
  .footer-inner,
  .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-nacc-logo,
  .about-footer-nacc-logo,
  .nacc-footer-badge,
  .footer-nacc-logo-right,
  .nacc-footer-badge-right {
    position: static !important;
    transform: none !important;
  }
}

.footer-cpr-logo-right {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  border: 0 !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 760px) {
  .footer-cpr-logo-right {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) .footer-cpr-logo-right {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  body:has(#about) .footer-cpr-logo-right {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) footer.about-clean-footer {
  background: var(--navy) !important;
  color: #ffffff !important;
  padding: 28px clamp(18px, 5vw, 72px) !important;
  text-align: center !important;
  overflow: visible !important;
}

body:has(#about) footer.about-clean-footer .about-footer-inner {
  position: relative !important;
  max-width: 980px !important;
  min-height: 90px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body:has(#about) footer.about-clean-footer .nacc-footer-badge {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

body:has(#about) footer.about-clean-footer .nacc-footer-badge svg,
body:has(#about) footer.about-clean-footer svg.nacc-footer-svg {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 147px !important;
  height: auto !important;
}

body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
  width: 147px !important;
  height: auto !important;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body:has(#about) footer.about-clean-footer .about-footer-text {
  text-align: center !important;
  max-width: 620px !important;
  margin: 0 auto !important;
}

body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right,
body:has(#about) footer.about-clean-footer .nacc-footer-badge,
body:has(#about) footer.about-clean-footer .nacc-footer-badge svg {
  display: block !important;
}

@media (max-width: 760px) {
  body:has(#about) footer.about-clean-footer .about-footer-inner {
    flex-direction: column !important;
    gap: 12px !important;
  }

  body:has(#about) footer.about-clean-footer .nacc-footer-badge,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
    position: static !important;
    transform: none !important;
  }
}

body:has(#about) .about-youtube-link {
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-youtube-link {
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-youtube-link {
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-youtube-link {
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .about-youtube-link {
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

body:has(#about) .youtube-visible-paragraph {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(#about) .youtube-visible-paragraph .about-youtube-link {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--orange) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}

.heart-bullet-list {
  list-style: none !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
}

.heart-bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.heart-bullet-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

body:has(#services) .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

body:has(#services) .services-grid article {
  min-height: 210px !important;
}

body:has(#services) .transport-medical {
  grid-column: 1 !important;
}

body:has(#services) .transport-right-1 {
  grid-column: 2 !important;
}

body:has(#services) .transport-personal {
  grid-column: 1 !important;
}

body:has(#services) .transport-right-2 {
  grid-column: 2 !important;
}

body:has(#services) .transport-spacer-box {
  padding: 24px !important;
  border-radius: 22px !important;
  background: white !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  min-height: 210px !important;
  box-sizing: border-box !important;
}

body:has(#services) .transport-spacer-box h3,
body:has(#services) .transport-spacer-box .spacer-box-content {
  visibility: hidden !important;
}

@media (max-width: 760px) {
  body:has(#services) .services-grid {
    grid-template-columns: 1fr !important;
  }

  body:has(#services) .transport-medical,
  body:has(#services) .transport-right-1,
  body:has(#services) .transport-personal,
  body:has(#services) .transport-right-2 {
    grid-column: auto !important;
  }

  body:has(#services) .transport-spacer-box {
    display: none !important;
  }
}

body:has(#services) .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

body:has(#services) .transport-medical {
  grid-column: 1 !important;
}

body:has(#services) .transport-personal {
  grid-column: 2 !important;
}

body:has(#services) .transport-right-1 {
  grid-column: 3 !important;
}

body:has(#services) .transport-right-2 {
  grid-column: 4 !important;
}

body:has(#services) .transport-card,
body:has(#services) .transport-spacer-box {
  min-height: 210px !important;
  height: 100% !important;
}

@media (max-width: 1100px) {
  body:has(#services) .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:has(#services) .transport-medical {
    grid-column: 1 !important;
  }

  body:has(#services) .transport-personal {
    grid-column: 2 !important;
  }

  body:has(#services) .transport-right-1,
  body:has(#services) .transport-right-2 {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body:has(#services) .services-grid {
    grid-template-columns: 1fr !important;
  }

  body:has(#services) .transport-medical,
  body:has(#services) .transport-personal {
    grid-column: auto !important;
  }
}

body:has(#services) .rom-exercise-card {
  grid-column: 3 !important;
  padding: 24px !important;
  border-radius: 22px !important;
  background: white !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  min-height: 210px !important;
  box-sizing: border-box !important;
}

body:has(#services) .rom-exercise-card .service-check {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(225, 137, 15, 0.12) !important;
  color: var(--orange) !important;
  font-weight: 900 !important;
  font-size: 1.25rem !important;
  margin-bottom: 14px !important;
}

body:has(#services) .rom-exercise-card h3 {
  color: var(--navy) !important;
}

body:has(#services) .rom-exercise-card p {
  color: var(--muted) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 1100px) {
  body:has(#services) .rom-exercise-card {
    grid-column: auto !important;
  }
}

body:has(#services) .rom-exercise-card .service-check {
  display: none !important;
}

body:has(#services) .rom-exercise-card {
  grid-column: 1 !important;
}

body:has(#services) .transport-medical {
  grid-column: 2 !important;
}

body:has(#services) .transport-personal {
  grid-column: 3 !important;
}

body:has(#services) .transport-right-2 {
  grid-column: 4 !important;
}

@media (max-width: 1100px) {
  body:has(#services) .rom-exercise-card,
  body:has(#services) .transport-medical,
  body:has(#services) .transport-personal {
    grid-column: auto !important;
  }
}

body:has(#services) .rom-exercise-card {
  grid-column: 1 !important;
  grid-row: auto !important;
}

body:has(#services) .transport-right-2 {
  grid-column: 4 !important;
  grid-row: auto !important;
}

body:has(#services) .transport-medical {
  grid-column: 2 !important;
}

body:has(#services) .transport-personal {
  grid-column: 3 !important;
}

body:has(#services) .rom-exercise-card {
  grid-column: auto !important;
  grid-row: auto !important;
}

body:has(#services) .transport-medical {
  grid-column: 2 !important;
  grid-row: auto !important;
}

body:has(#services) .transport-personal {
  grid-column: 3 !important;
  grid-row: auto !important;
}

body:has(#services) .transport-right-2 {
  grid-column: 4 !important;
  grid-row: auto !important;
}

body:has(#services) .transport-personal-duplicate {
  grid-column: 4 !important;
  grid-row: auto !important;
  padding: 24px !important;
  border-radius: 22px !important;
  background: white !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  min-height: 210px !important;
  box-sizing: border-box !important;
}

@media (max-width: 1100px) {
  body:has(#services) .transport-personal-duplicate {
    grid-column: auto !important;
  }
}

body:has(#services) .transport-personal-duplicate {
  grid-column: 4 !important;
  grid-row: 3 !important;
  padding: 24px !important;
  border-radius: 22px !important;
  background: white !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06) !important;
  min-height: 210px !important;
  box-sizing: border-box !important;
}

@media (max-width: 1100px) {
  body:has(#services) .transport-personal-duplicate {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

body:has(#facilities) .facility-heading-orange {
  color: var(--orange) !important;
}

body:has(#facilities) .facility-heading-orange {
  color: var(--orange) !important;
}

body:has(#pricing) .price-card h3,
body:has(#pricing) .price-cards article h3,
body:has(#pricing) .pricing-card h3 {
  color: var(--navy) !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

body:has(#areas) .areas-support-text {
  color: var(--muted) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
}

body:has(#pricing) .rates-note,
body:has(#pricing) .pricing-note,
body:has(#pricing) .price-note,
body:has(#pricing) .fine-print,
body:has(#pricing) p:has(.price-orange) + p,
body:has(#pricing) p {
  font-family: inherit !important;
}

body:has(#pricing) .rates-note {
  color: var(--muted) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.65 !important;
  letter-spacing: normal !important;
}

body:has(#areas) .areas-support-text {
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
}

body:has(#areas) .areas-support-text {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  line-height: 1.55 !important;
}

body:has(#pricing) .rates-note {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  line-height: 1.55 !important;
  font-family: inherit !important;
}

body:has(#pricing) .rates-note {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  line-height: 1.55 !important;
  font-family: inherit !important;
  font-weight: 700 !important;
}

body:has(#pricing) .price-card h3,
body:has(#pricing) .price-cards article h3,
body:has(#pricing) .pricing-card h3 {
  font-weight: 800 !important;
}

body:has(#pricing) .price-card h3,
body:has(#pricing) .price-cards article h3,
body:has(#pricing) .pricing-card h3 {
  font-weight: 800 !important;
}

body:has(#pricing) .professional-care-starting-bold {
  font-weight: 900 !important;
}

body:has(#pricing) .new-client-consultation-bold-black {
  color: #061634 !important;
  font-weight: 900 !important;
}

body:has(#pricing) .professional-care-starting-bold {
  color: #061634 !important;
}

.site-header nav a.active-page,
.site-header nav a.nav-active,
.site-header nav a[aria-current="page"] {
  color: var(--orange) !important;
}

.site-header nav a.active-page::after,
.site-header nav a.nav-active::after,
.site-header nav a[aria-current="page"]::after {
  width: 100% !important;
  opacity: 1 !important;
}

body:has(#pricing) .birthday-top-line {
  color: var(--orange) !important;
  font-size: inherit !important;
  font-weight: 900 !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-hours-line {
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-top-line {
  color: var(--orange) !important;
  font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  display: inline-block !important;
}

body:has(#pricing) .birthday-hours-line {
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-hours-lower {
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  display: inline !important;
}

body:has(#pricing) .birthday-top-line {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem) !important;
}

body:has(#pricing) .birthday-lower-line {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-lower-line {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-lower-line {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-lower-line {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

body:has(#pricing) .birthday-cake,
body:has(#pricing) .cake-icon,
body:has(#pricing) img[src*="cake" i],
body:has(#pricing) img[src*="birthday" i] {
  display: none !important;
}

body:has(#pricing) .birthday-top-line {
  color: var(--orange) !important;
  font-size: clamp(1.375rem, 3.125vw, 2.125rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  display: inline-block !important;
}

body:has(#pricing) .birthday-lower-text {
  margin-top: 14px !important;
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1.55 !important;
}

body:has(#pricing) .birthday-cake-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 16px !important;
}

body:has(#pricing) .birthday-cake-row .birthday-cake {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2.9rem !important;
  line-height: 1 !important;
  width: 74px !important;
  height: 74px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(#pricing) .birthday-cake-left,
body:has(#pricing) .birthday-cake-right {
  justify-self: center !important;
}

body:has(#pricing) .birthday-cake-row {
  margin-top: 8px !important;
  transform: translateY(-50%) !important;
}

body:has(#pricing) .birthday-cake-left {
  justify-self: start !important;
  transform: translateX(-50%) !important;
}

body:has(#pricing) .birthday-cake-right {
  justify-self: end !important;
  transform: translateX(50%) !important;
}

body:has(#pricing) .professional-referral-note {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}

body:has(#pricing) .professional-referral-note {
  color: var(--navy) !important;
  font-size: 0.82rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  margin-top: 14px !important;
}

body:has(#pricing) .professional-referral-note {
  font-size: calc(0.82rem + 2pt) !important;
}

body:has(#pricing) .rates-box-trim {
  padding-bottom: calc(24px - 1em) !important;
  box-sizing: border-box !important;
}

body:has(#pricing) .professional-care-card.rates-box-trim,
body:has(#pricing) .new-client-card.rates-box-trim,
body:has(#pricing) .birthday.rates-box-trim {
  padding-bottom: calc(24px - 1em) !important;
}

body:has(#pricing) .price-cards,
body:has(#pricing) .pricing-cards {
  align-items: start !important;
}

body:has(#pricing) .price-grid,
body:has(#pricing) .price-cards,
body:has(#pricing) .pricing-cards {
  align-items: stretch !important;
}

body:has(#pricing) .rates-box-equal,
body:has(#pricing) .professional-care-card.rates-box-equal,
body:has(#pricing) .new-client-card.rates-box-equal,
body:has(#pricing) .birthday.rates-box-equal {
  height: 100% !important;
  min-height: 0 !important;
  padding-bottom: calc(24px - 1em) !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
}

.privacy-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(6, 22, 52, 0.06);
  padding: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.privacy-panel h3 {
  color: var(--navy);
  font-weight: 800;
  margin: 22px 0 8px;
}

.privacy-panel p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

body:has(#areas) .areas-support-text {
  color: #d0f8e0 !important;
}

body:has(#areas) .areas-support-text {
  color: #90d8f0 !important;
}

.footer-police-badge {
  height: 62px !important;
  width: max-content !important;
  min-width: 0 !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  border: 4px solid #e1890f !important;
  background: #ffffff !important;
  color: #061634 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  position: absolute !important;
  left: 160px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 11 !important;
}

.footer-police-badge span {
  display: block !important;
}

body:has(#about) footer.about-clean-footer .footer-police-badge {
  position: absolute !important;
  left: 160px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 760px) {
  .footer-police-badge,
  body:has(#about) footer.about-clean-footer .footer-police-badge {
    position: static !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

.footer-inner,
.about-footer-inner {
  overflow: visible !important;
}

.footer-police-badge {
  height: 88px !important;
  min-height: 88px !important;
  width: max-content !important;
  padding: 0 18px !important;
  position: absolute !important;
  left: -170px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
  border: 4px solid #e1890f !important;
  background: #ffffff !important;
  color: #061634 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  white-space: nowrap !important;
  z-index: 12 !important;
}

body:has(#about) footer.about-clean-footer .footer-police-badge {
  height: 88px !important;
  min-height: 88px !important;
  left: -170px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.footer-nacc-logo,
.about-footer-nacc-logo,
.nacc-footer-badge {
  left: 0 !important;
}

@media (max-width: 980px) {
  .footer-police-badge,
  body:has(#about) footer.about-clean-footer .footer-police-badge {
    left: 0 !important;
    top: auto !important;
    transform: none !important;
    position: relative !important;
    margin-right: 12px !important;
  }
}

@media (max-width: 760px) {
  .footer-police-badge,
  body:has(#about) footer.about-clean-footer .footer-police-badge {
    position: static !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

.footer-police-badge,
body:has(#about) footer.about-clean-footer .footer-police-badge {
  height: 58.80px !important;
  min-height: 58.80px !important;
  max-height: 58.80px !important;
  box-sizing: border-box !important;
}

.footer-police-badge span {
  line-height: 1.05 !important;
}

body:has(#contact) .contact-grid a strong,
body:has(#contact) .contact-grid article strong,
body:has(#contact) .contact-grid a h3,
body:has(#contact) .contact-grid article h3,
body:has(#contact) .contact-grid a > div:first-of-type,
body:has(#contact) .contact-grid article > div:first-of-type {
  color: #061634 !important;
}

body:has(#contact) .contact-first-line,
body:has(#contact) .contact-first-line *,
body:has(#contact) .contact-grid strong,
body:has(#contact) .contact-grid strong *,
body:has(#contact) .contact-grid h3,
body:has(#contact) .contact-grid h3 *,
body:has(#contact) .phone-contact-card strong,
body:has(#contact) .phone-contact-card strong *,
body:has(#contact) .whatsapp-contact-card strong,
body:has(#contact) .whatsapp-contact-card strong *,
body:has(#contact) .home-safety-contact-card strong,
body:has(#contact) .home-safety-contact-card strong * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
}

body:has(#contact) .contact-title-force-black,
body:has(#contact) .contact-title-force-black *,
body:has(#contact) a .contact-title-force-black,
body:has(#contact) article .contact-title-force-black {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

body:has(#contact) .contact-grid a:has(.contact-title-force-black),
body:has(#contact) .contact-grid a:has(.contact-title-force-black) *,
body:has(#contact) .contact-grid article:has(.contact-title-force-black),
body:has(#contact) .contact-grid article:has(.contact-title-force-black) * {
  color: inherit;
}

body:has(#contact) .contact-grid a:has(.contact-title-force-black) .contact-title-force-black,
body:has(#contact) .contact-grid article:has(.contact-title-force-black) .contact-title-force-black {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.footer-police-badge,
body:has(#about) footer.about-clean-footer .footer-police-badge {
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #e1890f !important;
}

.footer-cpr-logo-right,
.footer-cpr-logo,
body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
body:has(#about) footer.about-clean-footer .footer-cpr-logo {
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #e1890f !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
}

.footer-cpr-logo-right,
.footer-cpr-logo,
body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
body:has(#about) footer.about-clean-footer .footer-cpr-logo {
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #d11f1f !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
}

.footer-cpr-logo-right,
.footer-cpr-logo,
body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
body:has(#about) footer.about-clean-footer .footer-cpr-logo {
  border-color: #d11f1f !important;
  border-style: solid !important;
  outline: none !important;
  box-shadow: none !important;
}

body:has(.home-hero) .section,
body:has(.home-hero) section,
body:has(.home-hero) .home-section,
body:has(.home-hero) .cta-panel,
body:has(.home-hero) .home-choice-grid,
body:has(.home-hero) .choice-grid,
body:has(.home-hero) .cards-grid {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body:has(.home-hero) .section::before,
body:has(.home-hero) .section::after,
body:has(.home-hero) section::before,
body:has(.home-hero) section::after,
body:has(.home-hero) .cta-panel::before,
body:has(.home-hero) .cta-panel::after,
body:has(.home-hero) .home-choice-grid::before,
body:has(.home-hero) .home-choice-grid::after,
body:has(.home-hero) .choice-grid::before,
body:has(.home-hero) .choice-grid::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

body:has(.home-hero) .home-choice-grid,
body:has(.home-hero) .choice-grid,
body:has(.home-hero) .home-choice-grid + *,
body:has(.home-hero) .choice-grid + *,
body:has(.home-hero) .why-sentelligence,
body:has(.home-hero) #why-sentelligence {
  border-top: 0 !important;
}

body:has(.home-hero) h2,
body:has(.home-hero) h3,
body:has(.home-hero) .why-sentelligence h2,
body:has(.home-hero) .why-sentelligence h3,
body:has(.home-hero) #why-sentelligence h2,
body:has(.home-hero) #why-sentelligence h3,
body:has(.home-hero) .section-heading h2 {
  color: var(--navy) !important;
}

body:has(.home-hero) .comfort-trust-accent {
  color: var(--orange) !important;
  white-space: normal !important;
}

body:has(.home-hero) .cta-panel,
body:has(.home-hero) .ready-continue,
body:has(.home-hero) .ready-to-continue {
  border-top: 0 !important;
}

body:has(.home-hero) .cta-panel::before,
body:has(.home-hero) .ready-continue::before,
body:has(.home-hero) .ready-to-continue::before {
  display: none !important;
  content: none !important;
  border-top: 0 !important;
}

body:has(.home-hero) .why-sentelligence,
body:has(.home-hero) .why-sentelligence *,
body:has(.home-hero) #why-sentelligence,
body:has(.home-hero) #why-sentelligence *,
body:has(.home-hero) h2:has(+ .home-choice-grid),
body:has(.home-hero) h2,
body:has(.home-hero) .section-heading h2 {
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
}

body:has(.home-hero) .comfort-trust-accent {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

body:has(.home-hero) .section,
body:has(.home-hero) section,
body:has(.home-hero) .cta-panel,
body:has(.home-hero) .home-choice-grid,
body:has(.home-hero) .choice-grid,
body:has(.home-hero) .cards-grid {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body:has(.home-hero) .section::before,
body:has(.home-hero) .section::after,
body:has(.home-hero) section::before,
body:has(.home-hero) section::after,
body:has(.home-hero) .cta-panel::before,
body:has(.home-hero) .cta-panel::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

body:has(.home-hero) .home-accent-word {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  font-weight: inherit !important;
}

body:has(.home-hero) .comfort-trust-accent {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

body:has(.home-hero) .why-sentelligence h2,
body:has(.home-hero) .why-sentelligence h3,
body:has(.home-hero) #why-sentelligence h2,
body:has(.home-hero) #why-sentelligence h3,
body:has(.home-hero) h3 {
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  font-weight: 800 !important;
}

body:has(.home-hero) .cta-panel,
body:has(.home-hero) .ready-continue,
body:has(.home-hero) .ready-to-continue {
  border-top: 0 !important;
}

body:has(.home-hero) .cta-panel::before,
body:has(.home-hero) .ready-continue::before,
body:has(.home-hero) .ready-to-continue::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

body:has(.home-hero) .home-choice-grid,
body:has(.home-hero) .choice-grid,
body:has(.home-hero) .cards-grid,
body:has(.home-hero) .home-choice-grid + *,
body:has(.home-hero) .choice-grid + *,
body:has(.home-hero) .cards-grid + * {
  border-top: 0 !important;
}

body:has(.home-hero) .home-choice-grid::before,
body:has(.home-hero) .choice-grid::before,
body:has(.home-hero) .cards-grid::before,
body:has(.home-hero) .home-choice-grid + *::before,
body:has(.home-hero) .choice-grid + *::before,
body:has(.home-hero) .cards-grid + *::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

body:has(.home-hero) .home-highlight h2,
body:has(.home-hero) .home-highlight h3,
body:has(.home-hero) .highlight-card h3 {
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
}

body:has(.home-hero) .home-route,
body:has(.home-hero) .route-card,
body:has(.home-hero) .cta-panel {
  border-top: 0 !important;
}

body:has(.home-hero) .home-route::before,
body:has(.home-hero) .route-card::before,
body:has(.home-hero) .cta-panel::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

body:has(.home-hero) .home-accent-phrase,
body:has(.home-hero) .home-accent-phrase * {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
  font-weight: inherit !important;
}

body:has(.home-hero) .home-highlight .eyebrow,
body:has(.home-hero) .home-highlight p.eyebrow {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body:has(.home-hero) .highlight-card h3 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  font-weight: 800 !important;
}

body:has(.home-hero) .highlight-card h3 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}

body:has(.home-hero) .highlight-card .start-confidence-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #061634 !important;
  -webkit-text-fill-color: #061634 !important;
  font-weight: 800 !important;
  font-size: inherit !important;
  line-height: 1.2 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
}

body .home-highlight .highlight-card > h3.start-with-confidence-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  height: auto !important;
  width: auto !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  color: #061634 !important;
  -webkit-text-fill-color: #061634 !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  line-height: 1.2 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

body:has(.home-hero) .home-highlight .highlight-card {
  background: #061634 !important;
  border-radius: 22px !important;
  padding: 28px !important;
  border: 0 !important;
  box-shadow: none !important;
}

body:has(.home-hero) .home-highlight .highlight-card .start-confidence-example-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  line-height: 1.25 !important;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

body:has(.home-hero) .home-highlight .highlight-card ul {
  margin: 0 !important;
  padding-left: 22px !important;
  color: #ffffff !important;
}

body:has(.home-hero) .home-highlight .highlight-card li,
body:has(.home-hero) .home-highlight .highlight-card li::marker {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}

body:has(.home-hero) .home-highlight .highlight-card li {
  margin-bottom: 10px !important;
}

body:has(.home-hero) .home-pathways {
  padding-bottom: 0 !important;
  margin-bottom: 24px !important;
}

body:has(.home-hero) .home-highlight {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(.home-hero) .home-highlight.split {
  gap: 24px !important;
}

body:has(.home-hero) .pathway-grid {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  body:has(.home-hero) .home-pathways {
    margin-bottom: 20px !important;
  }

  body:has(.home-hero) .home-highlight.split {
    gap: 20px !important;
  }
}

html {
  scroll-behavior: smooth;
}

body:has(.home-hero) #start-section {
  scroll-margin-top: 110px;
}

body:has(.home-hero) #start-section-anchor {
  display: block !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  scroll-margin-top: 92px !important;
}

body:has(.home-hero) #start-section {
  scroll-margin-top: 92px !important;
}

body:has(.home-hero) .hero-actions .ready-contact-button {
  border: 2px solid #ffffff !important;
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body:has(.home-hero) .hero-actions .ready-contact-button:hover {
  background: #ffffff !important;
  color: #061634 !important;
  -webkit-text-fill-color: #061634 !important;
}

body:has(.home-hero) #start-section-anchor {
  scroll-margin-top: 18px !important;
}

body:has(.home-hero) #start-section {
  scroll-margin-top: 18px !important;
}

body:has(.home-hero) .home-hero {
  min-height: calc(100vh - 92px) !important;
  display: flex !important;
  align-items: center !important;
}

body:has(.home-hero) .home-pathways {
  margin-top: 0 !important;
}

body:has(.home-hero) #start-section-anchor,
body:has(.home-hero) #start-section {
  scroll-margin-top: 18px !important;
}

@media (max-width: 760px) {
  body:has(.home-hero) .home-hero {
    min-height: auto !important;
    padding-bottom: 42px !important;
  }
}

body:has(#pricing) main > section:first-of-type {
  min-height: calc(100vh - 92px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

body:has(#pricing) .cta-panel {
  margin-top: 48px !important;
}

@media (max-width: 760px) {
  body:has(#pricing) main > section:first-of-type {
    min-height: auto !important;
    display: block !important;
  }

  body:has(#pricing) .cta-panel {
    margin-top: 32px !important;
  }
}

body:has(#services) .comfort-trust-accent {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

body:has(#areas) .area-layout,
body:has(#areas) .areas-layout {
  align-items: start !important;
}

body:has(#areas) .map-card,
body:has(#areas) .area-map,
body:has(#areas) .areas-map {
  margin-top: -28px !important;
}

body:has(#areas) .cta-panel {
  margin-top: 22px !important;
}

body:has(#areas) main > section:last-of-type {
  margin-top: 22px !important;
}

@media (max-width: 900px) {
  body:has(#areas) .map-card,
  body:has(#areas) .area-map,
  body:has(#areas) .areas-map {
    margin-top: 0 !important;
  }

  body:has(#areas) .cta-panel {
    margin-top: 20px !important;
  }
}

body:has(#areas) .map-card,
body:has(#areas) .area-map,
body:has(#areas) .areas-map {
  margin-top: -82px !important;
  align-self: start !important;
}

body:has(#areas) .map-card img,
body:has(#areas) .area-map img,
body:has(#areas) .areas-map img {
  display: block !important;
}

body:has(#areas) .cta-panel {
  margin-top: -18px !important;
}

body:has(#areas) main > section:last-of-type {
  margin-top: -18px !important;
}

@media (max-width: 900px) {
  body:has(#areas) .map-card,
  body:has(#areas) .area-map,
  body:has(#areas) .areas-map {
    margin-top: 0 !important;
  }

  body:has(#areas) .cta-panel,
  body:has(#areas) main > section:last-of-type {
    margin-top: 20px !important;
  }
}

body:has(#areas) .area-layout,
body:has(#areas) .areas-layout {
  align-items: start !important;
}

body:has(#areas) .map-card,
body:has(#areas) .area-map,
body:has(#areas) .areas-map {
  margin-top: -132px !important;
  align-self: start !important;
}

@media (max-width: 900px) {
  body:has(#areas) .map-card,
  body:has(#areas) .area-map,
  body:has(#areas) .areas-map {
    margin-top: 0 !important;
  }
}

body:has(#areas) .area-layout,
body:has(#areas) .areas-layout {
  display: grid !important;
  align-items: end !important;
}

body:has(#areas) .map-card,
body:has(#areas) .area-map,
body:has(#areas) .areas-map {
  align-self: end !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: none !important;
}

body:has(#areas) .map-card img,
body:has(#areas) .area-map img,
body:has(#areas) .areas-map img {
  display: block !important;
  margin: 0 !important;
}

body:has(#areas) .cta-panel,
body:has(#areas) main > section:last-of-type {
  margin-top: 24px !important;
}

@media (max-width: 900px) {
  body:has(#areas) .area-layout,
  body:has(#areas) .areas-layout {
    align-items: start !important;
  }

  body:has(#areas) .map-card,
  body:has(#areas) .area-map,
  body:has(#areas) .areas-map {
    align-self: start !important;
  }
}

body:has(#areas) .map-card,
body:has(#areas) .area-map,
body:has(#areas) .areas-map {
  margin-top: -180px !important;
  align-self: start !important;
  transform: none !important;
}

body:has(#areas) .cta-panel {
  transform: none !important;
}

@media (max-width: 900px) {
  body:has(#areas) .map-card,
  body:has(#areas) .area-map,
  body:has(#areas) .areas-map {
    margin-top: 0 !important;
  }
}

body:has(#areas) .area-layout,
body:has(#areas) .areas-layout {
  align-items: end !important;
}

body:has(#areas) .areas-map-column,
body:has(#areas) .map-card.areas-map-column {
  align-self: end !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: translateY(-118px) !important;
}

body:has(#areas) .areas-map-column img,
body:has(#areas) .map-card.areas-map-column img {
  display: block !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  body:has(#areas) .areas-map-column,
  body:has(#areas) .map-card.areas-map-column {
    transform: none !important;
  }
}

body:has(#areas) main,
body:has(#areas) .subpage-main {
  padding-top: 18px !important;
}

body:has(#areas) #areas,
body:has(#areas) .areas,
body:has(#areas) .area-section,
body:has(#areas) .section:first-of-type {
  margin-top: 0 !important;
  padding-top: 18px !important;
}

body:has(#areas) .section-heading,
body:has(#areas) .areas-heading {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body:has(#areas) main,
  body:has(#areas) .subpage-main {
    padding-top: 12px !important;
  }

  body:has(#areas) #areas,
  body:has(#areas) .areas,
  body:has(#areas) .area-section,
  body:has(#areas) .section:first-of-type {
    padding-top: 12px !important;
  }
}

body:has(#areas) .cta-panel,
body:has(#areas) main > section:last-of-type {
  margin-top: calc(24px - 1.4em) !important;
}

body:has(#about) main,
body:has(#about) .subpage-main {
  padding-top: 18px !important;
}

body:has(#about) #about,
body:has(#about) .about,
body:has(#about) .section:first-of-type {
  margin-top: 0 !important;
  padding-top: 18px !important;
}

body:has(#about) .section-heading {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body:has(#about) main,
  body:has(#about) .subpage-main {
    padding-top: 12px !important;
  }

  body:has(#about) #about,
  body:has(#about) .about,
  body:has(#about) .section:first-of-type {
    padding-top: 12px !important;
  }
}

body:has(#about) main,
body:has(#about) .subpage-main {
  padding-top: calc(18px - 1.4em) !important;
}

body:has(#about) #about,
body:has(#about) .about,
body:has(#about) .section:first-of-type {
  padding-top: calc(18px - 1.4em) !important;
}

body:has(#about) .comfort-trust-accent {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

@media (max-width: 760px) {
  body:has(#about) main,
  body:has(#about) .subpage-main,
  body:has(#about) #about,
  body:has(#about) .about,
  body:has(#about) .section:first-of-type {
    padding-top: calc(12px - 1em) !important;
  }
}

body:has(#about) main,
body:has(#about) .subpage-main {
  padding-top: 18px !important;
}

body:has(#about) #about,
body:has(#about) .about,
body:has(#about) .section:first-of-type {
  padding-top: 18px !important;
}

@media (max-width: 760px) {
  body:has(#about) main,
  body:has(#about) .subpage-main,
  body:has(#about) #about,
  body:has(#about) .about,
  body:has(#about) .section:first-of-type {
    padding-top: 12px !important;
  }
}

body:has(#contact) .phone-contact-card .icon,
body:has(#contact) .email-contact-card .icon,
body:has(#contact) .contact-grid .phone-icon,
body:has(#contact) .contact-grid .email-icon,
body:has(#contact) .contact-grid svg.phone,
body:has(#contact) .contact-grid svg.email,
body:has(#contact) .contact-grid svg[aria-label*="phone" i],
body:has(#contact) .contact-grid svg[aria-label*="email" i],
body:has(#contact) .contact-grid svg[aria-label*="envelope" i] {
  color: var(--orange) !important;
  fill: var(--orange) !important;
  stroke: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

body:has(#contact) .contact-grid a[href^="tel"] > span:first-child,
body:has(#contact) .contact-grid a[href^="mailto"] > span:first-child,
body:has(#contact) .contact-grid a[href^="tel"] .contact-icon,
body:has(#contact) .contact-grid a[href^="mailto"] .contact-icon {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a,
p,
li,
h1,
h2,
h3,
span,
strong,
small {
  overflow-wrap: break-word;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .home-hero,
  .split,
  .home-highlight,
  .area-layout,
  .areas-layout,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr !important;
  }

  body:has(#services) .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:has(#services) .rom-exercise-card,
  body:has(#services) .transport-medical,
  body:has(#services) .transport-personal,
  body:has(#services) .transport-personal-duplicate,
  body:has(#services) .client-intake-card,
  body:has(#services) .transport-right-2 {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  body:has(#pricing) .price-grid,
  body:has(#pricing) .price-cards,
  body:has(#pricing) .pricing-cards {
    grid-template-columns: 1fr !important;
  }

  .cta-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .site-header .brand img {
    max-width: min(260px, 86vw) !important;
    height: auto !important;
  }

  .site-header nav {
    width: 100%;
    gap: 8px;
  }

  .site-header nav a:not(.nav-cta):not(.nav-book) {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .site-header nav .nav-cta,
  .site-header nav .nav-book {
    flex: 1 1 100%;
    justify-content: center;
  }

  .section,
  .hero,
  .subpage-main .section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .service-grid,
  body:has(#services) .service-grid,
  .pathway-grid,
  .contact-grid,
  .facility-grid,
  .facilities-grid,
  .area-grid,
  .home-choice-grid,
  .choice-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .button,
  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .privacy-panel,
  .about-panel,
  .facility-support-panel,
  .cta-panel,
  .route-card,
  .highlight-card {
    max-width: 100% !important;
  }

  body:has(#contact) .contact-grid > a,
  body:has(#contact) .contact-grid > article,
  body:has(#contact) .contact-card-even,
  body:has(#contact) .phone-contact-card,
  body:has(#contact) .whatsapp-contact-card,
  body:has(#contact) .home-safety-contact-card {
    height: auto !important;
    min-height: 116px !important;
  }

  .footer-inner,
  .about-footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: auto !important;
    text-align: center !important;
  }

  .footer-police-badge,
  .footer-nacc-logo,
  .about-footer-nacc-logo,
  .nacc-footer-badge,
  .footer-cpr-logo-right,
  .footer-cpr-logo,
  body:has(#about) footer.about-clean-footer .footer-police-badge,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 auto !important;
  }

  body:has(#pricing) .birthday-cake-row {
    gap: 10px !important;
  }
}

@media (max-width: 420px) {
  .site-header nav a:not(.nav-cta):not(.nav-book) {
    flex-basis: 100%;
  }

  .section,
  .hero,
  .subpage-main .section {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

body:has(.home-hero) .pathway-grid article {
  position: relative !important;
}

body:has(.home-hero) .pathway-grid article .pathway-card-full-link {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  color: inherit !important;
}

body:has(.home-hero) .pathway-grid article > a:not(.pathway-card-full-link) {
  position: relative !important;
  z-index: 6 !important;
}

.footer-inner,
.about-footer-inner {
  overflow: visible !important;
}

.footer-cpr-logo-right,
body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-vaccination-badge {
  width: 147px !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #d11f1f !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-sizing: border-box !important;
  display: block !important;
  position: absolute !important;
  right: -170px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  outline: none !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(#about) footer.about-clean-footer,
body:has(#about) footer.about-clean-footer .about-footer-inner {
  overflow: visible !important;
}

body:has(#about) footer.about-clean-footer .about-footer-inner {
  max-width: 980px !important;
  position: relative !important;
}

body:has(#about) footer.about-clean-footer .about-footer-text {
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  position: relative !important;
  z-index: 1 !important;
}

body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  width: 147px !important;
  height: auto !important;
  right: 0 !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
}

body:has(#about) footer.about-clean-footer img.about-footer-psw-vaccination-badge,
body:has(#about) footer.about-clean-footer img.footer-vaccination-badge.about-footer-psw-vaccination-badge {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: absolute !important;
  width: 147px !important;
  height: auto !important;
  right: -170px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 21 !important;
  padding: 0 !important;
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #d11f1f !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
  .footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer img.about-footer-psw-vaccination-badge,
  body:has(#about) footer.about-clean-footer img.footer-vaccination-badge.about-footer-psw-vaccination-badge {
    position: static !important;
    transform: none !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
  }
}

.mobile-only-pathway {
  display: none;
}

@media (min-width: 761px) {
  .pathway-grid .mobile-only-pathway {
    display: none !important;
  }
}

@media (max-width: 760px) {

  .site-header nav,
  header.site-header nav,
  header nav[aria-label="Main navigation"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .pathway-grid .mobile-only-pathway {
    display: block !important;
  }

  .pathway-grid .pathway-services-card {
    order: 1 !important;
  }

  .pathway-grid .facility-pathway-card {
    order: 2 !important;
    grid-column: auto !important;
  }

  .pathway-grid .pathway-pricing-card {
    order: 3 !important;
  }

  .pathway-grid .pathway-areas-card {
    order: 4 !important;
  }

  .pathway-grid .pathway-about-card {
    order: 5 !important;
  }

  .pathway-grid .privacy-pathway-card {
    order: 6 !important;
    grid-column: auto !important;
  }

  .explore-services-button,
  #mobile-explore-services-button {
    background: #f28c28 !important;
    border-color: #f28c28 !important;
    color: #ffffff !important;
  }

  .explore-services-button.mobile-explore-clicked,
  #mobile-explore-services-button.mobile-explore-clicked,
  .explore-services-button:focus,
  #mobile-explore-services-button:focus,
  .explore-services-button:active,
  #mobile-explore-services-button:active {
    background: #2e7d32 !important;
    border-color: #2e7d32 !important;
    color: #ffffff !important;
  }

  body:has(#about) footer.about-clean-footer .about-footer-inner,
  body.about-page footer.about-clean-footer .about-footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    text-align: center !important;
    min-height: auto !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: visible !important;
  }

  body:has(#about) footer.about-clean-footer .footer-police-badge,
  body.about-page footer.about-clean-footer .footer-police-badge {
    order: 1 !important;
  }

  body:has(#about) footer.about-clean-footer .nacc-footer-badge,
  body:has(#about) footer.about-clean-footer .about-footer-nacc-logo,
  body:has(#about) footer.about-clean-footer .footer-nacc-logo,
  body.about-page footer.about-clean-footer .nacc-footer-badge,
  body.about-page footer.about-clean-footer .about-footer-nacc-logo,
  body.about-page footer.about-clean-footer .footer-nacc-logo {
    order: 2 !important;
  }

  body:has(#about) footer.about-clean-footer .about-footer-text,
  body.about-page footer.about-clean-footer .about-footer-text {
    order: 3 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right,
  body.about-page footer.about-clean-footer img.footer-cpr-logo-right {
    order: 4 !important;
    display: block !important;
    position: static !important;
    width: 147px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body:has(#about) footer.about-clean-footer img.about-footer-psw-vaccination-badge,
  body:has(#about) footer.about-clean-footer img.footer-vaccination-badge.about-footer-psw-vaccination-badge,
  body.about-page footer.about-clean-footer img.about-footer-psw-vaccination-badge,
  body.about-page footer.about-clean-footer img.footer-vaccination-badge.about-footer-psw-vaccination-badge {
    order: 5 !important;
    display: block !important;
    position: static !important;
    width: 147px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 760px) {
  .local-care-cities .mobile-etobicoke-line {
    display: block !important;
    margin-top: 6px !important;
  }
}

.tablet-footer-break {
  display: none;
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .footer-text .tablet-footer-break,
  .about-footer-text .tablet-footer-break {
    display: block !important;
  }

  .footer-text .fine-print,
  .about-footer-text .fine-print {
    line-height: 1.45 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {

  .footer-police-badge,
  body:has(#about) footer.about-clean-footer .footer-police-badge {
    left: -78px !important;
  }

  .footer-nacc-logo,
  .about-footer-nacc-logo,
  .nacc-footer-badge,
  body:has(#about) footer.about-clean-footer .footer-nacc-logo,
  body:has(#about) footer.about-clean-footer .about-footer-nacc-logo,
  body:has(#about) footer.about-clean-footer .nacc-footer-badge {
    left: 92px !important;
  }

  .footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right {
    right: 92px !important;
  }

  .footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer img.about-footer-psw-vaccination-badge,
  body:has(#about) footer.about-clean-footer img.footer-vaccination-badge.about-footer-psw-vaccination-badge {
    right: -78px !important;
  }
}

.psw-registration-page .registration-hero {
  min-height: auto;
}

.psw-registration-page .registration-intro {
  align-items: stretch;
}

.psw-registration-page .registration-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,22,52,0.08);
}

.psw-registration-page .registration-checklist {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.psw-registration-page .registration-form-placeholder {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 2px dashed rgba(225,137,15,0.45);
  box-shadow: var(--shadow);
  text-align: center;
}

.psw-registration-page .registration-form-placeholder h3 {
  margin-bottom: 12px;
}

.psw-registration-page .registration-form-placeholder .fine-note {
  color: var(--muted);
  font-weight: 700;
}

.psw-registration-page .registration-form-section iframe {
  width: 100%;
  max-width: 860px;
  min-height: 900px;
  border: 0;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  background: #ffffff;
}

.psw-registration-page .registration-steps-grid article {
  min-height: 190px;
}

@media (max-width: 760px) {
  .psw-registration-page .registration-form-placeholder {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .psw-registration-page .registration-form-section iframe {
    min-height: 980px;
    border-radius: 14px;
  }
}

@media (max-width: 760px) {
  .pathway-grid .psw-registration-pathway-card {
    display: block !important;
    order: 7 !important;
    grid-column: auto !important;
  }
}

.psw-registration-page .psw-network-hero {
  min-height: auto;
}

.psw-registration-page .psw-network-welcome,
.psw-registration-page .psw-network-documents {
  align-items: stretch;
}

.psw-registration-page .psw-network-card,
.psw-registration-page .psw-network-cta-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,22,52,0.08);
}

.psw-registration-page .psw-network-note {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0;
}

.psw-registration-page .psw-network-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.psw-registration-page .psw-network-grid article {
  min-height: 190px;
}

.psw-registration-page .psw-network-cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid rgba(225,137,15,0.22);
}

.psw-registration-page .psw-network-button-row {
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .psw-registration-page .psw-network-card,
  .psw-registration-page .psw-network-cta-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .psw-registration-page .psw-network-button-row {
    align-items: stretch;
  }

  .psw-registration-page .psw-network-button-row .button {
    width: 100%;
  }
}

.psw-registration-page .psw-sensitive-docs-red {
  color: #d11f1f !important;
}

.psw-registration-page .section,
.psw-registration-page .hero,
.psw-registration-page .split,
.psw-registration-page .cta-panel,
.psw-registration-page .psw-network-card,
.psw-registration-page .psw-network-cta-box,
.psw-registration-page .info-card {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.psw-registration-page .psw-network-card,
.psw-registration-page .psw-network-cta-box,
.psw-registration-page .info-card {
  border-color: transparent !important;
}

.psw-registration-page main,
.psw-registration-page main section,
.psw-registration-page main .section,
.psw-registration-page main .split,
.psw-registration-page main .cta-panel,
.psw-registration-page main .psw-network-main,
.psw-registration-page main .psw-network-welcome,
.psw-registration-page main .psw-network-steps,
.psw-registration-page main .psw-network-documents,
.psw-registration-page main .psw-network-cta-section,
.psw-registration-page main .psw-network-final-note {
  border: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.psw-registration-page main .psw-network-card,
.psw-registration-page main .psw-network-cta-box,
.psw-registration-page main .info-card,
.psw-registration-page main .service-grid article,
.psw-registration-page main .registration-card,
.psw-registration-page main .registration-form-placeholder {
  border: 0 !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.psw-registration-page main section::before,
.psw-registration-page main section::after,
.psw-registration-page main .section::before,
.psw-registration-page main .section::after,
.psw-registration-page main .split::before,
.psw-registration-page main .split::after,
.psw-registration-page main .cta-panel::before,
.psw-registration-page main .cta-panel::after,
.psw-registration-page main .psw-network-card::before,
.psw-registration-page main .psw-network-card::after,
.psw-registration-page main .psw-network-cta-box::before,
.psw-registration-page main .psw-network-cta-box::after,
.psw-registration-page main .info-card::before,
.psw-registration-page main .info-card::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.psw-registration-page main .section {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.psw-registration-page main .section + .section {
  margin-top: 0 !important;
}

.psw-registration-page main .psw-network-hero {
  padding-bottom: 48px !important;
}

.psw-registration-page main .section-heading {
  margin-bottom: 24px !important;
}

.psw-registration-page main .psw-network-card,
.psw-registration-page main .psw-network-cta-box {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .psw-registration-page main .section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .psw-registration-page main .psw-network-hero {
    padding-bottom: 38px !important;
  }

  .psw-registration-page main .section-heading {
    margin-bottom: 18px !important;
  }
}

.psw-registration-page main .section {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.psw-registration-page main .section + .section {
  margin-top: 0 !important;
}

.psw-registration-page main .psw-network-hero {
  padding-top: 42px !important;
  padding-bottom: 20px !important;
}

.psw-registration-page main .section-heading {
  margin-bottom: 10px !important;
}

.psw-registration-page main .service-grid {
  gap: 14px !important;
}

.psw-registration-page main .psw-network-card,
.psw-registration-page main .psw-network-cta-box,
.psw-registration-page main .info-card {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.psw-registration-page main p {
  margin-bottom: 9px !important;
}

@media (max-width: 760px) {
  .psw-registration-page main .section {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .psw-registration-page main .psw-network-hero {
    padding-top: 32px !important;
    padding-bottom: 18px !important;
  }

  .psw-registration-page main .section-heading {
    margin-bottom: 9px !important;
  }

  .psw-registration-page main .service-grid {
    gap: 11px !important;
  }

  .psw-registration-page main p {
    margin-bottom: 8px !important;
  }
}

.psw-registration-page main .psw-network-card,
.psw-registration-page main .psw-network-cta-box,
.psw-registration-page main .info-card,
.psw-registration-page main .service-grid article,
.psw-registration-page main .registration-card,
.psw-registration-page main .registration-form-placeholder {
  border: 1px solid rgba(6,22,52,0.08) !important;
  box-shadow: var(--shadow) !important;
  outline: 0 !important;
}

.psw-registration-page main .psw-network-cta-box {
  border: 2px solid rgba(225,137,15,0.22) !important;
}

@media (max-width: 760px) {
  body.home-page .pathway-grid {
    align-items: stretch !important;
  }

  body.home-page .pathway-grid article {
    min-height: auto !important;
    height: auto !important;
    padding-top: 22px !important;
    padding-bottom: 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body.home-page .pathway-grid article h3 {
    margin-bottom: 8px !important;
  }

  body.home-page .pathway-grid article p {
    margin-bottom: 10px !important;
    flex: 0 0 auto !important;
  }

  body.home-page .pathway-grid article > a:not(.pathway-card-full-link) {
    margin-top: 0 !important;
    align-self: flex-start !important;
  }
}

.pathway-grid article {
  min-height: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding-top: 24px !important;
  padding-bottom: 22px !important;
}

.pathway-grid article h3 {
  margin-bottom: 8px !important;
}

.pathway-grid article p {
  margin-bottom: 10px !important;
  flex: 0 0 auto !important;
}

.pathway-grid article > a:not(.pathway-card-full-link) {
  margin-top: 0 !important;
  align-self: flex-start !important;
}

@media (max-width: 760px) {
  .pathway-grid article {
    padding-top: 22px !important;
    padding-bottom: 20px !important;
  }

  .pathway-grid article p {
    margin-bottom: 9px !important;
  }
}

.psw-registration-page .psw-network-cta-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.psw-registration-page .psw-network-cta-box p {
  margin-bottom: 12px !important;
}

.psw-registration-page .psw-network-cta-box .psw-network-button-row {
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.psw-registration-page .psw-network-cta-box .button {
  align-self: center !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .psw-registration-page .psw-network-cta-box {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .psw-registration-page .psw-network-cta-box .psw-network-button-row {
    margin-top: 8px !important;
    gap: 8px !important;
  }

  .psw-registration-page .psw-network-cta-box p {
    margin-bottom: 8px !important;
  }

  .psw-registration-page .psw-network-cta-box .button {
    margin-bottom: 0 !important;
  }
}

.psw-registration-page .ready-begin-section .psw-network-cta-box {
  text-align: center !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
.psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 14px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row .button,
.psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row .button {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  align-self: center !important;
  justify-self: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row .button,
  .psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row .button {
    width: 100% !important;
    max-width: 360px !important;
  }
}

.psw-registration-page .ready-begin-section .psw-network-cta-box {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
  justify-content: center !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box > *:first-child {
  margin-top: 0 !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box > *:last-child {
  margin-bottom: 0 !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
.psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {
  .psw-registration-page .ready-begin-section .psw-network-cta-box {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
  .psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
  }
}

.psw-registration-page .ready-begin-section .psw-network-cta-box {
  padding-top: 24px !important;
  padding-bottom: 14px !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
.psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .button {
  margin-bottom: 0 !important;
}

@media (max-width: 760px) {
  .psw-registration-page .ready-begin-section .psw-network-cta-box {
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }

  .psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
  .psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.psw-registration-page .ready-begin-section .psw-network-cta-box {
  padding-top: 38px !important;
  padding-bottom: 14px !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box .eyebrow {
  margin-top: 0 !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box h2,
.psw-registration-page .ready-begin-section .psw-network-cta-box p,
.psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
.psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
  transform: translateY(1.1em) !important;
}

@media (max-width: 760px) {
  .psw-registration-page .ready-begin-section .psw-network-cta-box {
    padding-top: 32px !important;
    padding-bottom: 10px !important;
  }

  .psw-registration-page .ready-begin-section .psw-network-cta-box h2,
  .psw-registration-page .ready-begin-section .psw-network-cta-box p,
  .psw-registration-page .ready-begin-section .psw-network-cta-box .psw-network-button-row,
  .psw-registration-page .ready-begin-section .psw-network-cta-box .hero-actions.psw-network-button-row {
    transform: translateY(1em) !important;
  }
}

@media (max-width: 760px) {

  .psw-registration-page .ready-begin-section .psw-network-cta-box {
    border: 1px solid rgba(6,22,52,0.08) !important;
    box-shadow: var(--shadow) !important;
    outline: 0 !important;
    background: #ffffff !important;
  }

  .psw-registration-page .ready-begin-section .psw-network-cta-box::before,
  .psw-registration-page .ready-begin-section .psw-network-cta-box::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
  }

  .psw-registration-page .psw-network-final-note {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .psw-registration-page .psw-network-final-note > div {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}

.psw-registration-page .ready-begin-section .psw-network-cta-box {
  border: 1px solid rgba(6,22,52,0.08) !important;
  box-shadow: var(--shadow) !important;
  outline: 0 !important;
  background: #ffffff !important;
  background-image: none !important;
  overflow: hidden !important;
}

.psw-registration-page .ready-begin-section .psw-network-cta-box::before,
.psw-registration-page .ready-begin-section .psw-network-cta-box::after,
.psw-registration-page .ready-begin-section::before,
.psw-registration-page .ready-begin-section::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.psw-registration-page a[href*="docs.google.com/forms"]:hover,
.psw-registration-page a[href*="docs.google.com/forms"]:focus,
.psw-registration-page a[href*="docs.google.com/forms"]:active {
  background: #2e7d32 !important;
  border-color: #2e7d32 !important;
  color: #ffffff !important;
}

.site-header nav a.active,
.site-header nav a[aria-current="page"] {
  color: var(--orange) !important;
}

.psw-registration-page .psw-headline-no-break {
  white-space: nowrap !important;
}

.psw-registration-page .psw-headline-first-line {
  white-space: nowrap !important;
  color: inherit !important;
}

.psw-registration-page .psw-built-around-black {
  color: #061634 !important;
  white-space: nowrap !important;
}

body.psw-registration-page .psw-network-hero h1.psw-registration-main-headline,
body.psw-registration-page .psw-network-hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  max-width: 920px !important;
}

@media (max-width: 760px) {
  body.psw-registration-page .psw-network-hero h1.psw-registration-main-headline,
  body.psw-registration-page .psw-network-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.65rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
  }
}

@media (max-width: 760px) {
  body.psw-registration-page,
  body.psw-registration-page html {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.psw-registration-page .subpage-main,
  body.psw-registration-page .psw-network-main,
  body.psw-registration-page .psw-network-main > section,
  body.psw-registration-page .psw-network-hero,
  body.psw-registration-page .psw-network-final-note {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  body.psw-registration-page .psw-network-hero,
  body.psw-registration-page .psw-network-final-note {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.psw-registration-page .psw-network-hero .hero-copy,
  body.psw-registration-page .psw-network-final-note > div {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.psw-registration-page .psw-registration-main-headline,
  body.psw-registration-page .psw-headline-first-line,
  body.psw-registration-page .psw-headline-no-break,
  body.psw-registration-page .psw-built-around-black,
  body.psw-registration-page .comfort-trust-accent {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.psw-registration-page .psw-registration-main-headline {
    width: 100% !important;
  }

  body.psw-registration-page .psw-network-final-note.cta-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.psw-registration-page .psw-network-final-note .cta-actions {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 760px) {
  body.psw-registration-page {
    overflow-x: hidden !important;
  }

  body.psw-registration-page .psw-network-main,
  body.psw-registration-page .subpage-main {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.psw-registration-page .psw-network-main > section,
  body.psw-registration-page .psw-network-main .section,
  body.psw-registration-page .psw-network-main .split,
  body.psw-registration-page .psw-network-hero {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.psw-registration-page .psw-network-final-note.cta-panel {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin-left: 18px !important;
    margin-right: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body.psw-registration-page .psw-network-final-note.cta-panel > div,
  body.psw-registration-page .psw-network-final-note.cta-panel .cta-actions {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 760px) {
  body.psw-registration-page .psw-network-main .psw-network-card,
  body.psw-registration-page .psw-network-main .psw-network-cta-box,
  body.psw-registration-page .psw-network-main .info-card,
  body.psw-registration-page .psw-network-main .service-grid article,
  body.psw-registration-page .psw-network-final-note,
  body.psw-registration-page .psw-network-final-note > div {
    box-shadow: none !important;
  }
}

@media (max-width: 760px) {
  body:has(#about) main .cta-panel:last-of-type,
  body.about-page main .cta-panel:last-of-type {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin-left: 18px !important;
    margin-right: 18px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 760px) {
  body.psw-registration-page .psw-network-hero {
    padding-bottom: 6px !important;
  }

  body.psw-registration-page .psw-network-welcome {
    padding-top: 6px !important;
  }
}

@media (max-width: 760px) {
  body.psw-registration-page .psw-network-welcome,
  body.psw-registration-page .psw-network-steps,
  body.psw-registration-page .psw-network-documents,
  body.psw-registration-page .psw-network-cta-section,
  body.psw-registration-page .psw-network-final-note {
    transform: translateY(-1.1em) !important;
  }
}

@media (min-width: 761px) {
  .site-header nav a.contact-nav-active,
  header.site-header nav a.contact-nav-active,
  .site-header nav a.active-page.contact-nav-active,
  header.site-header nav a.active-page.contact-nav-active {
    color: var(--orange) !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header .brand img,
  header.site-header .brand img {
    width: 244px !important;
    max-width: 36vw !important;
    height: auto !important;
  }
}

@media (min-width: 761px) {
  .site-header nav a:not(.nav-cta)::after,
  header.site-header nav a:not(.nav-cta)::after {
    content: " |" !important;
    color: var(--orange) !important;
    padding-left: 8px !important;
    font-weight: 700 !important;
  }

  .site-header nav a[href="contact.html"]::after,
  header.site-header nav a[href="contact.html"]::after,
  .site-header nav a.contact-nav-active::after,
  header.site-header nav a.contact-nav-active::after,
  .site-header nav a.active-page.contact-nav-active::after,
  header.site-header nav a.active-page.contact-nav-active::after {
    content: none !important;
    display: none !important;
    padding-left: 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header,
  header.site-header {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: visible !important;
  }

  .site-header .brand,
  header.site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    flex: none !important;
    min-width: 0 !important;
  }

  .site-header .brand img,
  header.site-header .brand img {
    width: 244px !important;
    max-width: 30vw !important;
    height: auto !important;
  }

  .site-header nav,
  header.site-header nav {
    grid-column: 2 / 4 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    column-gap: 10px !important;
  }

  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    flex: 0 1 auto !important;
    font-size: clamp(0.66rem, 1vw, 0.84rem) !important;
    line-height: 1.15 !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: " |" !important;
    color: var(--orange) !important;
    padding-left: 7px !important;
    font-weight: 800 !important;
    display: inline !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    grid-column: 2 !important;
    justify-self: end !important;
    align-self: center !important;
    font-size: 0.9rem !important;
    padding: 11px 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: max-content !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 761px) and (max-width: 1050px) and (pointer: coarse) {
  .site-header,
  header.site-header {
    padding-left: 14px !important;
    padding-right: 14px !important;
    column-gap: 8px !important;
  }

  .site-header .brand img,
  header.site-header .brand img {
    width: 232px !important;
    max-width: 28vw !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: 0.63rem !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    color: var(--orange) !important;
    padding-left: 4px !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    font-size: 0.78rem !important;
    padding: 10px 12px !important;
  }
}

@media (min-width: 761px) and (pointer: fine) {
  .site-header,
  header.site-header {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
  }

  .site-header .brand,
  header.site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .site-header nav,
  header.site-header nav {
    grid-column: 2 / 4 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    grid-column: 2 !important;
    justify-self: end !important;
  }
}

@media (min-width: 761px) and (pointer: fine) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    display: inline-flex !important;
    align-items: center !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "|" !important;
    color: var(--orange) !important;
    display: inline-block !important;
    padding-left: 8px !important;
    padding-right: 0 !important;
    margin-left: 8px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 761px) {
  body.contact-page .contact-grid article > :first-child,
  body.contact-page .contact-card > :first-child,
  body.contact-page .info-card > :first-child,
  body.contact-page .contact-icon,
  body.contact-page .card-icon,
  body.contact-page .icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 14px 0 !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    object-fit: contain !important;
    text-align: center !important;
  }

  body.contact-page .contact-grid article svg,
  body.contact-page .contact-card svg,
  body.contact-page .info-card svg,
  body.contact-page .contact-grid article img,
  body.contact-page .contact-card img,
  body.contact-page .info-card img {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 0 14px 0 !important;
  }
}

body.contact-page .whatsapp-contact-card > :first-child {
  position: relative !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 14px 0 !important;
  background: transparent !important;
  border: 2px solid var(--orange) !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
  overflow: hidden !important;
}

body.contact-page .whatsapp-contact-card > :first-child::before {
  content: "" !important;
  position: absolute !important;
  width: 18px !important;
  height: 30px !important;
  border: 3px solid #25D366 !important;
  border-radius: 6px !important;
  background: transparent !important;
  box-sizing: border-box !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

body.contact-page .whatsapp-contact-card > :first-child::after {
  content: "" !important;
  position: absolute !important;
  width: 5px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  left: 50% !important;
  top: calc(50% + 10px) !important;
  transform: translateX(-50%) !important;
}

@media (min-width: 761px) and (pointer: fine) {
  body.contact-page .phone-contact-card .phone-contact-icon {
    position: relative !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 14px 0 !important;
    background: transparent !important;
    border: 2px solid var(--orange) !important;
    border-radius: 50% !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    overflow: hidden !important;
  }

  body.contact-page .phone-contact-card .phone-contact-icon::before {
    content: "" !important;
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    background-color: #0b4f9c !important;
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M6.62%2010.79C8.06%2013.62%2010.38%2015.94%2013.21%2017.38L15.41%2015.18C15.69%2014.9%2016.08%2014.82%2016.43%2014.93C17.55%2015.3%2018.75%2015.5%2020%2015.5C20.55%2015.5%2021%2015.95%2021%2016.5V20C21%2020.55%2020.55%2021%2020%2021C10.61%2021%203%2013.39%203%204C3%203.45%203.45%203%204%203H7.5C8.05%203%208.5%203.45%208.5%204C8.5%205.25%208.7%206.45%209.07%207.57C9.18%207.92%209.1%208.31%208.82%208.59L6.62%2010.79Z%27%2F%3E%3C%2Fsvg%3E") !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: contain !important;
    mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M6.62%2010.79C8.06%2013.62%2010.38%2015.94%2013.21%2017.38L15.41%2015.18C15.69%2014.9%2016.08%2014.82%2016.43%2014.93C17.55%2015.3%2018.75%2015.5%2020%2015.5C20.55%2015.5%2021%2015.95%2021%2016.5V20C21%2020.55%2020.55%2021%2020%2021C10.61%2021%203%2013.39%203%204C3%203.45%203.45%203%204%203H7.5C8.05%203%208.5%203.45%208.5%204C8.5%205.25%208.7%206.45%209.07%207.57C9.18%207.92%209.1%208.31%208.82%208.59L6.62%2010.79Z%27%2F%3E%3C%2Fsvg%3E") !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: contain !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.72rem, 1.08vw, 0.9rem) !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    padding-left: 5px !important;
    margin-left: 5px !important;
  }
}

@media (min-width: 761px) and (max-width: 1050px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: 0.69rem !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    padding-left: 4px !important;
    margin-left: 4px !important;
  }
}

body.contact-page .contact-grid .phone-contact-card .phone-contact-icon,
body:has(#contact) .contact-grid .phone-contact-card .phone-contact-icon,
body.contact-page .contact-grid .email-contact-card .email-contact-icon,
body:has(#contact) .contact-grid .email-contact-card .email-contact-icon,
body.contact-page .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon,
body:has(#contact) .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon {
  position: relative !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  flex: 0 0 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  border: 2px solid var(--orange) !important;
  border-radius: 50% !important;
  background-color: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.contact-page .contact-grid .phone-contact-card .phone-contact-icon {
  background-image: none !important;
}

body.contact-page .contact-grid .phone-contact-card .phone-contact-icon::before,
body:has(#contact) .contact-grid .phone-contact-card .phone-contact-icon::before {
  content: "" !important;
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  background-color: #0b4f9c !important;
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M6.62%2010.79C8.06%2013.62%2010.38%2015.94%2013.21%2017.38L15.41%2015.18C15.69%2014.9%2016.08%2014.82%2016.43%2014.93C17.55%2015.3%2018.75%2015.5%2020%2015.5C20.55%2015.5%2021%2015.95%2021%2016.5V20C21%2020.55%2020.55%2021%2020%2021C10.61%2021%203%2013.39%203%204C3%203.45%203.45%203%204%203H7.5C8.05%203%208.5%203.45%208.5%204C8.5%205.25%208.7%206.45%209.07%207.57C9.18%207.92%209.1%208.31%208.82%208.59L6.62%2010.79Z%27%2F%3E%3C%2Fsvg%3E") !important;
  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M6.62%2010.79C8.06%2013.62%2010.38%2015.94%2013.21%2017.38L15.41%2015.18C15.69%2014.9%2016.08%2014.82%2016.43%2014.93C17.55%2015.3%2018.75%2015.5%2020%2015.5C20.55%2015.5%2021%2015.95%2021%2016.5V20C21%2020.55%2020.55%2021%2020%2021C10.61%2021%203%2013.39%203%204C3%203.45%203.45%203%204%203H7.5C8.05%203%208.5%203.45%208.5%204C8.5%205.25%208.7%206.45%209.07%207.57C9.18%207.92%209.1%208.31%208.82%208.59L6.62%2010.79Z%27%2F%3E%3C%2Fsvg%3E") !important;
  mask-repeat: no-repeat !important;
  mask-position: center !important;
  mask-size: contain !important;
}

body.contact-page .contact-grid .phone-contact-card .phone-contact-icon::after,
body:has(#contact) .contact-grid .phone-contact-card .phone-contact-icon::after {
  content: none !important;
  display: none !important;
}

body.contact-page .contact-grid .email-contact-card .email-contact-icon,
body:has(#contact) .contact-grid .email-contact-card .email-contact-icon {
  background-image: url("assets/email-envelope-icon-black.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 30px 30px !important;
}

body.contact-page .contact-grid .email-contact-card .email-contact-icon::before,
body.contact-page .contact-grid .email-contact-card .email-contact-icon::after,
body:has(#contact) .contact-grid .email-contact-card .email-contact-icon::before,
body:has(#contact) .contact-grid .email-contact-card .email-contact-icon::after {
  content: none !important;
  display: none !important;
}

body.contact-page .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon,
body:has(#contact) .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon {
  background-image: url("assets/shield-plus-icon-ref-red.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 31px 31px !important;
}

body.contact-page .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon img,
body:has(#contact) .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon img {
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  filter: none !important;
}

body.contact-page .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon::before,
body.contact-page .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon::after,
body:has(#contact) .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon::before,
body:has(#contact) .contact-grid .home-safety-contact-card .home-safety-contact-icon.shield-plus-icon::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body.areas-page main li,
  body:has(#areas) main li,
  body.areas-page .areas-list li,
  body:has(#areas) .areas-list li,
  body.areas-page .service-area-list li,
  body:has(#areas) .service-area-list li {
    line-height: 1.45 !important;
  }

  body.areas-page main li:has(a[href*="Etobicoke"]),
  body:has(#areas) main li:has(a[href*="Etobicoke"]),
  body.areas-page main li:has(span):has(*),
  body:has(#areas) main li:has(span):has(*) {
    break-inside: avoid !important;
  }

  body.areas-page main li,
  body:has(#areas) main li {
    white-space: normal !important;
  }

  body.areas-page main li:has(:is(a, span, strong)),
  body:has(#areas) main li:has(:is(a, span, strong)) {
    align-items: flex-start !important;
  }

  body.areas-page main li,
  body:has(#areas) main li {
    text-wrap: pretty;
  }

  body.areas-page main li:has(:is(a, span, strong)):has(*),
  body:has(#areas) main li:has(:is(a, span, strong)):has(*) {
    vertical-align: top !important;
  }
}

.etobicoke-pin-pair {
  white-space: nowrap !important;
}

.facility-care-registration-button {
  white-space: nowrap !important;
}

.psw-registration-page .cta-actions,
.facility-registration-link-panel .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 760px) {
  .psw-registration-page .cta-actions,
  .facility-registration-link-panel .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .psw-registration-page .cta-actions .facility-care-registration-button,
  .facility-registration-link-panel .facility-care-registration-button {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 761px) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: 0.68rem !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}

@media (min-width: 761px) and (max-width: 1050px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: 0.62rem !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}

body:has(#facilities) .facility-care-registration-button,
body.facilities-page .facility-care-registration-button {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

body:has(#facilities) .facility-care-registration-button:hover,
body.facilities-page .facility-care-registration-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

@media (min-width: 761px) {
  .site-header,
  header.site-header {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .site-header .brand,
  header.site-header .brand {
    grid-column: 1 !important;
    min-width: 0 !important;
    justify-self: start !important;
  }

  .site-header nav,
  header.site-header nav {
    grid-column: 2 / 4 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    align-items: center !important;
    column-gap: 14px !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    grid-column: 2 !important;
    justify-self: end !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    margin-left: 0 !important;
    z-index: 2 !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"],
  header.site-header nav .nav-menu-links a[href="contact.html"] {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header,
  header.site-header {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.78rem, 0.78vw, 0.95rem) !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 6px !important;
    padding-left: 6px !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    padding: 10px 16px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header,
  header.site-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
    column-gap: 8px !important;
  }

  .site-header nav,
  header.site-header nav {
    column-gap: 8px !important;
  }

  .site-header .brand img,
  header.site-header .brand img {
    max-width: 220px !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.64rem, 0.9vw, 0.78rem) !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    letter-spacing: -0.015em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 3px !important;
    padding-left: 3px !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    font-size: 0.72rem !important;
    padding: 8px 10px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header,
  header.site-header {
    padding-left: 14px !important;
    padding-right: 14px !important;
    column-gap: 8px !important;
  }

  .site-header nav,
  header.site-header nav {
    column-gap: 8px !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.62rem, 0.86vw, 0.78rem) !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    letter-spacing: -0.02em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 3px !important;
    padding-left: 3px !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    font-size: 0.76rem !important;
    padding: 9px 10px !important;
  }
}

@media (max-width: 760px) {
  .site-header,
  header.site-header {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .site-header nav,
  header.site-header nav {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .site-header nav a.nav-cta,
  header.site-header nav a.nav-cta {
    white-space: nowrap !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.86rem, 0.9vw, 1rem) !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    letter-spacing: -0.006em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.82rem, 0.84vw, 0.96rem) !important;
    letter-spacing: -0.018em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 5px !important;
    padding-left: 5px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.72rem, 0.98vw, 0.84rem) !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    letter-spacing: -0.018em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.68rem, 0.9vw, 0.8rem) !important;
    letter-spacing: -0.026em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 3px !important;
    padding-left: 3px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.72rem, 0.96vw, 0.86rem) !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    letter-spacing: -0.018em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.66rem, 0.86vw, 0.78rem) !important;
    letter-spacing: -0.028em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 3px !important;
    padding-left: 3px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.96rem, 0.98vw, 1.08rem) !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    letter-spacing: -0.012em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.9rem, 0.9vw, 1rem) !important;
    letter-spacing: -0.03em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 4px !important;
    padding-left: 4px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.78rem, 1.05vw, 0.9rem) !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    letter-spacing: -0.03em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.72rem, 0.95vw, 0.82rem) !important;
    letter-spacing: -0.045em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 2px !important;
    padding-left: 2px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.8rem, 1.04vw, 0.92rem) !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    letter-spacing: -0.032em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.72rem, 0.92vw, 0.82rem) !important;
    letter-spacing: -0.05em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 2px !important;
    padding-left: 2px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.02rem, 1.04vw, 1.14rem) !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
    letter-spacing: -0.018em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.94rem, 0.96vw, 1.04rem) !important;
    letter-spacing: -0.04em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 3px !important;
    padding-left: 3px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.82rem, 1.12vw, 0.94rem) !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    letter-spacing: -0.04em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.74rem, 1vw, 0.86rem) !important;
    letter-spacing: -0.055em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 1px !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.84rem, 1.1vw, 0.98rem) !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    letter-spacing: -0.04em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.74rem, 0.98vw, 0.88rem) !important;
    letter-spacing: -0.06em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 1px !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.08rem, 1.1vw, 1.2rem) !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    letter-spacing: -0.026em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.98rem, 1vw, 1.08rem) !important;
    letter-spacing: -0.055em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 2px !important;
    padding-left: 2px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.86rem, 1.18vw, 0.98rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.05em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.76rem, 1.04vw, 0.9rem) !important;
    letter-spacing: -0.07em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 1px !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.88rem, 1.16vw, 1.02rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.052em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.76rem, 1.02vw, 0.9rem) !important;
    letter-spacing: -0.075em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 1px !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.14rem, 1.16vw, 1.26rem) !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    letter-spacing: -0.034em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.02rem, 1.04vw, 1.12rem) !important;
    letter-spacing: -0.07em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 1px !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.9rem, 1.24vw, 1.02rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.065em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.78rem, 1.08vw, 0.92rem) !important;
    letter-spacing: -0.085em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.92rem, 1.22vw, 1.06rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.065em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.78rem, 1.06vw, 0.92rem) !important;
    letter-spacing: -0.09em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.2rem, 1.22vw, 1.32rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.044em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.06rem, 1.08vw, 1.16rem) !important;
    letter-spacing: -0.085em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.94rem, 1.3vw, 1.06rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.078em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.8rem, 1.12vw, 0.94rem) !important;
    letter-spacing: -0.105em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.96rem, 1.28vw, 1.1rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.078em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.8rem, 1.1vw, 0.94rem) !important;
    letter-spacing: -0.11em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.26rem, 1.28vw, 1.38rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.055em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.10rem, 1.12vw, 1.20rem) !important;
    letter-spacing: -0.10em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(0.98rem, 1.36vw, 1.10rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.09em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.82rem, 1.16vw, 0.98rem) !important;
    letter-spacing: -0.13em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.0rem, 1.34vw, 1.14rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.09em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.82rem, 1.14vw, 0.98rem) !important;
    letter-spacing: -0.14em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    margin-left: 0 !important;
    padding-left: 1px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.32rem, 1.34vw, 1.44rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.062em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.14rem, 1.16vw, 1.24rem) !important;
    letter-spacing: -0.115em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "|" !important;
    margin-left: 4px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.02rem, 1.42vw, 1.16rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.105em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.84rem, 1.2vw, 1rem) !important;
    letter-spacing: -0.155em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "|" !important;
    margin-left: 2px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    gap: 0 !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a {
    font-size: clamp(1.04rem, 1.4vw, 1.2rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    letter-spacing: -0.105em !important;
  }

  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.84rem, 1.18vw, 1rem) !important;
    letter-spacing: -0.16em !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "|" !important;
    margin-left: 2px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}

@media (min-width: 1101px) and (pointer: fine) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.32rem, 1.34vw, 1.44rem) !important;
    letter-spacing: -0.062em !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) and (pointer: fine) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.02rem, 1.42vw, 1.16rem) !important;
    letter-spacing: -0.105em !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(1.04rem, 1.4vw, 1.2rem) !important;
    letter-spacing: -0.105em !important;
  }
}

body:has(.facility-care-registration-button) .facility-care-registration-button,
body.psw-registration-page .facility-care-registration-button,
body.psw-fac-registration-page .facility-care-registration-button {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

body:has(.facility-care-registration-button) .facility-care-registration-button:hover,
body.psw-registration-page .facility-care-registration-button:hover,
body.psw-fac-registration-page .facility-care-registration-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

@media (min-width: 761px) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    white-space: nowrap !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-family: inherit !important;
    font-size: clamp(0.9rem, 1.03vw, 1.08rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "" !important;
    display: inline-block !important;
    width: 2px !important;
    height: 1.05em !important;
    background: var(--orange) !important;
    margin-left: 7px !important;
    margin-right: 7px !important;
    padding: 0 !important;
    vertical-align: -0.16em !important;
    border-radius: 999px !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.78rem, 0.94vw, 0.92rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.045em !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.76rem, 0.88vw, 0.88rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.052em !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
}

@media (min-width: 761px) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-family: inherit !important;
    font-size: clamp(0.98rem, 1.12vw, 1.16rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.045em !important;
    white-space: nowrap !important;
    padding-left: 1px !important;
    padding-right: 1px !important;
    margin: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "" !important;
    display: inline-block !important;
    width: 2px !important;
    height: 1.05em !important;
    background: var(--orange) !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
    padding: 0 !important;
    vertical-align: -0.16em !important;
    border-radius: 999px !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.84rem, 1.02vw, 0.98rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.055em !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.8rem, 0.96vw, 0.94rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.065em !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
}

@media (min-width: 761px) {
  .site-header nav .nav-menu-links,
  header.site-header nav .nav-menu-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-family: inherit !important;
    font-size: clamp(1.04rem, 1.18vw, 1.22rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.052em !important;
    white-space: nowrap !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    content: "" !important;
    display: inline-block !important;
    width: 2px !important;
    height: 1.05em !important;
    background: var(--orange) !important;
    margin-left: 6px !important;
    margin-right: 6px !important;
    padding: 0 !important;
    vertical-align: -0.16em !important;
    border-radius: 999px !important;
  }

  .site-header nav .nav-menu-links a[href="contact.html"]::after,
  header.site-header nav .nav-menu-links a[href="contact.html"]::after {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.88rem, 1.08vw, 1.04rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.065em !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-header nav .nav-menu-links a,
  header.site-header nav .nav-menu-links a,
  .site-header nav .nav-menu-links a[href="psw-fac-registration.html"],
  header.site-header nav .nav-menu-links a[href="psw-fac-registration.html"] {
    font-size: clamp(0.84rem, 1.02vw, 1rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.075em !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .site-header nav .nav-menu-links a:not([href="contact.html"])::after,
  header.site-header nav .nav-menu-links a:not([href="contact.html"])::after {
    width: 2px !important;
    height: 1.05em !important;
    margin-left: 3px !important;
    margin-right: 3px !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body.facilities-page .cta-actions,
  body:has(#facilities) .cta-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  body.facilities-page .cta-actions a,
  body:has(#facilities) .cta-actions a,
  body.facilities-page .cta-actions .button,
  body:has(#facilities) .cta-actions .button {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  body.facilities-page .cta-actions .button,
  body:has(#facilities) .cta-actions .button {
    font-size: clamp(0.82rem, 1.05vw, 0.95rem) !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.ready-begin-button-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.ready-begin-button-row .button,
.ready-begin-button-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 !important;
}

.ready-begin-button-row .bottom-fac-registration-button {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
}

.ready-begin-button-row .bottom-fac-registration-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .ready-begin-button-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  .ready-begin-button-row .button,
  .ready-begin-button-row a {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: calc(50% - 4px) !important;
    width: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: clamp(0.68rem, 2.9vw, 0.84rem) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }
}

.top-fac-registration-button {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #ffffff !important;
  white-space: nowrap !important;
}

.top-fac-registration-button:hover {
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #ffffff !important;
}

body:has(.top-fac-registration-button) .cta-actions:has(.top-fac-registration-button) {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

body:has(.top-fac-registration-button) .cta-actions:has(.top-fac-registration-button) .button {
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  text-align: center !important;
  margin: 0 !important;
}

@media (max-width: 760px) {
  body:has(.top-fac-registration-button) .cta-actions:has(.top-fac-registration-button) {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
  }

  body:has(.top-fac-registration-button) .cta-actions:has(.top-fac-registration-button) .button {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: calc(50% - 4px) !important;
    width: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: clamp(0.68rem, 2.9vw, 0.84rem) !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }
}

body.psw-fac-registration-page .card,
body.psw-registration-page .card,
body:has(.top-fac-registration-button) .card {
  height: auto !important;
  min-height: fit-content !important;
  overflow: visible !important;
}

body.psw-fac-registration-page section,
body.psw-registration-page section,
body:has(.top-fac-registration-button) section {
  height: auto !important;
  overflow: visible !important;
}

body.psw-fac-registration-page p,
body.psw-registration-page p,
body:has(.top-fac-registration-button) p {
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

@media (min-width: 761px) {
  body.psw-fac-registration-page .card,
  body.psw-registration-page .card,
  body:has(.top-fac-registration-button) .card {
    padding-top: max(var(--card-padding, 24px), 24px) !important;
    padding-bottom: max(var(--card-padding, 24px), 24px) !important;
  }
}

@media (max-width: 760px) {
  body.psw-fac-registration-page .card,
  body.psw-registration-page .card,
  body:has(.top-fac-registration-button) .card {
    padding-top: max(var(--card-padding, 18px), 18px) !important;
    padding-bottom: max(var(--card-padding, 18px), 18px) !important;
  }

  body.psw-fac-registration-page p,
  body.psw-registration-page p,
  body:has(.top-fac-registration-button) p {
    line-height: 1.55 !important;
  }
}

body.psw-fac-registration-page .registration-disclaimer-red,
body.psw-registration-page .registration-disclaimer-red,
body:has(.registration-disclaimer-red) .registration-disclaimer-red {
  color: #c62828 !important;
  font-weight: 700 !important;
}

@media (min-width: 1101px) and (pointer: fine) {
  body.psw-fac-registration-page .registration-disclaimer-red,
  body.psw-registration-page .registration-disclaimer-red,
  body:has(.registration-disclaimer-red) .registration-disclaimer-red {
    color: #c62828 !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body.psw-fac-registration-page .registration-disclaimer-red,
  body.psw-registration-page .registration-disclaimer-red,
  body:has(.registration-disclaimer-red) .registration-disclaimer-red {
    color: #c62828 !important;
    font-weight: 700 !important;
  }
}

@media (max-width: 760px) {
  body.psw-fac-registration-page .registration-disclaimer-red,
  body.psw-registration-page .registration-disclaimer-red,
  body:has(.registration-disclaimer-red) .registration-disclaimer-red {
    color: #c62828 !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (max-width: 760px) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
}

@media (min-width: 761px) {
  body:not(:has(#areas)) main > .section:first-child,
  body:not(:has(#areas)) main > .hero:first-child {
    padding-top: clamp(44px, 7vw, 92px) !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body:not(:has(#areas)) main > .section:first-child,
  body:not(:has(#areas)) main > .hero:first-child {
    padding-top: clamp(44px, 7vw, 92px) !important;
  }
}

@media (max-width: 760px) {
}

.footer-opswa-button.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
  width: 147px !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 6px 6px 5px 6px !important;
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #12a7b2 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  position: absolute !important;
  right: -170px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  outline: none !important;
  box-shadow: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.footer-opswa-logo,
body:has(#about) footer.about-clean-footer .footer-opswa-logo {
  display: block !important;
  width: 96px !important;
  height: auto !important;
  max-height: 34px !important;
  min-height: 0 !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-opswa-verify,
body:has(#about) footer.about-clean-footer .footer-opswa-verify {
  display: block !important;
  color: var(--orange) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-opswa-button.footer-vaccination-badge:hover,
.footer-opswa-button.footer-vaccination-badge:focus,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge:hover,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge:focus {
  box-shadow: none !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 760px) {
  .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    position: static !important;
    transform: none !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
    width: 147px !important;
    padding: 6px 6px 5px 6px !important;
  }

  .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo {
    width: 96px !important;
    max-height: 34px !important;
  }

  .footer-opswa-verify,
  body:has(#about) footer.about-clean-footer .footer-opswa-verify {
    font-size: 0.68rem !important;
  }
}

.footer-opswa-button.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
  width: 137px !important;
  min-height: 72px !important;
  height: auto !important;
  padding: 6px 5px 5px 5px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
}

.footer-opswa-logo,
body:has(#about) footer.about-clean-footer .footer-opswa-logo {
  width: 92px !important;
  max-height: 32px !important;
  margin: 0 auto 1px auto !important;
  object-fit: contain !important;
}

.footer-opswa-verify,
body:has(#about) footer.about-clean-footer .footer-opswa-verify {
  color: var(--orange) !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    width: 137px !important;
    min-height: 72px !important;
    padding: 6px 5px 5px 5px !important;
    gap: 2px !important;
  }

  .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo {
    width: 92px !important;
    max-height: 32px !important;
    margin-bottom: 1px !important;
  }

  .footer-opswa-verify,
  body:has(#about) footer.about-clean-footer .footer-opswa-verify {
    font-size: 0.62rem !important;
  }
}

.footer-opswa-button.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
  width: 147px !important;
  height: 59px !important;
  min-width: 147px !important;
  max-width: 147px !important;
  min-height: 59px !important;
  max-height: 59px !important;
  padding: 4px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1px !important;
  box-sizing: border-box !important;
}

.footer-opswa-logo,
body:has(#about) footer.about-clean-footer .footer-opswa-logo {
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  max-height: 33px !important;
  object-fit: contain !important;
  margin: 0 auto 0 auto !important;
}

.footer-opswa-verify,
body:has(#about) footer.about-clean-footer .footer-opswa-verify {
  color: var(--orange) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 760px) {
  .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    width: 147px !important;
    height: 59px !important;
    min-width: 147px !important;
    max-width: 147px !important;
    min-height: 59px !important;
    max-height: 59px !important;
    padding: 4px 6px !important;
  }

  .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 33px !important;
  }

  .footer-opswa-verify,
  body:has(#about) footer.about-clean-footer .footer-opswa-verify {
    font-size: 0.68rem !important;
  }
}

footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
  width: 147px !important;
  height: 59px !important;
  min-width: 147px !important;
  max-width: 147px !important;
  min-height: 59px !important;
  max-height: 59px !important;
  padding: 4px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1px !important;
  box-sizing: border-box !important;
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #12a7b2 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  visibility: visible !important;
  opacity: 1 !important;
}

footer.about-clean-footer .footer-opswa-logo {
  display: block !important;
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  max-height: 33px !important;
  object-fit: contain !important;
  margin: 0 auto 0 auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

footer.about-clean-footer .footer-opswa-verify {
  display: block !important;
  color: var(--orange) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge,
footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 147px !important;
  height: 59px !important;
  min-width: 147px !important;
  max-width: 147px !important;
  min-height: 59px !important;
  max-height: 59px !important;
  padding: 4px 6px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1px !important;
  box-sizing: border-box !important;
  border-width: 2.673px !important;
  border-style: solid !important;
  border-color: #12a7b2 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  text-decoration: none !important;
  position: absolute !important;
  right: -170px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 30 !important;
  box-shadow: none !important;
}

body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge img.footer-opswa-logo,
body:has(#about) footer.about-clean-footer img.footer-opswa-logo,
footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge img.footer-opswa-logo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  max-height: 33px !important;
  min-height: 0 !important;
  object-fit: contain !important;
  margin: 0 auto 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge span.footer-opswa-verify,
body:has(#about) footer.about-clean-footer span.footer-opswa-verify,
footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge span.footer-opswa-verify {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--orange) !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 760px) {
  body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge,
  footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  footer .footer-inner,
  footer .about-footer-inner,
  footer.about-clean-footer .about-footer-inner {
    position: relative !important;
    overflow: visible !important;
  }

  footer .footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right,
  footer.about-clean-footer .footer-cpr-logo-right {
    right: 92px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: absolute !important;
    width: 147px !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20 !important;
  }

  footer .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge,
  footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    right: -78px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: absolute !important;
    width: 147px !important;
    height: 59px !important;
    min-width: 147px !important;
    max-width: 147px !important;
    min-height: 59px !important;
    max-height: 59px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 21 !important;
    margin: 0 !important;
  }

  footer .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo,
  footer.about-clean-footer .footer-opswa-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 112px !important;
    max-width: 112px !important;
    max-height: 33px !important;
  }

  footer .footer-opswa-verify,
  body:has(#about) footer.about-clean-footer .footer-opswa-verify,
  footer.about-clean-footer .footer-opswa-verify {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.68rem !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body:has(#about) footer.about-clean-footer .about-footer-inner {
    position: relative !important;
    overflow: visible !important;
  }

  body:has(#about) footer.about-clean-footer img.footer-cpr-logo-right,
  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
    position: absolute !important;
    right: 92px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 147px !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20 !important;
  }

  body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    position: absolute !important;
    right: -78px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 147px !important;
    height: 59px !important;
    min-width: 147px !important;
    max-width: 147px !important;
    min-height: 59px !important;
    max-height: 59px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 21 !important;
    margin: 0 !important;
  }

  body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge img.footer-opswa-logo,
  body:has(#about) footer.about-clean-footer img.footer-opswa-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 112px !important;
    max-width: 112px !important;
    max-height: 33px !important;
  }

  body:has(#about) footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge span.footer-opswa-verify,
  body:has(#about) footer.about-clean-footer span.footer-opswa-verify {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.68rem !important;
  }
}

@media (max-width: 760px) {
  body:has(#about) footer.about-clean-footer .about-footer-inner {
    display: flex !important;
    flex-direction: column !important;
  }

  body:has(#about) footer.about-clean-footer .footer-police-badge {
    order: 1 !important;
  }

  body:has(#about) footer.about-clean-footer .nacc-footer-badge {
    order: 2 !important;
  }

  body:has(#about) footer.about-clean-footer .about-footer-text {
    order: 3 !important;
  }

  body:has(#about) footer.about-clean-footer .footer-cpr-logo-right {
    order: 4 !important;
  }

  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge {
    order: 5 !important;
    position: static !important;
    transform: none !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
  }
}

.footer-opswa-button.footer-vaccination-badge,
body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge,
footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge {
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #12a7b2 !important;
  outline: none !important;
  box-shadow: none !important;
}

@media (min-width: 761px) {
  .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo,
  footer.about-clean-footer .footer-opswa-logo {
    content: url("assets/opswa-logo.png") !important;
  }

  .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge,
  footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge {
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #12a7b2 !important;
  }
}

@media (max-width: 760px) {
  .footer-opswa-logo,
  body:has(#about) footer.about-clean-footer .footer-opswa-logo,
  footer.about-clean-footer .footer-opswa-logo {
    content: url("assets/opswa-logo-mobile-blue.png") !important;
  }

  .footer-opswa-button.footer-vaccination-badge,
  body:has(#about) footer.about-clean-footer .footer-opswa-button.footer-vaccination-badge,
  footer.about-clean-footer a.footer-opswa-button.footer-vaccination-badge {
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #12a7b2 !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

body:has(#areas) .local-care-cities {
  display: inline !important;
  line-height: 1.65 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

body:has(#areas) .area-line-break {
  display: block !important;
  height: 0 !important;
  line-height: 0 !important;
}

body:has(#areas) .city-pin {
  color: #d11f1f !important;
  display: inline-block !important;
  margin-left: 0 !important;
  margin-right: 3px !important;
  line-height: 1 !important;
}

body:has(#areas) .city-pin:not(:first-child) {
  margin-left: 8px !important;
}

body:has(#areas) .area-line-break + .city-pin {
  margin-left: 0 !important;
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse) {
  body:has(#areas) .local-care-cities {
    display: inline !important;
    line-height: 1.65 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body:has(#areas) .area-line-break {
    display: block !important;
  }

  body:has(#areas) .area-line-break + .city-pin {
    margin-left: 0 !important;
  }
}

@media (max-width: 760px) {
  body:has(#areas) .local-care-cities {
    display: inline !important;
    line-height: 1.65 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body:has(#areas) .area-line-break {
    display: block !important;
  }

  body:has(#areas) .area-line-break + .city-pin {
    margin-left: 0 !important;
  }
}

@media (min-width: 761px) and (max-width: 1366px) and (pointer: coarse),
       (max-width: 760px) {
  body:has(#areas) .local-care-cities {
    display: grid !important;
    grid-template-columns: repeat(3, max-content) !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
    align-items: center !important;
    margin-top: 4px !important;
    width: fit-content !important;
    max-width: 100% !important;
  }

  body:has(#areas) .area-city-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  body:has(#areas) .area-city-item-wide {
    grid-column: span 2 !important;
  }

  body:has(#areas) .area-line-break {
    display: none !important;
  }

  body:has(#areas) .city-pin {
    color: #d11f1f !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    line-height: 1 !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 420px) {
  body:has(#areas) .local-care-cities {
    column-gap: 9px !important;
    row-gap: 4px !important;
    font-size: 0.9em !important;
  }
}

@media (min-width: 981px) {
  body:has(#contact) .contact-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  body:has(#contact) .contact-grid > :nth-child(1) {
    grid-column: 1 / span 2 !important;
  }

  body:has(#contact) .contact-grid > :nth-child(2) {
    grid-column: 3 / span 2 !important;
  }

  body:has(#contact) .contact-grid > :nth-child(3) {
    grid-column: 5 / span 2 !important;
  }

  body:has(#contact) .home-safety-contact-card {
    grid-column: 2 / span 2 !important;
    justify-self: stretch !important;
  }

  body:has(#contact) .hours-operation-card {
    grid-column: 4 / span 2 !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 980px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    height: auto !important;
    min-height: 126px !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-advance-note {
    transform: translateX(-1.75ch) !important;
  }

  body:has(#contact) .hours-operation-card.contact-card-even {
    grid-template-rows: auto auto auto auto auto !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    grid-row: 4 !important;
  }

  body:has(#contact) .hours-operation-text .hours-days-line,
  body:has(#contact) .hours-operation-text .hours-day-time-line,
  body:has(#contact) .hours-operation-text .hours-evening-line,
  body:has(#contact) .hours-operation-text .hours-overnight-line {
    text-align: left !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 9px !important;
    padding: 14px 12px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  body:has(#contact) .hours-advance-note {
    font-size: clamp(0.54rem, 2.6vw, 0.68rem) !important;
    letter-spacing: -0.045em !important;
  }

  body:has(#contact) .hours-operation-text strong.contact-first-line {
    font-size: clamp(0.55rem, 2.7vw, 0.68rem) !important;
    letter-spacing: -0.035em !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    padding: 14px 14px !important;
    min-height: 132px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 25px !important;
    height: 25px !important;
  }

  body:has(#contact) .hours-advance-note {
    font-size: 0.68rem !important;
    letter-spacing: -0.04em !important;
  }

  body:has(#contact) .hours-line {
    font-size: 0.7rem !important;
    letter-spacing: -0.025em !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 8px !important;
    padding: 14px 12px !important;
    min-height: 132px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  body:has(#contact) .hours-advance-note {
    font-size: clamp(0.48rem, 2.45vw, 0.62rem) !important;
    letter-spacing: -0.055em !important;
  }

  body:has(#contact) .hours-line {
    font-size: clamp(0.5rem, 2.55vw, 0.64rem) !important;
    letter-spacing: -0.045em !important;
    line-height: 1.12 !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    min-height: 132px !important;
    height: auto !important;
    padding: 12px 14px !important;
    gap: 9px !important;
    overflow: hidden !important;
    align-items: center !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  body:has(#contact) .hours-operation-text {
    gap: 0 !important;
    row-gap: 0 !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body:has(#contact) .hours-advance-note {
    font-size: 0.66rem !important;
    line-height: 1.03 !important;
    letter-spacing: -0.055em !important;
    white-space: nowrap !important;
    margin: 0 0 7px 0 !important;
    max-width: 100% !important;
  }

  body:has(#contact) .hours-line {
    font-size: 0.68rem !important;
    line-height: 1.03 !important;
    letter-spacing: -0.04em !important;
    white-space: nowrap !important;
    max-width: 100% !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    min-height: 132px !important;
    height: auto !important;
    padding: 12px 11px !important;
    gap: 7px !important;
    overflow: hidden !important;
    align-items: center !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  body:has(#contact) .hours-operation-text {
    gap: 0 !important;
    row-gap: 0 !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body:has(#contact) .hours-advance-note {
    font-size: clamp(0.43rem, 2.25vw, 0.56rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.065em !important;
    white-space: nowrap !important;
    margin: 0 0 7px 0 !important;
    max-width: 100% !important;
  }

  body:has(#contact) .hours-line {
    font-size: clamp(0.46rem, 2.45vw, 0.6rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
    white-space: nowrap !important;
    max-width: 100% !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  body:has(#contact) .hours-advance-note {
    text-align: center !important;
    align-self: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-advance-note {
    font-size: clamp(0.58rem, 3.05vw, 0.72rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
  }

  body:has(#contact) .hours-line {
    font-size: clamp(0.62rem, 3.15vw, 0.78rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    padding: 14px 18px !important;
    min-height: 126px !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    flex: 0 0 46px !important;
    align-self: center !important;
    justify-self: auto !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--orange) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: var(--orange) !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    fill: none !important;
    stroke: var(--orange) !important;
    stroke-width: 2.3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body:has(#contact) .hours-operation-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
    text-align: left !important;
  }

  body:has(#contact) .hours-advance-note {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    align-self: flex-start !important;
    white-space: nowrap !important;
    margin: -16px 0 6px 0 !important;
    padding: 0 !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
  }

  body:has(#contact) .hours-line,
  body:has(#contact) .hours-days-line,
  body:has(#contact) .hours-day-line,
  body:has(#contact) .hours-evening-line,
  body:has(#contact) .hours-overnight-line {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.06 !important;
    font-size: calc(clamp(0.66rem, 3.25vw, 0.84rem) + 2pt) !important;
    letter-spacing: -0.03em !important;
  }

  body:has(#contact) .hours-red-star {
    display: inline !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
    font: inherit !important;
    font-weight: inherit !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-advance-note {
    transform: translateX(4ch) !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    flex: 0 0 52px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 31px !important;
    height: 31px !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    gap: 18px !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    flex: 0 0 60px !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-advance-note {
    text-align: left !important;
    align-self: stretch !important;
    transform: translateX(2ch) !important;
  }

  body:has(#contact) .hours-line,
  body:has(#contact) .hours-days-line,
  body:has(#contact) .hours-day-line,
  body:has(#contact) .hours-evening-line,
  body:has(#contact) .hours-overnight-line {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }

  body:has(#contact) .hours-line em {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }

  body:has(#contact) .hours-red-star {
    color: red !important;
    -webkit-text-fill-color: red !important;
  }
}

@media (max-width: 760px) {
  body:has(#contact) .hours-advance-note {
    text-align: center !important;
    align-self: center !important;
    width: 100% !important;
    transform: none !important;
  }
}

body:has(#contact) .hours-calendar-contact-icon svg,
body:has(#contact) .hours-calendar-contact-icon svg * {
  stroke-width: 1.7 !important;
}

@media (min-width: 761px) {
  body:has(#contact) .hours-operation-card.contact-card-even {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    padding: 14px 18px !important;
    min-height: 126px !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body:has(#contact) .hours-calendar-contact-icon {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    flex: 0 0 46px !important;
    align-self: center !important;
    justify-self: auto !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--orange) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: var(--orange) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    margin: 0 !important;
    fill: none !important;
    stroke: var(--orange) !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  body:has(#contact) .hours-calendar-contact-icon svg * {
    stroke-width: 1.7 !important;
  }

  body:has(#contact) .hours-operation-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
    text-align: left !important;
  }

  body:has(#contact) .hours-advance-note {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    align-self: center !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    margin: -12px 0 6px 0 !important;
    padding: 0 !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
    font-size: clamp(0.58rem, 1.15vw, 0.82rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.05 !important;
  }

  body:has(#contact) .hours-line,
  body:has(#contact) .hours-days-line,
  body:has(#contact) .hours-day-line,
  body:has(#contact) .hours-evening-line,
  body:has(#contact) .hours-overnight-line {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-size: clamp(0.66rem, 1.25vw, 0.88rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.06 !important;
  }

  body:has(#contact) .hours-line em {
    display: inline !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-style: normal !important;
    white-space: nowrap !important;
  }

  body:has(#contact) .hours-red-star {
    display: inline !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
    font: inherit !important;
    font-weight: inherit !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 761px) {
  body:has(#contact) .hours-advance-note {
    width: calc(100% + 62px) !important;
    max-width: calc(100% + 62px) !important;
    margin-left: -62px !important;
    text-align: center !important;
    align-self: center !important;
    transform: none !important;
  }
}

@media (min-width: 761px) {
  body:has(#contact) .hours-advance-note {
    font-size: calc(clamp(0.58rem, 1.15vw, 0.82rem) + 1.5pt) !important;
  }

  body:has(#contact) .hours-line,
  body:has(#contact) .hours-days-line,
  body:has(#contact) .hours-day-line,
  body:has(#contact) .hours-evening-line,
  body:has(#contact) .hours-overnight-line {
    font-size: calc(clamp(0.66rem, 1.25vw, 0.88rem) + 1.5pt) !important;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  html body:has(#contact) .contact-grid .hours-operation-card.contact-card-even .hours-operation-text > .hours-advance-note {
    position: relative !important;
    left: -3.5ch !important;
    transform: translateX(-3.5ch) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: visible !important;
    text-overflow: clip !important;
    text-align: left !important;
    color: red !important;
    -webkit-text-fill-color: red !important;
  }
}

/* MOBILE ONLY FINAL PUBLISH EDIT: align Hours red note with Monday - Sunday.
   Left-justifies the red note to the same text-column margin as line 1.
   Web and tablet are not targeted. */
@media (max-width: 760px) {
  body:has(#contact) .hours-operation-card.contact-card-even .hours-operation-text > .hours-advance-note {
    text-align: left !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
    position: static !important;
    left: auto !important;
    white-space: nowrap !important;
  }
}

/* Sentelligence custom Tawk launcher - tablet/web only */
.sentelligence-chat-launcher {
  position: fixed;
  top: 150px;
  right: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.sentelligence-chat-launcher img {
  display: block;
  width: 240px;
  height: 80px;
  object-fit: contain;
}

.sentelligence-chat-launcher:focus-visible {
  outline: 3px solid #F88800;
  outline-offset: 3px;
  border-radius: 10px;
}

.sentelligence-chat-launcher.is-hidden-while-chat-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sentelligence-chat-close {
  position: fixed;
  top: 142px;
  right: 20px;
  z-index: 2147483647;
  display: inline-flex;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: #001038;
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, visibility;
}

.sentelligence-chat-close.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sentelligence-chat-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (min-width: 761px) and (max-width: 1180px) {
  .sentelligence-chat-launcher {
    top: 215px;
    right: 20px;
  }

  .sentelligence-chat-close {
    top: 210px;
    right: 20px;
    width: 72px;
    height: 72px;
    border: 0;
    font-size: 44px;
  }
}

/* Desktop-only: keep the custom Tawk launcher clickable above Tawk's high default iframe layer. Tablet is intentionally untouched. */
@media (min-width: 1181px) {
  .sentelligence-chat-launcher {
    z-index: 2147483647;
    pointer-events: auto;
  }

  .sentelligence-chat-close {
    top: 142px;
    right: 20px;
    width: 72px;
    height: 72px;
    border: 0;
    font-size: 44px;
    line-height: 1;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  .sentelligence-chat-launcher,
  .sentelligence-chat-close {
    display: none !important;
  }
}
