@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Oswald:wght@500;700&display=swap');

h1:focus,
h2:focus,
.cs-title:focus {
    outline: none;
}

/* 1. KEY CHANGE: Body must be transparent to see the fixed video behind it */
html, body {
    font-family: 'Open Sans', sans-serif;
    color: var(--bodyTextColor);
    background-color: var(--secondary); /* Changed to Cream */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth; 
    scroll-padding-top: 100px;
}

h1, h2, h3, h4, .btn, .navbar-brand {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FIXED BACKGROUND VIDEO --- */
/* This pins the video to the window so it doesn't move */
.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
}

/* Fixed overlay to darken the video */
.hero-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 15, 0.6); /* Adjusted to Dark Brown tint */
    z-index: -2;
}

/* --- HERO TEXT WRAPPER --- */
/* This container scrolls normally */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* The "Kivela" Rough Edge Effect */
.hero-bottom-edge {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

    .hero-bottom-edge svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 60px;
        transform: rotate(180deg);
    }

    .hero-bottom-edge .shape-fill {
        fill: var(--brand-cream);
    }

/* --- SOLID CONTENT SECTIONS --- */
.content-section {
    position: relative;
    background-color: var(--secondary); /* Changed to Cream */
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

/* --- COMPONENTS --- */
.btn-action {
    background-color: var(--primary); /* Changed to Primary Green */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: transform 0.2s;
}

    .btn-action:hover {
        background-color: #46632e;
        transform: scale(1.05);
        color: white;
    }

.section-title {
    font-size: 2.5rem;
    color: var(--headerColor);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mulch-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary);
    transition: transform 0.3s;
}

    .mulch-card:hover {
        transform: translateY(-10px);
    }

:root {
    /* SURGICAL UPDATE: Industrial Organic Palette */
    --primary: #597a3a; /* Logo Green */
    --primaryLight: #6b9145;
    --secondary: #fcf8ed; /* Logo Cream Background */
    --secondaryLight: #ffba43;
    --accent: #ffba43;
    --headerColor: #1e140f; /* Dark Espresso (Industrial Look) */
    --bodyTextColor: #2a1d15; /* Dark Brown */
    --bodyTextColorWhite: #ffffff;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
    /* Added background for readability over video */
    background: rgba(255,255,255,0.9);
    padding: 0.2rem 0.5rem;
    width: fit-content;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: #ffffff; /* Forced White for Hero */
    position: relative;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--secondary); /* Cream text for hero */
}


