 
        :root {
            --green: #16743f;
            --green-dark: #0f4f2c;
            --green-very-dark: #082d1a;
            --yellow: #f8c400;
            --ink: #142018;
            --muted: #5f6f65;
            --light: #f4f7f2;
            --white: #ffffff;
            --border: #dfe7dc;
            --shadow: 0 18px 45px rgba(20, 32, 24, 0.14);
            --radius: 22px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--ink);
            background: var(--white);
            line-height: 1.55;
            padding-bottom: 58px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
        }
        .credit, .credit a {
            color: #ddd;
            font-size: .8rem;
            text-decoration: none;
        }
        .container {
            width: min(1120px, calc(100% - 32px));
            margin: 0 auto;
        }

        .top-bar {
            background: var(--green-dark);
            color: var(--white);
            font-size: 14px;
            padding: 8px 0;
        }

        .top-bar-inner {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            text-align: center;
        }

        .header {
            background: var(--green-very-dark);
            border-bottom: 1px solid rgba(255,255,255,0.18);
            position: sticky;
            top: 0;
            z-index: 20;
        }

        .header-inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo {
            max-width: 450px;
        }

        .header-actions {
            display: none;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            border: 0;
            cursor: pointer;
            font-size: 16px;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--yellow);
            color: var(--ink);
        }

        .btn-secondary {
            background: var(--green);
            color: var(--white);
        }

        .hero {
            background:
                linear-gradient(90deg, rgba(15,79,44,0.95), rgba(15,79,44,0.72)),
                url('images/rubbish-removal-services-in-eastbourne.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 28px 0 34px;
        }

        .hero-grid {
            display: grid;
            gap: 20px;
        }

        .hero-copy {
            display: contents;
        }

        .hero-intro {
            order: 1;
        }

        .quote-card {
            order: 2;
        }

        .hero-proof {
            order: 3;
        }

        .hero h1 {
            font-size: clamp(34px, 8vw, 64px);
            line-height: 1.02;
            margin: 0 0 16px;
            letter-spacing: -1.5px;
        }

        .hero p {
            font-size: 19px;
            margin: 0 0 18px;
            max-width: 620px;
        }

        .local-note {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 18px;
            padding: 14px;
            margin: 18px 0;
            font-weight: 700;
        }

        .trust-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin: 18px 0;
        }

        .trust-pill {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 999px;
            padding: 10px 14px;
            font-weight: 700;
        }

        .quote-card {
            background: var(--white);
            color: var(--ink);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow);
        }

        .quote-card h2 {
            margin: 0 0 6px;
            font-size: 25px;
            line-height: 1.15;
        }

        .quote-card p {
            color: var(--muted);
            font-size: 15px;
            margin: 0 0 16px;
        }

        .form-grid {
            display: grid;
            gap: 12px;
        }

        input,
        textarea,
        select {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 14px;
            font-size: 16px;
            font-family: inherit;
            background: #fff;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .file-help {
            font-size: 13px;
            color: var(--muted);
            margin-top: -4px;
        }

        .form-call {
            text-align: center;
            font-size: 15px;
            color: var(--muted);
        }

        .form-call a {
            font-weight: 800;
            color: var(--green-dark);
            text-decoration: none;
        }

        .section {
            padding: 48px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-title {
            font-size: clamp(28px, 6vw, 44px);
            line-height: 1.1;
            margin: 0 0 14px;
            letter-spacing: -1px;
        }

        .section-lead {
            color: var(--muted);
            font-size: 18px;
            margin: 0 0 26px;
            max-width: 760px;
        }

        .cards {
            display: grid;
            gap: 16px;
        }

        .card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
        }

        .card h3 {
            margin: 0 0 8px;
            font-size: 21px;
        }

        .card p {
            margin: 0;
            color: var(--muted);
        }

        .steps {
            counter-reset: step;
            display: grid;
            gap: 16px;
        }

        .step {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
        }

        .step:before {
            counter-increment: step;
            content: counter(step);
            display: inline-flex;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: var(--yellow);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .review-box {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
        }

        .review-box img {
            max-width: 230px;
            margin: 10px auto;
            display: block;
        }

        .faq {
            display: grid;
            gap: 12px;
        }

        .faq details {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 18px;
        }

        .faq summary {
            font-weight: 800;
            cursor: pointer;
        }

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

        .cta-band {
            background: var(--green-dark);
            color: var(--white);
            text-align: center;
            padding: 46px 0;
        }

        .cta-band h2 {
            margin: 0 0 12px;
            font-size: clamp(28px, 6vw, 44px);
        }

        .mobile-call-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 50;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 -12px 30px rgba(0,0,0,0.18);
        }

        .mobile-call-bar a {
            min-height: 58px;
            border-radius: 0;
        }

        .footer {
            background: #101510;
            color: var(--white);
            padding: 28px 0 86px;
            text-align: center;
            font-size: 14px;
        }


        #cookieNotification {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 58px;
            z-index: 80;
            background: #202020;
            color: #fff;
            padding: 10px 14px;
            box-shadow: 0 -8px 22px rgba(0,0,0,0.16);
        }

        .cookie-inner {
            width: min(1120px, calc(100% - 20px));
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            line-height: 1.35;
        }

        #cookieNotification .btn {
            min-height: 36px;
            padding: 8px 14px;
            font-size: 14px;
            white-space: nowrap;
        }

        #formResp {
            margin-top: 12px;
        }

        .alert {
            padding: 12px 14px;
            border-radius: 12px;
            margin: 0;
        }

        .alert-success {
            background: #e7f8ec;
            color: #0f4f2c;
        }

        .alert-danger {
            background: #ffecec;
            color: #8a1515;
        }

        @media (min-width: 992px) {
            body {
                padding-bottom: 0;
            }

            .header-actions {
                display: flex;
            }

            .hero {
                padding: 72px 0;
            }

            .hero-grid {
                grid-template-columns: 1.08fr 0.92fr;
                align-items: center;
            }

            .hero-copy {
                display: block;
            }

            .quote-card {
                order: initial;
            }

            .trust-row {
                grid-template-columns: repeat(3, max-content);
            }

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

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

            .mobile-call-bar {
                display: none;
            }

            .footer {
                padding-bottom: 28px;
            }

            #cookieNotification {
                bottom: 0;
            }

            .cookie-inner {
                font-size: 14px;
            }
        }

        @media (max-width: 991px) {
            .top-bar-inner {
                display: inherit;
            }
            .logo {
                max-width: 100%;
            } 
        }