:root {
    /* Primary */
    --primary-color: #2a7570;
    --primary-hover-color: #3d8d87;

    /* Neutral */
    --white: #ffffff;
    --black: #1a1a1a;

    /* Greys */
    --grey: #f5f5f5;
    --grey-secondary: #e5e5e5;
    --grey-light: #d0d0d0;

    /* Borders */
    --border-light: #f0f0f0;
    --border-gray: #e5e7eb;

    /* Text */
    --text-muted-light: #999999;
    --text-muted-dark: #666666;

    /* Backgrounds */
    --bg-light: #f9fafb;

    /* Spacing */
    --section-padding: 40px 0;
}

html {
    font-size: 16px;
}

html,
body,
html *,
body * {
    scrollbar-color: var(--primary-hover-color) var(--grey-secondary);
    scrollbar-width: thin;
}

img {
    color: transparent;
}

::-webkit-scrollbar {
    width: 15px;
    height: 8px;
    background-color: var(--grey-secondary);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-hover-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-hover-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__stripe {
    background: var(--white);
    border-bottom: 1px solid var(--grey-secondary);
}

.header__stripe-container {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__stripe-container {
    padding: 12px 20px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.header__brand-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    white-space: nowrap;
    line-height: 1.2;
	text-transform: capitalize;
}

.header__promo {
    text-align: center;
    font-weight: bold;
    display: none;
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    width: max-content;
    max-width: 100%;
}

.header__promo a {
    color: inherit;
    text-decoration: underline;
    transition: all .2s ease-in-out;
}

.header__promo a:hover {
    color: var(--white);
}

.header__phone {
    color: var(--primary-hover-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    font-size: 22px;
    display: none;
}

@media (min-width: 610px) {
    .header__phone {
        display: inline-flex;
    }
}

.header__phone:hover {
    color: var(--primary-color);
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__hamburger span {
    width: 24px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

.header__nav {
    display: none;
}

.header__nav-container {
    padding: 0 20px;
}

.header__menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.header__menu-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    padding: 11px 0;
    display: block;
    transition: color 0.3s;
}

.header__menu-link:not(a) {
    cursor: default;
}

.header__menu-link:hover {
    color: var(--primary-hover-color);
}

.header__menu-item--dropdown {
    position: relative;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
}
.header__dropdown--cols {
	grid-template-columns: repeat(5, 1fr);
}
@media(max-width: 991px){
	.header__dropdown--cols {
		grid-template-columns: repeat(4, 1fr);
	}
	.header__phone {
		font-size: 18px;
	}
}

.header__menu-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: normal;
    text-wrap: nowrap;
    word-wrap: break-word;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
    text-transform: capitalize;
}

.header__dropdown li a:hover {
    background: var(--primary-hover-color);
    color: var(--white);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--grey-secondary);
}

.mobile-menu__title {
    font-weight: 600;
    font-size: 20px;
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__list > li {
    border-bottom: 1px solid var(--grey-secondary);
}

.mobile-menu__list > li > a,
.mobile-menu__toggle {
    display: block;
    padding: 16px 20px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.mobile-menu__submenu {
    list-style: none;
    background: var(--grey);
    max-height: 0;
    margin: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-menu__submenu.is-open {
    max-height: 1000px;
}

.mobile-menu__submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-muted-dark);
    text-decoration: none;
    text-transform: capitalize;
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 25px 0;
}
.hero--no-padding {
	padding: 0!important;
}

.hero__img-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero__text-img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero__text-wrapper {
        grid-template-columns:100%;
    }

    .hero__text-img {
        display: none;
    }
}

.hero__text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero__text a {
    color: inherit;
}

.hero__text p {
	margin-bottom: .75rem;
}
.hero__text :last-child {
	margin-bottom: 0;
}

.hero__button {
    display: inline-block;
    width: 100%;
    background: var(--primary-hover-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: 0.3s;
}

.hero__button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.services__text-under-title {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
}

.services__text-under-title a {
    color: var(--primary-hover-color);
    text-decoration: none;
}

.services__text-under-title a:hover {
    text-decoration: underline;
}

.services__carousel {
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.services__arrow {
    background: var(--primary-hover-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    flex-shrink: 0;
    transition: 0.3s;
    display: none;
    z-index: 10;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .services__arrow {
        display: none !important;
    }
}

.services__arrow:hover {
    background: var(--primary-color);
}

.services__scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 20px;
    padding: 0 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services__scroll::-webkit-scrollbar {
    display: none;
}

.services__card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.services__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.services__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    padding: 20px 20px 10px;
    color: var(--black);
}

.services__card-title-link .services__card-title,
.services__card-title-link {
    text-decoration: none;
    transition: .2s ease-in-out;
}

.services__card-title-link:hover .services__card-title,
.services__card-title-link:hover {
    color: var(--primary-hover-color);
}

.services__card-text {
    padding: 0 20px 20px;
    line-height: 1.6;
    color: var(--text-muted-dark);
	text-wrap: balance;
}

.services__card-text a {
    color: var(--primary-hover-color);
    text-decoration: none;
}

.services__card-text a:hover {
    text-decoration: underline;
}

.services__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.services__dot {
    min-width: 12px;
    min-height: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--grey-secondary);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.services__dot.is-active {
    background: var(--primary-hover-color);
}

@media(max-width: 767px) {
	.services__dots {
		margin-top: 0;
	}
}

.content {
    padding: var(--section-padding);
    background: var(--grey);
}

.content__body {
    line-height: 1.6;
}

.content__body > h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.content__body p {
    margin-bottom: 20px;
}

.content__body h2,
.content__body h3,
.content__body h4,
.content__body h5,
.content__body h6 {
    font-weight: 600;
    margin: 30px 0 15px;
    line-height: 1.3;
}

.content__body h2 {
    font-size: 28px;
}

.content__body h3 {
    font-size: 24px;
}

.content__body h4 {
    font-size: 20px;
}

.content__body ul,
.content__body ol,
ul,
ol {
    margin: 20px 0 20px 20px;
    list-style-position: inside;
}

.content__body li {
    margin-bottom: 8px;
}

.content__body a {
    color: var(--primary-hover-color);
    text-decoration: none;
}

.content__body a:hover {
    text-decoration: underline;
}

.content__body img {
    max-width: 100%;
    /*width: auto;
    height: auto;*/
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

@media (max-width: 767px) {
    .content__body img {
        width: 100% !important;
        max-height: 450px;
        margin: 1rem 0;
		object-fit: cover;
    }
}

.content__body table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content__body th,
.content__body td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--grey-secondary);
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.content__body th {
    background: var(--primary-hover-color);
    color: var(--white);
    font-weight: 600;
}

.content__body tbody tr:nth-child(even) {
    background: var(--grey);
}

.content__body tbody tr {
    background: var(--white);
}

.content__body blockquote {
    border-left: 4px solid var(--primary-hover-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-muted-dark);
}

.content__body strong {
    font-weight: 600;
}

.content__body em {
    font-style: italic;
}

.content__body code {
    background: var(--grey);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}

.content__body pre {
    background: var(--grey);
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 20px 0;
}

.content__body pre code {
    background: none;
    padding: 0;
}

.content__body >:first-child {
	margin-top: 0;
}

@media (max-width: 767px) {
    .content__body table {
        display: block;
    }

    .content__body th,
    .content__body td {
        white-space: nowrap;
    }
}

.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-hover-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta__description {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta__button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-hover-color);
    padding: 16px 60px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid var(--white);
}

.cta__button:hover {
    color: var(--white);
    background: var(--primary-hover-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.faq__text-under-title {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
}

.faq__text-under-title a {
    color: var(--primary-hover-color);
    text-decoration: none;
}

.faq__text-under-title a:hover {
    text-decoration: underline;
}

.faq__list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    box-shadow: 0 0 2px 0 var(--grey-light);
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--primary-hover-color);
    color: var(--white);
}

.accordion-header:hover {
    background-color: var(--primary-color);
}

.accordion-header.active {
    background-color: var(--primary-color);
}

.accordion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.accordion-content.active {
    max-height: 500px;
    overflow-y: auto;
}

.accordion-body {
    padding: 16px 20px;
    color: inherit;
    line-height: 1.6;
    border-top: 1px solid var(--grey-light);
}

.accordion-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.accordion-body a:hover {
    text-decoration: underline;
}

.locations {
    padding: var(--section-padding);
    background: var(--grey);
}

.locations__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.locations__text-under-title {
    margin-top: 1rem;
    font-size: 1rem;
}

.locations__text-under-title a {
    color: var(--primary-hover-color);
    text-decoration: none;
}

.locations__text-under-title a:hover {
    text-decoration: underline;
}

.locations__grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.locations__card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.locations__card:hover {
    background: var(--primary-hover-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.footer {
    background: var(--text-muted-dark);
	padding: var(--section-padding);
    padding-bottom: 100px;
}

.footer *:not(a) {
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer__brand-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: var(--black);
}

.footer__description {
    color: var(--text-muted-dark);
    line-height: 1.6;
}

.footer__heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.footer__list li {
    margin-bottom: 10px;
	text-wrap: balance;
	padding-right: 5px;
}

.footer__list a {
    color: var(--white);
    text-decoration: none;
}

.footer__list a:hover {
    text-decoration: underline;
}

.footer__contact {
    color: var(--white);
    line-height: 1.8;
}

.footer__contact a {
    color: var(--white);
    text-decoration: none;
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 1px solid var(--grey-secondary);
    padding-top: 20px;
}

.footer__disclaimer {
    font-size: 14px;
    color: var(--text-muted-light);
    line-height: 1.6;
}
.footer__disclaimer--center {
	text-align: center;
}
.footer__column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.phone-anchor {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary-hover-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.phone-anchor__content {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
}

@media (max-width: 767px) {
	.footer__grid {
		gap: 20px;
	}
    .phone-anchor__content {
        grid-template-columns: 100%;
    }
}

.phone-anchor__text {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    display: none;
    text-transform: capitalize;
    text-wrap: balance;
}

.phone-anchor__text:first-child {
    text-align: right;
}

.phone-anchor__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-hover-color);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    flex: 1;
    border: 2px solid var(--primary-hover-color);
}

.phone-anchor__button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: var(--white);
}

.phone-anchor__number {
    white-space: nowrap;
}

.phone-anchor__cta {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 5px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    display: none;
    text-decoration: none;
}

.phone-anchor__cta:hover {
    background: var(--white);
    color: var(--primary-hover-color);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-notice.is-visible {
    transform: translateY(0);
}

.cookie-notice__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-notice__text {
    color: var(--text-muted-dark);
    line-height: 1.6;
}

.cookie-notice__text a {
	color: var(--primary-color);
	text-decoration: none;
}

.cookie-notice__text a:hover {
	text-decoration: underline;
}

.cookie-notice__buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.cookie-notice__button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
	white-space: nowrap;
}

.cookie-notice__button--accept {
    background: var(--primary-hover-color);
    color: var(--white);
}

.cookie-notice__button--accept:hover {
    background: var(--primary-color);
}

.cookie-notice__button--dismiss {
    background: var(--grey-secondary);
    color: var(--black);
}

.cookie-notice__button--dismiss:hover {
    background: var(--grey-light);
}

@media (min-width: 610px) {
    .services__scroll {
        grid-auto-columns: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .header__stripe-container {
        padding: 16px 30px 11px;
    }

    .header__promo {
        display: block;
    }

    .header__hamburger {
        display: none;
    }

    .header__nav {
        display: block;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__button {
        width: auto;
    }

    .services__arrow {
        display: flex;
    }

    .services__scroll {
        grid-auto-columns: calc(50% - 10px);
    }

    .services__card {
        flex: 0 0 calc(50% - 10px);
    }

    .locations__grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .cookie-notice__content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-notice__buttons {
        flex-shrink: 0;
    }

    .phone-anchor__text {
        display: block;
    }

    .phone-anchor__button {
        flex: 0 0 auto;
    }

    .phone-anchor__cta {
        display: block;
    }
}

@media (min-width: 1024px) {
    .services__scroll {
        grid-auto-columns: calc(33.333% - 14px);
    }

    .locations__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.locations-dropdown {
    overflow: hidden;
    padding: var(--section-padding);
}

.locations-dropdown {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.locations-dropdown__item {
    border-bottom: 1px solid var(--border-gray);
}

.locations-dropdown__item:last-child {
    border-bottom: none;
}

.locations-dropdown__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.locations-dropdown__header:hover,
.locations-dropdown__header--open {
    background-color: var(--primary-color);
    color: var(--white);
}

.locations-dropdown__title {
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.locations-dropdown__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.locations-dropdown__icon--open {
    transform: rotate(180deg);
}

.locations-dropdown__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

.locations-dropdown__content--open {
    max-height: 1000px;
}

.locations-dropdown__wrapper {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.locations-dropdown__all-link {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
}

.locations-dropdown__heading {
    grid-column: 1 / -1;
    font-size: 1.1rem;
    font-weight: bold;
}

.locations-dropdown__heading a {
    color: var(--primary-hover-color);
    text-decoration: none;
    transition: var(--transition);
}

.locations-dropdown__heading a:hover {
    color: var(--primary-color);
}

.locations-dropdown__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 12px;
}

.locations-dropdown__link {
    font-size: 1rem;
    color: var(--primary-hover-color);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
    width: max-content;
    max-width: 100%;
}

.locations-dropdown__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

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

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.alignnone {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    clear: both;
}

@media (max-width: 991px) {
    .content__body :is(.alignleft, .alignright) {
        max-width: 50%;
    }
}
@media (max-width: 767px) {
    .content__body :is(.alignleft, .alignright) {
        max-width: 100%;
    }
}

/* 404 Page Styles */
.error-404-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-hover-color) 0%, var(--primary-color) 100%);
    margin-top: 60px;
}

.error-404-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><text x="50%" y="50%" font-size="400" font-weight="bold" text-anchor="middle" dominant-baseline="middle" fill="white" opacity="0.1">404</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.error-404-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.error-404-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.error-404-hero__number {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.error-404-hero__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-404-hero__text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.error-404-hero__button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-hover-color);
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid var(--white);
}

.error-404-hero__button:hover {
    background: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .error-404-hero {
        min-height: 80vh;
        margin-top: 60px;
    }

    .error-404-hero__number {
        font-size: 80px;
    }

    .error-404-hero__title {
        font-size: 32px;
    }

    .error-404-hero__text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .error-404-hero__button {
        padding: 14px 40px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    h1,
    .h1,
    .hero__title {
        font-size: 24px;
    }

    h2,
    .h2,
    .content__body h2,
    .cta__title,
    .services__title,
    .faq__title,
    .locations__title {
        font-size: 22px;
    }

    h3,
    .h3,
    .content__body h3 {
        font-size: 20px;
    }

    h4,
    .h4,
    .content__body h4,
    h5,
    .content__body h5,
    h6,
    .content__body h6,
    .mobile-menu__title {
        font-size: 18px;
    }

    body,
    .hero__text,
    .services__card-text,
    .content__body,
    .content__body p,
    .content__body li,
    .accordion-body,
    .accordion-body p,
    .accordion-body li,
    .accordion-body *,
    .faq__text-under-title,
    .services__text-under-title,
    .locations__text-under-title,
    .footer__description,
    .footer__contact,
    .mobile-menu__list a,
    .mobile-menu__toggle,
    .mobile-menu__submenu a,
    .mobile-menu__list > li > a,
    .cta__description,
    input,
    textarea,
    select,
    ::placeholder {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero__button,
    .cta__button,
    .phone-anchor__button,
    .phone-anchor__cta,
    /*.cookie-notice__button,*/
    .accordion-header {
        font-size: 16px;
    }

    .header__brand-text,
    .header__menu-link,
    .cookie-notice__text,
    .wp-caption-text,
    .gallery-caption {
        font-size: 14px;
    }
	.footer__disclaimer {
		font-size: 12px;
	}

    .services__card-title {
        font-size: 20px;
    }

    .accordion-header {
        padding: 14px 16px;
    }

    .locations__card {
        font-size: 15px;
        padding: .5rem .8rem;
    }

    .services__card {
        justify-content: start;
    }
}