/*-- -------------------------- -->
<---      Mobile Navigation       -->
<--- -------------------------- -*/
/* Mobile - 1023.5px */
@media only screen and (max-width: 63.96875rem) {
    body.cs-open {
        overflow: hidden;
    }

    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 0.75rem 1rem;
        background: radial-gradient(circle at center, #fcf8ed 0%, #f0e6d2 100%);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        #cs-navigation:after {
            display: none; /* Removed the green bar on mobile */
        }

        #cs-navigation:before {
            content: "";
            width: 100%;
            height: 0vh;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            z-index: -11;
            transition: height 0.5s, opacity 0.3s;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        #cs-navigation.cs-active:before {
            height: 150vh;
            opacity: 1;
        }

        #cs-navigation.cs-active .cs-top-bar {
            z-index: initial;
        }

            #cs-navigation.cs-active .cs-top-bar:before {
                display: none;
            }

        #cs-navigation.cs-active .cs-link {
            color: var(--bodyTextColorWhite);
        }

        #cs-navigation.cs-active .cs-ul-wrapper {
            opacity: 1;
            transform: scaleY(1);
            transition-delay: 0.2s;
        }

        #cs-navigation.cs-active .cs-li {
            opacity: 1;
            transform: translateY(0);
        }

        #cs-navigation.scroll .cs-top-bar {
            height: 0;
            padding-bottom: 0;
            overflow: hidden;
            opacity: 0;
        }

            #cs-navigation.scroll .cs-top-bar:before {
                opacity: 0;
            }

        #cs-navigation.scroll .cs-toggle {
            margin-top: 0;
        }

        #cs-navigation .cs-top-bar {
            margin: 0;
            padding: 0 0 0.75rem 0;
            position: relative;
            z-index: -3;
            transition: height 0.3s, padding-bottom 0.3s, opacity 0.3s;
        }

        #cs-navigation .cs-logo {
            width: 40%;
            max-width: 9.125rem;
            height: 100%;
            box-sizing: border-box;
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
            background-color: var(--secondary); /* Cream background for Logo */
        }

            #cs-navigation .cs-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        #cs-navigation .cs-item {
            list-style: none;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        #cs-navigation .cs-remove {
            display: none;
        }

        #cs-navigation .cs-picture {
            width: 2rem;
            height: 2rem;
            margin-right: 1rem;
            background-color: #eff1f0;
            border-radius: 50%;
            display: none;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }

        #cs-navigation .cs-icon {
            width: 1rem;
            height: auto;
            display: block;
        }

        #cs-navigation .cs-header {
            display: none;
        }

        #cs-navigation .cs-link {
            font-size: 0.875rem;
            line-height: 1.5em;
            text-align: inherit;
            text-decoration: none;
            margin: 0;
            color: #597a3a; /* White Text on Mobile */
            display: block;
            transition: color 0.3s;
        }

        #cs-navigation .cs-toggle {
            /* 44px - 48px */
            width: clamp(2.75rem, 6vw, 3rem);
            height: clamp(2.75rem, 6vw, 3rem);
            margin: 0.75rem 0 0 auto;
            background-color: rgba(255,255,255,0.1); /* Transparent White */
            border: none;
            border-radius: 0.25rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #cs-navigation .cs-active .cs-line1 {
            top: 50%;
            transform: translate(-50%, -50%) rotate(225deg);
            color:#597a3a;
        }

        #cs-navigation .cs-active .cs-line2 {
            top: 50%;
            transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
            transform-origin: center;
            color: #597a3a;
        }

        #cs-navigation .cs-active .cs-line3 {
            opacity: 0;
            bottom: 100%;
            color: #597a3a;
        }

        #cs-navigation .cs-box {
            /* 24px - 28px */
            width: clamp(1.5rem, 2vw, 1.75rem);
            /* 14px - 16px */
            height: clamp(0.875rem, 1.5vw, 1rem);
            position: relative;
            color: #597a3a;
        }

        #cs-navigation .cs-line {
            width: 100%;
            height: 2px;
            background-color: #597a3a;
            border-radius: 2px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        #cs-navigation .cs-line1 {
            top: 0;
            transition: transform 0.5s, top 0.3s, left 0.3s;
            animation-duration: 0.7s;
            animation-timing-function: ease;
            animation-direction: normal;
            animation-fill-mode: forwards;
            transform-origin: center;
        }

        #cs-navigation .cs-line2 {
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            transition: top 0.3s, left 0.3s, transform 0.5s;
            animation-duration: 0.7s;
            animation-timing-function: ease;
            animation-direction: normal;
            animation-fill-mode: forwards;
        }

        #cs-navigation .cs-line3 {
            bottom: 0;
            transition: bottom 0.3s, opacity 0.3s;
        }

        #cs-navigation .cs-ul-wrapper {
            width: 100%;
            background-color: var(--headerColor); /* Dark dropdown */
            overflow: hidden;
            box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: -1;
            transform: scaleY(0);
            transition: transform 0.4s, opacity 0.3s;
            transform-origin: top;
        }

        #cs-navigation .cs-ul {
            width: 100%;
            height: auto;
            max-height: 65vh;
            margin: 0;
            padding: 3rem 0 3rem 0;
            overflow: scroll;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 1.25rem;
        }

        #cs-navigation .cs-li {
            text-align: center;
            list-style: none;
            width: 100%;
            margin-right: 0;
            opacity: 0;
            /* transition from these values */
            transform: translateY(-4.375rem);
            transition: transform 0.6s, opacity 0.9s;
        }

            #cs-navigation .cs-li:nth-of-type(1) {
                transition-delay: 0.05s;
            }

            #cs-navigation .cs-li:nth-of-type(2) {
                transition-delay: 0.1s;
            }

            #cs-navigation .cs-li:nth-of-type(3) {
                transition-delay: 0.15s;
            }

            #cs-navigation .cs-li:nth-of-type(4) {
                transition-delay: 0.2s;
            }

            #cs-navigation .cs-li:nth-of-type(5) {
                transition-delay: 0.25s;
            }

        #cs-navigation .cs-li-link {
            /* 16px - 24px */
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            line-height: 1.2em;
            text-decoration: none;
            margin: 0;
            color: #fff; /* White Links */
            display: inline-block;
            position: relative;
        }

            #cs-navigation .cs-li-link:before {
                /* active state underline */
                content: "";
                width: 100%;
                height: 1px;
                background: currentColor;
                opacity: 1;
                display: none;
                position: absolute;
                bottom: -0.125rem;
                left: 0;
            }

            #cs-navigation .cs-li-link.cs-active:before {
                display: block;
            }

        #cs-navigation .cs-button-solid {
            display: none;
        }
}
/* Tablet - 650px - 1023.5px */
@media only screen and (min-width: 40.625rem) and (max-width: 63.96875rem) {
    #cs-navigation .cs-top-bar {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    #cs-navigation .cs-item {
        position: relative;
    }

        #cs-navigation .cs-item:nth-of-type(2):after {
            display: none;
        }

        #cs-navigation .cs-item:after {
            /* divider line */
            content: "";
            width: 1px;
            height: 100%;
            margin: 0 1rem;
            background: #eff1f0;
            opacity: 1;
            display: block;
            position: relative;
        }

    #cs-navigation .cs-picture {
        display: flex;
    }

    #cs-navigation .cs-ul {
        padding-top: 4.6875rem;
        gap: 2rem;
    }

    #cs-navigation .cs-li-link {
        font-size: 1.5rem;
    }
}
/*-- -------------------------- -->
<---      Desktop Navigation      -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        box-sizing: border-box;
        padding: 0 1rem; /* Removed Top Padding for Badge */
        background: radial-gradient(circle at center, #fcf8ed 0%, #f0e6d2 100%);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
        transition: padding-top 0.3s;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        #cs-navigation.scroll {
            padding-top: 0;
        }

            #cs-navigation.scroll .cs-top-bar {
                height: 0;
                margin-bottom: 0;
                padding-bottom: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-3.125rem);
            }

                #cs-navigation.scroll .cs-top-bar:before {
                    width: 0;
                }

            #cs-navigation.scroll .cs-toggle {
                margin-top: 0;
            }

        #cs-navigation .cs-toggle {
            display: none;
        }

        #cs-navigation .cs-logo {
            width: 18.4%;
            max-width: 20rem;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            #cs-navigation .cs-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                mix-blend-mode: multiply;
            }

        #cs-navigation .cs-top-bar {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            transition: height 0.3s, opacity 0.3s, padding-bottom 0.3s, margin-bottom 0.3s, transform 0.3s;
            padding-top: 10px;
        }

            #cs-navigation .cs-top-bar:before {
                /* grey line */
                content: "";
                width: 100%;
                height: 1px;
                background: rgba(255,255,255,0.1); /* Subtle divider */
                opacity: 1;
                display: block;
                position: absolute;
                right: -1rem;
                bottom: 0;
                z-index: -2;
                transition: width 0.3s;
            }

        #cs-navigation .cs-item {
            list-style: none;
            margin: 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            position: relative;
        }

            #cs-navigation .cs-item:last-of-type:after {
                display: none;
            }

            #cs-navigation .cs-item:hover .cs-picture {
                transform: scale(1.1);
            }

            #cs-navigation .cs-item:after {
                /* divider line */
                content: "";
                width: 1px;
                height: 3rem;
                margin: 0 clamp(1.5rem, 5vw, 2.75rem);
                background: rgba(255,255,255,0.1); /* Subtle divider */
                opacity: 1;
                display: block;
                position: relative;
            }

        #cs-navigation .cs-picture {
            width: 3rem;
            height: 3rem;
            margin-right: 1rem;
            background-color: rgba(255,255,255,0.1); /* Dark transparent bg */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s;
        }

        #cs-navigation .cs-icon {
            width: 1.5rem;
            height: auto;
            display: block;
        }

        #cs-navigation .cs-header {
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
            color: var(--primary); /* White Text */
            display: block;
        }

        #cs-navigation .cs-link {
            font-size: 0.875rem;
            line-height: 1.5em;
            text-align: inherit;
            text-decoration: none;
            margin: 0;
            color: var(--primary); /* Light gray link */
            display: block;
            transition: color 0.3s;
        }

            #cs-navigation .cs-link:hover {
                text-decoration: underline;
                color: var(--primary);
            }

        #cs-navigation .cs-bottom-bar {
            width: 100%;
            box-sizing: border-box;
            padding: 0 0 0 clamp(14.6875rem, 23vw, 26.25rem);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            height: 70px;
        }

        #cs-navigation .cs-ul {
            width: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: clamp(1.25rem, 2.6vw, 2.25rem);
        }

        #cs-navigation .cs-li {
            list-style: none;
            padding: 2rem 0;
            flex: none;
        }

            #cs-navigation .cs-li:last-of-type {
                margin-left: auto;
                padding: 0;
            }

        #cs-navigation .cs-li-link {
            font-size: clamp(0.875rem, 1vw, 1rem);
            line-height: 1.5em;
            text-decoration: none;
            margin: 0;
            color: var(--primary);
            font-weight: 600;
            display: block;
            position: relative;
        }

            #cs-navigation .cs-li-link:hover:before {
                width: 100%;
            }

            #cs-navigation .cs-li-link.cs-active:before {
                width: 100%;
            }

            #cs-navigation .cs-li-link:before {
                /* active state underline */
                content: "";
                width: 0%;
                height: 2px;
                background: var(--primary);
                opacity: 1;
                display: block;
                position: absolute;
                bottom: 0rem;
                left: 0;
                transition: width 0.3s;
            }

        #cs-navigation .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-align: center;
            text-decoration: none;
            min-width: 9.375rem;
            margin: 0;
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: #fff;
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            #cs-navigation .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 0.2;
                border-radius: 0.25rem;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #cs-navigation .cs-button-solid:hover:before {
                width: 100%;
            }

        #cs-navigation .cs-nav-button {
            margin-left: auto;
            border-radius: 0;
        }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

