        :root {
            scroll-padding-top: 60px;
            --primary-color: #1e7e24;
            --primary-dark: #145218;
            --primary-light: #28a730;
            --primary-lighter: #e9f7ea;
            --primary-gray: #F7FAF8;
            --accent-red: #DD2C00;
            --accent-red-dark: #AB2200;
            --accent-orange: #FFE57F;
            --accent-yellow: #FFFF8D;
            --text-main: #0d1a0e;
            --text-muted: #4a5a4b;
            --font-family-base: 'Zen Maru Gothic', serif;
        }
        body {
            font-family: var(--font-family-base);
            color: var(--text-main);
            line-height: 1.8;
        }
        body.body-contact-sent {
            background-color: var(--primary-color);
        }

        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
        }
        a {
            color: var(--primary-color);
        }
        a:hover {
            color: var(--primary-dark);
        }

        .navbar {
            background-color: var(--primary-color);
            border-bottom: none;
        }
        .navbar-cta {
            background-color: var(--accent-red-dark);
            padding: 0;
            opacity: 1;
            transition: all .5s;

            transition-property: display, opacity;
            transition-behavior: allow-discrete;
            transition-duration: .5s;

            @starting-style {
                display: none;
                opacity: 0;
            }
        }
        .navbar-brand, .nav-link {
            color: #fff !important;
            font-weight: bold;
            border-radius: .375rem;
        }
        .nav-link:hover {
            background-color: var(--primary-dark);
        }
        .navbar-toggler {
            filter: invert(1);
        }

        section:not(.hero-section) {
            padding: 5rem 0;
        }
        .hero-section {
            padding: 100px 0;
            background-color: var(--primary-lighter);
            border-bottom-left-radius: 50% 40px;
            border-bottom-right-radius: 50% 40px;
        }
        .hero-content h1 {
            color: var(--primary-dark);
            margin-bottom: 25px;
            font-size: 2.8rem;
        }
        .hero-image img {
            max-height: 400px;
        }

        .thanks-content h1 {
            color: var(--primary-color);
            font-size: 2.25rem;
        }

        .btn-primary,
        .btn-accent,
        .btn-outline-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 700;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-primary:hover,
        .btn-outline-primary:hover,
        .btn-primary:active,
        .btn-outline-primary:active,
        :not(.btn-check)+.btn-primary:active,
        :not(.btn-check)+.btn-primary-outline:active {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .btn-accent {
            background-color: var( --accent-red);
            border-color: var( --accent-red);
        }
        .btn-accent {
            background-color: var( --accent-red);
            border-color: var( --accent-red);
            color: #fff;
        }
        .btn-accent:hover,
        .btn-accent:active,
        .btn-accent:first-child:active {
            background-color: var( --accent-red-dark);
            border-color: var( --accent-red-dark);
            color: #fff;
        }
        .btn-outline-primary {
            color: var(--primary-color);
            background-color: unset;
            border-color: var(--primary-color);
        }
        .btn-outline-light:hover,
        .btn-outline-light:active,
        :not(.btn-check)+.btn-outline-light:active {
            color: var(--primary-color);
        }
        .navbar-cta .btn {
            border-radius: 0;
        }

        .section-title {
            text-align: left;
            margin-bottom: 60px;
            padding: 0 .75rem .25rem 0;
            color: var(--primary-dark);
            display: inline-block;
            position: relative;
            background: linear-gradient(transparent 70%, var(--accent-orange) 0);
        }

        .marked {
            background: linear-gradient(transparent 60%, var(--accent-yellow) 0);
        }

        section:nth-child(even) {
            background-color: var(--primary-gray);
        }

        .list-checked {
            position: relative;
            padding-left: 1.5rem;
            list-style: none;
        }
        .list-checked li::before {
            position: absolute;
            left: 0;
            font-family: "Font Awesome 7 Free";
            font-weight: 900;
            content: '\f00c';
            color: var(--primary-dark);
        }

        .card-custom,
        .price-list {
            padding: 2rem;
        }
        .card-custom {
            border-radius: 20px;
            background: #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            text-align: center;
            height: 100%;
        }
        .card-custom:not(.border-start):not(.border-top):not(.border-end):not(.border-bottom) {
            border: 1px solid var(--primary-lighter);
        }
        .card-custom *:last-child {
            margin-bottom: 0;
        }
        .card-tp {
            background-color: rgba(255,255,255,.9);
        }
        .card-cta {
            background: linear-gradient(175deg, var(--primary-color),var(--primary-light));
        }

        .icon-rounded {
            width: 80px;
            height: 80px;
            background-color: var(--primary-lighter);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }
        .icon-rounded-sm {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }
        .icon-single {
            font-size: 4rem;
        }

        .badge-eco {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
        }

        .case-quote {
            color: var(--text-muted);
            line-height: 1.7;
            border-left: 5px solid var(--primary-color);
            padding-left: 16px;
            margin-bottom: 16px;
            font-style: italic;
        }
        .case-quote p:last-child {
            margin-bottom: 0;
        }

        .price-list {
            background: #fff;
            border-radius: 20px;
        }
        .price-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .5rem 0;
            border-bottom: 1px dashed #ddd;
            line-height: 1.6;
        }
        .pricing-value {
            margin-left: 1.5rem;
        }
        .pricing-value strong {
            color: var(--primary-color);
            font-size: 1.75rem;
        }

        .accordion {
            border-radius: .375rem;
        }
        .accordion-button:not(.collapsed) {
            color: var(--primary-dark);
            background-color: var(--primary-lighter);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(30, 126, 36, 0.25);
        }
        .accordion-body {
            background-color: var(--primary-gray);
        }

        .cta-bg-icon {
            position: absolute;
            font-size: 18rem;
            color: rgba(255,255,255,0.08);
            top: 8rem;
            right: -20px;
            transform: translateY(-50%) rotate(-10deg);
            z-index: 1;
        }

        .footer {
            background-color: var(--primary-color);
            color: #fff;
            padding: 50px 0;
        }
        .footer h2 {
            font-size: 1.25rem;
        }
        .footer a {
            color: #fff;
            text-decoration: underline;
        }
        .divider {
            color: var(--primary-lighter);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .hero-content h1 {
                font-size: 1.75rem;
            }
            .lead {
                font-size: 1rem;
            }
            section:not(.hero-section) {
                padding: 3rem 0;
            }
            .thanks-content h1 {
                font-size: 1.75rem;
            }
        }
        @media (max-width: 1199px) {
            .card-custom,
            .price-list {
                padding: 1.5rem;
            }
        }

        /* Smooth Scroll */
        :root {
            scroll-padding-top: 60px;
        }
        @media (max-width: 991px) {
            :root {
                scroll-padding-top: 390px;
            }
            #contact-outer {
                scroll-margin-top: -330px;
            }
        }