.chm-page {
            --chm-red: #da0032;
            --chm-dark: #111111;
            --chm-dark-2: #181818;
            --chm-light: #f5f5f5;
            --chm-border: #e4e4e4;
            --chm-text: #333333;
            --chm-muted: #737373;

            font-family: Inter, Arial, sans-serif;
            color: var(--chm-text);
            background: #fff;
            overflow: hidden;
        }

        .chm-page * {
            box-sizing: border-box;
        }

        .chm-container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

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

        .chm-page h1,
        .chm-page h2,
        .chm-page h3 {
            line-height: 1.2;
        }

        /* HERO */

        .chm-hero {
            position: relative;
            min-height: 590px;
            display: flex;
            align-items: center;
            background:
                linear-gradient(115deg, rgba(0,0,0,.96), rgba(17,17,17,.88)),
                url("/images/locations/movers-in-chestermere/moving-company-chestermere-ab-05.jpg") center/cover no-repeat;
            color: #fff;
        }

        .chm-hero-inner {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 70px;
            align-items: center;
        }

        .chm-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 13px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .chm-hero-label::before {
            content: "";
            width: 30px;
            height: 2px;
            background: var(--chm-red);
        }

        .chm-hero h1 {
            font-size: clamp(34px, 5vw, 52px);
            font-weight: 600;
            margin-bottom: 22px;
            max-width: 720px;
        }

        .chm-hero-text {
            color: #d6d6d6;
            font-size: 16px;
            line-height: 1.85;
            max-width: 690px;
            margin-bottom: 30px;
        }

        .chm-hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 25px;
            background: var(--chm-red);
            color: #fff !important;
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 600;
            transition: .3s ease;
        }

        .chm-hero-btn:hover {
            background: #b9002a;
            transform: translateY(-2px);
        }

        .chm-route-card {
            position: relative;
            padding: 35px;
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(255,255,255,.06);
            backdrop-filter: blur(8px);
        }

        .chm-route-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--chm-red);
        }

        .chm-route-card small {
            display: block;
            color: #aaa;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .chm-route-card strong {
            display: block;
            font-size: 23px;
            font-weight: 500;
            line-height: 1.45;
            margin-bottom: 20px;
        }

        .chm-route-card p {
            color: #c8c8c8;
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* INTRO */

        .chm-intro {
            padding: 100px 0;
        }

        .chm-intro-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 75px;
            align-items: center;
        }

        .chm-intro-image {
            position: relative;
        }

        .chm-intro-image img {
            width: 100%;
            height: 470px;
            object-fit: cover;
            display: block;
        }

        .chm-intro-image::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            right: -20px;
            bottom: -20px;
            background: var(--chm-red);
            z-index: -1;
        }

        .chm-kicker {
            display: block;
            color: var(--chm-red);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .chm-intro h2 {
            font-size: 34px;
            font-weight: 500;
            color: var(--chm-dark);
            margin-bottom: 22px;
        }

        .chm-intro p {
            color: #5f5f5f;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        /* DIFFERENCE */

        .chm-difference {
            background: var(--chm-light);
            padding: 90px 0;
        }

        .chm-section-head {
            max-width: 700px;
            margin-bottom: 45px;
        }

        .chm-section-head h2 {
            font-size: 32px;
            font-weight: 500;
            color: var(--chm-dark);
            margin-bottom: 15px;
        }

        .chm-section-head p {
            color: var(--chm-muted);
            line-height: 1.8;
            font-size: 15px;
        }

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

        .chm-difference-item {
            background: #fff;
            padding: 30px 25px;
            border-top: 3px solid transparent;
            transition: .3s ease;
        }

        .chm-difference-item:hover {
            border-top-color: var(--chm-red);
            transform: translateY(-5px);
        }

        .chm-difference-number {
            color: var(--chm-red);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .chm-difference-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--chm-dark);
            margin-bottom: 12px;
        }

        .chm-difference-item p {
            color: var(--chm-muted);
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* REGIONAL */

        .chm-regional {
            background: var(--chm-dark);
            color: #fff;
            padding: 90px 0;
        }

        .chm-regional-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .chm-regional h2 {
            font-size: 34px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .chm-regional p {
            color: #c9c9c9;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .chm-regional-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .chm-regional-point {
            border-left: 2px solid var(--chm-red);
            padding: 14px 18px;
            background: rgba(255,255,255,.04);
            color: #ddd;
            font-size: 14px;
        }

        /* SERVICES */

        .chm-services {
            padding: 100px 0;
        }

        .chm-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .chm-service {
            padding: 32px 25px;
            border: 1px solid var(--chm-border);
            background: #fff;
            transition: .3s ease;
        }

        .chm-service:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,.08);
            transform: translateY(-5px);
        }

        .chm-service span {
            display: block;
            color: var(--chm-red);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .chm-service h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--chm-dark);
        }

        .chm-service p {
            color: var(--chm-muted);
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ACCESS */

        .chm-access {
            background: #f6f6f6;
            padding: 90px 0;
        }

        .chm-access-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 70px;
            align-items: center;
        }

        .chm-access-image img {
            width: 100%;
            height: 430px;
            object-fit: cover;
            display: block;
        }

        .chm-access h2 {
            font-size: 32px;
            font-weight: 500;
            color: var(--chm-dark);
            margin-bottom: 18px;
        }

        .chm-access p {
            color: var(--chm-muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .chm-access-list {
            margin-top: 25px;
            display: grid;
            gap: 12px;
        }

        .chm-access-list div {
            padding: 15px 18px;
            background: #fff;
            border-left: 3px solid var(--chm-red);
            font-size: 14px;
            color: #444;
        }

        /* GALLERY */

        .chm-gallery {
            padding: 100px 0;
        }

        .chm-gallery-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 35px;
        }

        .chm-gallery-head h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 0;
            color: var(--chm-dark);
        }

        .chm-gallery-head p {
            max-width: 520px;
            color: var(--chm-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .chm-slider {
            position: relative;
            overflow: hidden;
        }

        .chm-slides {
            display: flex;
            transition: transform .5s ease;
        }

        .chm-slide {
            min-width: 100%;
        }

        .chm-slide img {
            width: 100%;
            height: 500px;
            display: block;
            object-fit: cover;
        }

        .chm-slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 18px;
        }

        .chm-slider-arrows {
            display: flex;
            gap: 8px;
        }

        .chm-slider-btn {
            width: 45px;
            height: 45px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            font-size: 18px;
            transition: .25s ease;
        }

        .chm-slider-btn:hover {
            background: var(--chm-red);
            border-color: var(--chm-red);
            color: #fff;
        }

        .chm-dots {
            display: flex;
            gap: 7px;
        }

        .chm-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
        }

        .chm-dot.active {
            background: var(--chm-red);
        }

        /* COST */

        .chm-cost {
            padding: 90px 0;
            background: var(--chm-dark);
            color: #fff;
        }

        .chm-cost-grid {
            display: grid;
            grid-template-columns: .8fr 1.2fr;
            gap: 70px;
        }

        .chm-cost h2 {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 18px;
        }

        .chm-cost-intro {
            color: #c8c8c8;
            font-size: 15px;
            line-height: 1.85;
        }

        .chm-cost-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: #333;
        }

        .chm-cost-item {
            background: var(--chm-dark-2);
            padding: 24px;
        }

        .chm-cost-item strong {
            display: block;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .chm-cost-item span {
            display: block;
            color: #aaa;
            font-size: 13px;
            line-height: 1.6;
        }

        /* FAQ */

        .chm-faq-new {
            padding: 110px 0;
            background: #f4f4f2;
        }

        .chm-faq-header {
            display: grid;
            grid-template-columns: .7fr 1.3fr;
            gap: 80px;
            margin-bottom: 50px;
            align-items: end;
        }

        .chm-faq-eyebrow {
            color: var(--chm-red);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .chm-faq-header h2 {
            font-size: 35px;
            font-weight: 500;
            color: var(--chm-dark);
            margin-bottom: 0;
        }

        .chm-faq-header-text {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            max-width: 650px;
            margin-left: auto;
        }

        .chm-faq-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .chm-faq-card {
            background: #fff;
            border: 1px solid #dededc;
            transition: .3s ease;
        }

        .chm-faq-card:hover {
            border-color: #c7c7c7;
            box-shadow: 0 12px 30px rgba(0,0,0,.05);
        }

        .chm-faq-question {
            width: 100%;
            display: grid;
            grid-template-columns: 38px 1fr 25px;
            align-items: center;
            gap: 15px;
            border: 0;
            background: transparent;
            padding: 24px 25px;
            text-align: left;
            cursor: pointer;
            color: var(--chm-dark);
        }

        .chm-faq-number {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f1f1;
            color: var(--chm-red);
            font-size: 11px;
            font-weight: 600;
        }

        .chm-faq-question strong {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.45;
        }

        .chm-faq-icon {
            position: relative;
            width: 18px;
            height: 18px;
        }

        .chm-faq-icon::before,
        .chm-faq-icon::after {
            content: "";
            position: absolute;
            top: 8px;
            left: 2px;
            width: 14px;
            height: 1.5px;
            background: #222;
            transition: .25s ease;
        }

        .chm-faq-icon::after {
            transform: rotate(90deg);
        }

        .chm-faq-card.active .chm-faq-icon::after {
            transform: rotate(0);
            opacity: 0;
        }

        .chm-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .chm-faq-answer-inner {
            padding: 0 25px 25px 78px;
            color: #666;
            font-size: 14px;
            line-height: 1.8;
        }

        /* FINAL CTA */

        .chm-final-cta {
            position: relative;
            padding: 0;
            background: var(--chm-dark);
            overflow: hidden;
        }

        .chm-final-cta::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(218,0,50,.12);
            right: -180px;
            top: -260px;
        }

        .chm-final-cta::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,.025);
            left: -140px;
            bottom: -180px;
        }

        .chm-final-cta-inner {
            position: relative;
            z-index: 2;
            min-height: 300px;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            align-items: center;
            gap: 60px;
            padding: 70px 0;
        }

        .chm-final-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #aaa;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 17px;
        }

        .chm-final-label::before {
            content: "";
            width: 26px;
            height: 2px;
            background: var(--chm-red);
        }

        .chm-final-cta h2 {
            color: #fff;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 15px;
            max-width: 650px;
        }

        .chm-final-cta p {
            color: #bdbdbd;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 0;
            max-width: 620px;
        }

        .chm-final-action {
            display: flex;
            justify-content: flex-end;
        }

        .chm-final-action-box {
            width: 100%;
            max-width: 330px;
            border: 1px solid rgba(255,255,255,.15);
            padding: 28px;
            background: rgba(255,255,255,.035);
        }

        .chm-final-action-box span {
            display: block;
            color: #999;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .chm-final-action-box strong {
            display: block;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .chm-final-btn {
            width: 100%;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--chm-red);
            color: #fff !important;
            text-decoration: none !important;
            font-size: 13px;
            font-weight: 600;
            transition: .3s ease;
        }

        .chm-final-btn:hover {
            background: #b9002a;
        }

        /* RESPONSIVE */

        @media (max-width: 1000px) {

            .chm-hero-inner,
            .chm-intro-grid,
            .chm-regional-grid,
            .chm-access-grid,
            .chm-cost-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .chm-difference-grid,
            .chm-services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .chm-faq-header {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .chm-faq-header-text {
                margin-left: 0;
            }

            .chm-final-cta-inner {
                grid-template-columns: 1fr;
            }

            .chm-final-action {
                justify-content: flex-start;
            }
        }

        @media (max-width: 700px) {

            .chm-container,
            .chm-hero-inner {
                width: min(100% - 28px, 1180px);
            }

            .chm-hero {
                min-height: auto;
                padding: 90px 0;
            }

            .chm-hero h1 {
                font-size: 34px;
            }

            .chm-route-card {
                padding: 25px;
            }

            .chm-intro,
            .chm-difference,
            .chm-services,
            .chm-access,
            .chm-gallery,
            .chm-cost {
                padding: 70px 0;
            }

            .chm-difference-grid,
            .chm-services-grid,
            .chm-faq-list {
                grid-template-columns: 1fr;
            }

            .chm-regional-points,
            .chm-cost-items {
                grid-template-columns: 1fr;
            }

            .chm-intro-image img,
            .chm-access-image img {
                height: 350px;
            }

            .chm-gallery-head {
                display: block;
            }

            .chm-gallery-head p {
                margin-top: 15px;
            }

            .chm-slide img {
                height: 350px;
            }

            .chm-faq-new {
                padding: 75px 0;
            }

            .chm-faq-header h2 {
                font-size: 30px;
            }

            .chm-faq-question {
                grid-template-columns: 34px 1fr 20px;
                padding: 20px 18px;
            }

            .chm-faq-answer-inner {
                padding: 0 18px 22px 67px;
            }

            .chm-final-cta-inner {
                padding: 60px 0;
            }

            .chm-final-action-box {
                max-width: 100%;
            }
        }