#stats-534 .top-graphic {
    z-index: 99;
    position: relative;
    transform: scaleY(-1);
    margin-bottom: -1px;
}

#stats-534 .center-graphic {
    z-index: 99;
    position: relative;
    background-color: #2a1d15;
    color: white;
}

#stats-534 .bottom-graphic {
    z-index: 99;
    position: relative;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1856 {
        padding-top: 200px;
        padding-bottom:50px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
    }

        #hero-1856 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            position: relative;
            z-index: 2; /* Sits above the video */
        }

        #hero-1856 .cs-content {
            text-align: left;
            width: 100%;
            max-width: 46.875rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        #hero-1856 .cs-title {
            font-size: clamp(3.0625rem, 6vw, 5.25rem);
            font-weight: 900;
            line-height: 1.2em;
            max-width: 100%;
            letter-spacing: -2px;
            color: #fff; /* Force White */
            text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
        }

        #hero-1856 .cs-title,
        #hero-1856 .cs-text {
            text-align: left;
            color: #fff; /* Force White */
        }

        #hero-1856 .cs-text {
            margin-bottom: 2rem;
            color: #fdfbf7; /* Cream Text */
        }

        #hero-1856 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            line-height: clamp(2.875rem, 5.5vw, 3.5rem);
            text-align: center;
            text-decoration: none;
            min-width: 12.5rem;
            margin: 0;
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: var(--bodyTextColorWhite);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            #hero-1856 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 0.2;
                border-radius: 0.25rem;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #hero-1856 .cs-button-solid:hover:before {
                width: 100%;
            }

        #hero-1856 .cs-content-graphic {
            display: block; /* Turn it back on */
            /* Sizing */
            height: 180%; /* Large enough to bleed off edges */
            width: auto;
            max-height: 80rem;
            /* Positioning (Behind the text) */
            position: absolute;
            top: 50%;
            right: -10rem; /* Push it slightly to the right of text */
            transform: translateY(-50%);
            z-index: -1;
            /* IMPORTANT: Remove this filter so your colors are accurate */
            /* filter: brightness(60%); <--- DELETED */

            pointer-events: none;
        }

        /* THE HERO SPLASH GRAPHIC */
        /* This ensures it sits at the bottom */
        #hero-1856 .cs-graphic {
            width: 100%;
            min-width: 120rem;
            height: auto;
            object-fit: cover;
            position: absolute;
            bottom: -1px;
            left: 50%;
            z-index: 2; /* Above video */
            transform: translateX(-50%);
        }

        #hero-1856 .cs-graphic-dark {
            display: none;
        }

        #hero-1856 .cs-background {
            display: none; /* Hide default bg image to show video */
        }
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .stat-number {
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
    }

    #stats-534 {
        position: relative;
        z-index: 10;
    }

        #stats-534 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #stats-534 .cs-content {
            text-align: left;
            /* changes to 41% at tablet */
            width: 100%;
            max-width: 32.625rem;
        }

        #stats-534 .cs-color {
            color: var(--secondary);
        }

        #stats-534 .cs-topper {
            
        }

        #stats-534 .cs-title {
            max-width: 17ch;
            color: var(--bodyTextColorWhite);
        }

        #stats-534 .cs-text {
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
        }

        #stats-534 .cs-card-group {
            /* changes to 43% at tablet */
            width: 90%;
            max-width: 32.625rem;
            margin: 0 auto 0 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            /* 16px - 52px */
            row-gap: 1rem;
        }

        #stats-534 .cs-item {
            width: 40%;
            max-width: 12.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        #stats-534 .cs-number {
            /* 39px - 61px */
            font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
            font-weight: 900;
            line-height: 1.2em;
            margin: 0 0 0.5rem 0;
            color: var(--bodyTextColorWhite);
            display: block;
        }

        #stats-534 .cs-desc {
            /* 16px - 20px */
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.5em;
            margin: 0;
            color: var(--bodyTextColorWhite);
        }

        #stats-534 .cs-big-link {
            width: 100%;
            /* changes to a clamp at tablet */
            height: 20rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            #stats-534 .cs-big-link:hover .cs-background img {
                transform: scale(1.1);
            }

        #stats-534 .cs-background {
            width: 100%;
            height: 100%;
            /* clips the img from overflowing the container on hover */
            overflow: hidden;
            display: block;
            position: relative;
            top: 0;
            left: 0;
            z-index: 1;
        }

            #stats-534 .cs-background:before {
                /* color overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: var(--primary);
                opacity: 0.72;
                background-blend-mode: multiply;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 10;
            }

            #stats-534 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
                z-index: -1;
                transition: transform 0.7s;
            }

        #stats-534 .cs-link-icon {
            /* 80px - 110px */
            width: clamp(5rem, 11vw, 6.875rem);
            height: clamp(5rem, 11vw, 6.875rem);
            border-radius: 50%;
            position: absolute;
            z-index: 10;
            transition: transform 0.3s, box-shadow 0.3s;
        }

            #stats-534 .cs-link-icon:hover {
                transform: scale(1.1);
                box-shadow: rgba(0, 0, 0, 0.5) 0px 7px 29px 0px;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-534 .cs-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #stats-534 .cs-content {
        width: 41%;
    }

    #stats-534 .cs-card-group {
        width: 43%;
    }

    #stats-534 .cs-big-link {
        /* 280px - 580px */
        height: clamp(20rem, 44vw, 36.25rem);
    }
}

