    .chd-colors {
        --brand-primary: #ed1b24;
        --brand-secondary: #000000;
        --brand-text-primary: #fff;
        --brand-text-secondary: #ffffff;
    }

    .chd-main {
        width: 100%;
        margin: 0 auto;
        --zero-size: 0;
        --sm-size: 0.5rem;
        --md-size: 1rem;
        --lg-size: 2rem;
        --xl-size: 4rem;
    }

        .chd-main * {
            box-sizing: border-box;
        }


    .banner-area {
        width: 100%;
        height: 350px;
        background: url('https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=194669') no-repeat center;
        background-size: contain;
        background-color: #f8f8f8;
    }


    .locations-wrapper {
        max-width: 1100px;
        margin: var(--xl-size) auto;
        padding: 0 var(--md-size);
    }

    .section-intro {
        text-align: center;
        margin-bottom: var(--xl-size);
    }

    .split-container {
        display: flex;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }

    .location-side {
        flex: 1;
        padding: var(--xl-size) var(--lg-size);
        display: flex;
        flex-direction: column;
    }

        .location-side:first-child {
            border-right: 1px solid #eee;
        }

    .loc-tag {
        background: var(--brand-secondary);
        color: var(--brand-text-primary);
        display: inline-block;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: var(--md-size);
    }

    .location-side h3 {
        margin: 0 0 var(--md-size) 0;
        font-size: 1.5rem;
    }

    .flex-content {
        display: flex;
        gap: var(--lg-size);
        align-items: flex-start;
        margin-bottom: var(--lg-size);
    }

    .info-text {
        flex: 1;
    }

    .phone-link {
        color: var(--brand-primary);
        font-weight: bold;
        font-size: 1.2rem;
        text-decoration: none;
        display: block;
        margin: var(--sm-size) 0;
    }

    .side-img {
        width: 200px;
        height: 120px;
        object-fit: cover;
        border-radius: 4px;
    }

    .map-preview {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 4px;
        margin-top: auto;
    }

    .estimate-btn {
        display: block;
        background: var(--brand-primary);
        color: var(--brand-text-primary);
        text-decoration: none;
        padding: 16px;
        border-radius: 4px;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

        .estimate-btn:hover {
            background: var(--brand-secondary);
            transform: translateY(-2px);
        }


    .services-section {
        background-color: #f4f4f4;
        padding: var(--xl-size) 0;
    }

    .services-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 0 var(--md-size);
    }

    .service-tile {
        position: relative;
        height: 160px;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
    }

        .service-tile img.bg-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.4);
        }

        .service-tile span {
            position: relative;
            z-index: 2;
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

  
    .guarantee-section {
        padding: var(--xl-size) var(--md-size);
        background: #fff;
        text-align: center;
    }

    .guarantee-title {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: var(--sm-size);
        color: var(--brand-secondary);
    }

    .guarantee-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        gap: var(--lg-size);
        margin-top: 50px;
    }

    .guarantee-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flaticon-icon {
        width: 80px;
        height: 80px;
        margin-bottom: var(--md-size);
        object-fit: contain;
    }

    .guarantee-label {
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--brand-secondary);
    }

  
    .faq-section {
        padding: var(--xl-size) var(--md-size);
        background-color: #f9f9f9;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: var(--lg-size);
    }

    .faq-item {
        background: #fff;
        margin-bottom: var(--md-size);
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }

    .faq-input {
        display: none;
    }

    .faq-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--md-size) var(--lg-size);
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        color: var(--brand-secondary);
        transition: background 0.3s;
    }

        .faq-label:hover {
            background-color: #fdfdfd;
        }

    .faq-icon {
        position: relative;
        width: 20px;
        height: 20px;
    }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background-color: var(--brand-primary);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.3s;
        }

        .faq-icon::before {
            width: 100%;
            height: 2px;
        }

        .faq-icon::after {
            width: 2px;
            height: 100%;
        }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 var(--lg-size);
        color: #555;
        line-height: 1.6;
    }

    .faq-input:checked ~ .faq-content {
        max-height: 400px;
        padding: var(--md-size) var(--lg-size);
        border-top: 1px solid #f0f0f0;
    }

    .faq-input:checked ~ .faq-label .faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }


    .cert-section {
        background: #111;
        padding: var(--xl-size) var(--md-size);
        color: #fff;
        text-align: center;
    }

    .cert-header h2 {
        font-size: 1.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 30px 0;
    }

    .cert-grid {
        max-width: 1000px;
        margin: 0 auto 30px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .cert-box {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .cert-box:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: var(--brand-primary);
            transform: translateY(-5px);
        }

        .cert-box img {
            width: 100%;
            height: 60px;
            object-fit: contain;
            transition: 0.3s;
        }

 
    .repair-services {
        padding: var(--xl-size) var(--md-size);
        background: #fdfdfd;
    }

    .repair-services-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        gap: var(--lg-size);
        align-items: flex-start;
    }

    .repair-img {
        flex: 1;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: 425px;
    }

        .repair-img img {
            width: 100%;
            display: block;
        }

    .repair-list-wrapper {
        flex: 2;
    }

        .repair-list-wrapper h2 {
            margin-top: 0;
            margin-bottom: var(--lg-size);
            font-size: 1.8rem;
            color: var(--brand-secondary);
        }

    .bullet-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--md-size);
    }

        .bullet-columns ul {
            padding-left: 20px;
            margin: 0;
            list-style: none; 
            padding: 0;
        }

        .bullet-columns li {
            color: #444;
            font-size: 18px;
            padding-left: 30px;
            position: relative;
            margin-bottom: 18px;
        }

            .bullet-columns li::before {
                content: '✔'; 
                position: absolute;
                left: 0;
                color: #27ae60; 
                font-weight: 900;
            }




            .gallery-slider {
                position: relative;
                max-width: 1100px;
                margin: var(--xl-size) auto;
                padding: 0 var(--md-size);
                text-align: center;
            }

    .gallery-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .slider-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .slide {
        min-width: 100%;
    }

        .slide img {
            width: 100%;
            display: block;
            height: auto;
            max-height: 600px;
            object-fit: cover;
        }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--brand-primary);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    
    .auto-group-section {
        background-color: #f9f9f9;
        padding: var(--xl-size) var(--md-size);
        text-align: center;
    }

    .group-title {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: var(--xl-size);
        color: var(--brand-secondary);
    }

    .group-grid {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .group-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
        transition: transform 0.3s;
    }

        .group-card:hover {
            transform: translateY(-5px);
        }

    .card-img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .card-body {
        padding: 15px 10px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .card-body h4 {
            margin: 0 0 10px 0;
            font-size: 1.1rem;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-secondary);
        }

    .card-info {
        font-size: 0.8rem;
        color: #444;
        margin-bottom: 15px;
        line-height: 1.4;
        flex: 1;
    }

    .card-btns {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }

    .group-btn {
        display: block;
        background: var(--brand-primary);
        color: white;
        text-decoration: none;
        padding: 8px 0;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        text-transform: uppercase;
        transition: opacity 0.2s;
    }

        .group-btn:hover {
            opacity: 0.9;
            background:black;
        }

    @media (max-width: 1100px) {
        .group-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .split-container, .repair-services-container {
            flex-direction: column;
        }

        .location-side:first-child {
            border-right: none;
            border-bottom: 1px solid #eee;
        }

        .services-grid, .cert-grid, .group-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .bullet-columns {
            grid-template-columns: 1fr;
        }
    }