.cs-graphic {
    width: 100%;
    max-width: 100vw; /* avoid exceeding the viewport */
    height: auto;
    display: block;
    min-width: 0; /* belt-and-suspenders */
}

.text-danger li {
    color: red;
}

.progress-bar {
    background: linear-gradient(135deg, #7C57E6, #9A7AF0, #7C57E6); /* replace with your brand’s gradient */
}

#thankyou .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primaryLight);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
}

    #thankyou .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }

    #thankyou .cs-button-solid:hover:before {
        width: 100%;
    }

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-2130 {
        padding: var(--sectionPadding);
        background-color: transparent;
        /* clips the svg wave from overflowing */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #services-2130 .cs-container {
            width: 100%;
            /* changes to 1280px at tablet */
            max-width: 44rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #services-2130 .cs-content {
            /* set text align to left if content needs to be left aligned */
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: center;
        }

        #services-2130 .cs-title {
            margin: 0;
        }

        #services-2130 .cs-card-group {
            width: 100%;
            /* changes to 100% at tablet */
            max-width: 31.25rem;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            /* 16px - 20px */
            gap: clamp(1rem, 1.5vw, 1.25rem);
        }

        #services-2130 .cs-item {
            text-align: left;
            list-style: none;
            width: 100%;
            height: 17.5rem;
            margin: 0;
            /* prevents padding and border from affecting height and width */
            box-sizing: border-box;
            padding: 0;
            /* clips the image corners */
            overflow: hidden;
            grid-column: span 12;
            grid-row: span 1;
            gap: 0.5rem;
            position: relative;
        }

            #services-2130 .cs-item:hover .cs-h3,
            #services-2130 .cs-item:focus-within .cs-h3 {
                transform: translateY(0);
            }

            #services-2130 .cs-item:hover .cs-fake-link,
            #services-2130 .cs-item:focus-within .cs-fake-link {
                height: auto;
                opacity: 1;
                transform: translateY(0);
            }

            #services-2130 .cs-item:hover .cs-background:before,
            #services-2130 .cs-item:focus-within .cs-background:before {
                height: 180%;
            }

            #services-2130 .cs-item:hover .cs-background img,
            #services-2130 .cs-item:focus-within .cs-background img {
                opacity: 0.5;
                transform: scale(1.1);
            }

        #services-2130 .cs-link {
            text-decoration: none;
            height: 100%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
        }

        #services-2130 .cs-h3 {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
            font-weight: 700;
            line-height: 1.2em;
            text-align: inherit;
            margin: 0;
            color: var(--bodyTextColorWhite);
            /* transform down the same amount as the flex gap */
            transform: translateY(0.75rem);
            transition: transform 0.3s, color 0.3s;
        }

        #services-2130 .cs-fake-link {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.2em;
            text-align: inherit;
            text-decoration: none;
            height: 0;
            margin: 0;
            overflow: hidden;
            color: var(--primary);
            opacity: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.25rem;
            transform: translateY(3.125rem);
            transition: height 0.3s, opacity 0.3s, transform 0.3s;
        }

        #services-2130 .cs-icon {
            width: 1.5rem;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }

        #services-2130 .cs-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #000;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

            #services-2130 .cs-background:before {
                /* gradient overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 14.59%, rgba(0, 0, 0, 0) 43.18%);
                opacity: 1;
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                transition: height 0.3s;
            }

            #services-2130 .cs-background img {
                width: 100%;
                height: 100%;
                /* Makes img tag act as a background image */
                object-fit: cover;
                position: absolute;
                z-index: -1;
                transition: transform 0.6s, opacity 0.3s;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-2130 .cs-container {
        max-width: 80rem;
    }

    #services-2130 .cs-card-group {
        max-width: 100%;
        grid-template-rows: 1fr;
    }

    #services-2130 .cs-item {
        /* 280px - 440px */
        min-height: clamp(17.5rem, 35vw, 27.5rem);
        grid-column: span 4;
    }

        #services-2130 .cs-item:nth-of-type(4),
        #services-2130 .cs-item:nth-of-type(5) {
            grid-column: span 6;
        }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-2130 .cs-container {
        max-width: 115rem;
    }

    #services-2130 .cs-card-group {
        grid-template-columns: repeat(5, 1fr);
    }

    #services-2130 .cs-item {
        grid-column: span 1;
    }

        #services-2130 .cs-item:nth-of-type(4),
        #services-2130 .cs-item:nth-of-type(5) {
            grid-column: span 1;
        }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

#reviews-64 .top-graphic {
    z-index: 99;
    position: relative;
    transform: rotate(180deg);
    margin-bottom: -1px;
}

#reviews-64 .center-graphic {
    z-index: 99;
    position: relative;
    background-color: #2a1d15;
    color: white;
}

#reviews-64 .bottom-graphic {
    z-index: 99;
    position: relative;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-64 {
        /* Centers Button */
        text-align: center;
        background-color: #f1f1f4;
    }

        #reviews-64 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #reviews-64 .cs-content {
            /* set text align to left if content needs to be left aligned */
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: center;
        }

        #reviews-64 .cs-card-group {
            width: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* changes to a clamp at tablet */
            gap: 1.5rem;
        }

        #reviews-64 .cs-topper{
            background-color:transparent;
        }

        #reviews-64 .cs-title {
            color: #597a3a;
        }

        #reviews-64 .cs-item {
            list-style: none;
            width: 100%;
            max-width: 25.8125rem;
            /* padding left & right 16px - 32px */
            padding: 0 clamp(1rem, 2.1vw, 2rem);
            /* 20px - 40px */
            padding-bottom: clamp(1.25rem, 4.7vw, 2.5rem);
            margin: 0;
            background: #fff;
            box-shadow: -1px 21px 39px 0px rgba(0, 0, 0, 0.05);
            /* prevent padding from adding to the height and width */
            box-sizing: border-box;
        }

        #reviews-64 .cs-img {
            /* 116px - 136px */
            width: clamp(7.25rem, 18vw, 8.5rem);
            /* 20px - 24px */
            height: clamp(1.25rem, 3.2vw, 1.5rem);
            margin: 0 auto 1.5rem;
            display: block;
            transform: translateY(-0.8125rem);
        }

        #reviews-64 .cs-name {
            font-size: 1.25rem;
            line-height: 1.2em;
            text-align: center;
            font-weight: 700;
            margin: 0;
            color: var(--headerColor);
            display: block;
        }

        #reviews-64 .cs-desc {
            font-size: 1rem;
            line-height: 1.2em;
            text-align: center;
            margin: 0 0 1rem;
            color: var(--primary);
            display: block;
        }

        #reviews-64 .cs-item-text {
            /* 14px - 16px */
            font-size: clamp(0.875rem, 1.6vw, 1rem);
            line-height: 1.5em;
            margin: auto;
            color: var(--bodyTextColor);
        }

        #reviews-64 .cs-button-solid {
            font-size: 1rem;
            /* 46px - 56px */
            line-height: clamp(2.875rem, 5.5vw, 3.5rem);
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            margin: 0;
            color: #fff;
            min-width: 9.375rem;
            padding: 0 1.5rem;
            background-color: var(--primary);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
        }

            #reviews-64 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                border-radius: 0.25rem;
                transition: width 0.3s;
            }

            #reviews-64 .cs-button-solid:hover:before {
                width: 100%;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-64 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        /* 16px - 20px */
        column-gap: clamp(1rem, 1.5vw, 1.25rem);
        row-gap: 2.875rem;
    }

    #reviews-64 .cs-item {
        /* we do this so it's stackable. You can add new any number of reviews you want and they will stack and center in the middle. We dont use grid because if you have an odd number of reviews, they don't stay centered.  They align with their grid lines. If you want 4 reviews in a row, lower the width under 22.5vw to get the desired sizes fit 4 in a row and then stack when you add more*/
        width: clamp(31.5%, 30vw, 32.3%);
    }
}


/* Container for the checklist to add vertical spacing */
.cs-checklist {
    margin: 2rem 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Adjust this to add more height and balance the right side */
}

.cs-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #f7f7f7; /* Off-white to match your text */
}

    /* Custom SVG Checkmark */
    .cs-check-item::before {
        content: '';
        width: 1.25rem;
        height: 1.25rem;
        background-color: #76ba1b; /* Leaf Green accent */
        display: block;
        flex-shrink: 0;
        border-radius: 50%;
        /* Simple checkmark SVG data URI */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
        background-size: 70%;
        background-repeat: no-repeat;
        background-position: center;
    }

.gradient-text {
    /* Your target green as the base, transitioning to a lighter highlight */
    background: linear-gradient(to bottom, #769d4c 0%, #597a3a 100%);
    /* Standard properties to clip the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Boost contrast against the dark brown background */
    font-weight: bold;
    display: inline-block;
}

.light-gradient-text {
    /* Transitions from a light 'sprout' green to a solid lawn green */
    background: linear-gradient(to bottom, #dcedc1 0%, #9dbd7d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Adds a tiny bit of 'lift' so it doesn't get lost in the mulch texture */
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1780 {
        padding: var(--sectionPadding);
        background: radial-gradient(circle at center, #fcf8ed 0%, #f0e6d2 100%);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #contact-1780 .cs-container {
            width: 100%;            
            background: radial-gradient(circle at center, #fcf8ed 0%, #f0e6d2 100%);
            max-width: 44rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            /* 48px - 64px */
            gap: clamp(3rem, 5vw, 4rem);
        }

        #contact-1780 .cs-content {
            /* set text align to center if content needs to be centrally aligned */
            text-align: left;
            width: 100%;
            display: flex;
            flex-direction: column;
            /* aligns content to the left, set to center to centrally align */
            align-items: flex-start;
        }

        #contact-1780 .cs-form-group {
            /* set text align to left if content needs to be left aligned */
            text-align: center;
            width: 100%;
            /* resets to 0 at tablet */
            margin: auto;
            /* prevents padding and border from affecting height and width */
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: center;
        }

        #contact-1780 .cs-title {
            margin: 0 0 1.5rem;
            color: #2a1d15;
        }

        #contact-1780 .cs-form {
            width: 100%;
            /* prevents flexbox from affecting height and width */
            box-sizing: border-box;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
        }

        #contact-1780 .cs-label {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.2em;
            color: #597a3a;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            grid-column: span 12;
            gap: 0.5rem;
        }

        #contact-1780 .cs-input {
            font-size: 1rem;
            width: 100%;
            /* 46px - 56px */
            height: clamp(2.875rem, 4.5vw, 3.5rem);
            /* prevents padding from adding to height and width */
            box-sizing: border-box;
            padding: 0;
            padding-left: 1.5rem;
            background-color: #597a3a;
            color: var(--headerColor);
            border: none;
        }

            #contact-1780 .cs-input::placeholder {
                color: var(--bodyTextColorWhite);
            }

        #contact-1780 .cs-textarea {
            font-family: inherit;
            min-height: 7.5rem;
            padding-top: 1.5rem;
        }

        #contact-1780 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            /* 46px - 56px */
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-align: center;
            text-decoration: none;
            min-width: 9.375rem;
            margin: 0;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            overflow: hidden;
            color: #1a1a1a;
            border: none;
            display: inline-block;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }

            #contact-1780 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 1;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #contact-1780 .cs-button-solid:hover {
                color: #fff;
            }

                #contact-1780 .cs-button-solid:hover:before {
                    width: 100%;
                }

        #contact-1780 .cs-submit {
            margin: 1rem 0 0;
            color: var(--bodyTextColorWhite);
            grid-column: span 12;
            justify-self: flex-start;
        }

            #contact-1780 .cs-submit:hover {
                cursor: pointer;
            }

        #contact-1780 .cs-info-group {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #contact-1780 .cs-detail {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2em;
            color: #597a3a;
            display: block;
        }

        #contact-1780 .cs-picture-group {
            width: 110%;
            height: 100vw;
            /* removed at desktop */
            max-height: 31.375rem;
            margin-top: 3rem;
            overflow: hidden;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        #contact-1780 .cs-iframe {
            width: 100%;
            height: 100%;
            display: block;
        }

        #contact-1780 .cs-graphic {
            width: 100%;
            min-width: 80rem;
            height: auto;
            object-fit: cover;
            position: absolute;
            left: 50%;
            z-index: 0;
            transform: translateX(-50%);
        }

        #contact-1780 .cs-top {
            top: 0;
        }

        #contact-1780 .cs-left {
            left: 4%;
            transform: rotate(270deg);
            transform-origin: left;
        }

        #contact-1780 .cs-bottom {
            bottom: 0;
            left: 0;
            transform: rotateX(180deg);
        }

        #contact-1780 .cs-dark {
            display: none;
        }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1780 {
        /* using flex: 1 on both group elements to ensure they're both the same width */
    }

        #contact-1780 .cs-container {
            flex-direction: row;
            align-items: center;
        }

        #contact-1780 .cs-form-group {
            flex: 1;
        }

        #contact-1780 .cs-info-group {
            flex: 1;
        }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1780 .cs-container {
        width: 65%;
        max-width: 64rem;
        margin: 0 auto 0 0;
        padding: 2.5rem 1.5rem;
    }

    #contact-1780 .cs-picture-group {
        width: 90%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        z-index: -1;
        transform: none;
    }

    #contact-1780 .cs-picture-group {
        margin-left: -12.75rem;
        left: 50%;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #contact-1780 .cs-label:nth-of-type(2),
    #contact-1780 .cs-label:nth-of-type(3) {
        grid-column: span 6;
    }
}
/* Largest Desktop - 1920px */
@media only screen and (min-width: 120rem) {
    #contact-1780 {
        padding-top: 7vw;
        padding-bottom: 9vw;
    }

        #contact-1780 .cs-container {
            margin: 0 auto;
            transform: translateX(-22rem);
        }
}


/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1147 {
        padding: 20px;
        background: #2a1d15;
        position: relative;
        z-index: 1;
    }

        #footer-1147 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #footer-1147 .cs-top {
            width: 100%;
            /* 32px - 40px */
            margin-bottom: clamp(2rem, 4vw, 2.5rem);
            border-bottom: 1px solid #484848;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        #footer-1147 .cs-ul {
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            row-gap: 0.5rem;
            /* 28px - 40px */
            column-gap: clamp(1.75rem, 4vw, 2.5rem);
        }

        #footer-1147 .cs-li {
            list-style: none;
        }

        #footer-1147 .cs-link {
            /* 14px - 16px */
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            line-height: 1.5em;
            text-decoration: none;
            margin: 0;
            color: #bababa;
            display: block;
            transition: color 0.3s;
        }

            #footer-1147 .cs-link:hover {
                color: var(--secondary);
            }

        #footer-1147 .cs-logo {
            width: 10.5rem;
            height: auto;
            display: block;
        }

        #footer-1147 .cs-logo-img {
            width: 100%;
            height: auto;
            display: block;
        }

        #footer-1147 .cs-bottom {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        #footer-1147 .cs-social {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        #footer-1147 .cs-social-li {
            list-style: none;
        }

        #footer-1147 .cs-social-link {
            width: 2rem;
            height: 2rem;
            background-color: #484848;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
        }

            #footer-1147 .cs-social-link:hover {
                background-color: var(--secondary);
            }

                #footer-1147 .cs-social-link:hover .cs-social-icon {
                    filter: grayscale(1) brightness(0);
                    opacity: 1;
                }

        #footer-1147 .cs-social-icon {
            width: 0.75rem;
            height: auto;
            display: block;
            opacity: 0.5;
        }

        #footer-1147 .cs-copyright {
            font-size: 1rem;
            line-height: 1.5em;
            margin: 0;
            color: #bababa;
            display: block;
        }

        #footer-1147 .cs-copyright-link {
            font-size: inherit;
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }

            #footer-1147 .cs-copyright-link:hover {
                color: var(--secondary);
            }

        #footer-1147 .cs-background {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

            #footer-1147 .cs-background:before {
                /* background color overlay */
                content: "";
                position: absolute;
                display: block;
                height: 100%;
                width: 100%;
                background: #1a1a1a;
                opacity: 0.96;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #footer-1147 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                /* Makes img tag act as a background image */
                object-fit: cover;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1147 .cs-top {
        flex-direction: row;
        justify-content: space-between;
    }

    #footer-1147 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cs-toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #62883f; /* Your Brand Green */
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 9999; /* Sit on top of everything */
    right: 30px;
    bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    font-weight: bold;
    font-size: 1.1rem;
}

.cs-toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Slight move up animation */
}

/* Make validation errors bright red and easy to read */
.validation-message {
    color: #ff4d4d; /* Bright Red */
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: bold;
}

/* Optional: Highlight the input box itself when invalid */
.cs-input.invalid, .cs-textarea.invalid {
    border: 2px solid #ff4d4d;
    background-color: #fff0f0;
}