
        /* --- 1. GLOBAL & ROOT DEFINITIONS (Consolidated from Homepage) --- */
        :root {
            --brand-green-dark: #1e4620;
            --brand-green-accent: #2a9d8f;
            --brand-green-mid: #81c784;
            --brand-green-light: #e8f5e9;
            --glow-color: rgba(129, 199, 132, 0.5);
            --text-primary: #1a3b1a;
            --text-secondary: #36533c;
            --bg-light: #fbfdfb;
            /* Mouse tracking variables for card effects */
            --x: 50%;
            --y: 50%;
        }

        html {
            width: 100vw;
            overflow-x: hidden;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-light); /* Consistent background */
            color: var(--text-primary);
            line-height: 1.6;
            margin: 0;
            overflow-x: hidden;
        }

        main {
            display: block;
            padding-top: 0;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
        }

        /* --- Base Button Styles (Unified from Homepage) --- */
        .btn-primary {
            display: inline-block;
            padding: 1rem 2.25rem; /* Standardized padding */
            border-radius: 0; /* Consistent with homepage buttons */
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 1rem;
            color: #fff;
            background-image: linear-gradient(110deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 100%);
            box-shadow: 0 10px 30px -5px rgba(42, 157, 143, 0.4), 0 0 15px var(--glow-color) inset;
            border: none;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            background-size: 250% auto;
            outline: none;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-position: right center;
            transform: translateY(-4px) scale(1.05); /* Standardized hover transform */
            box-shadow: 0 18px 45px -8px rgba(42, 157, 143, 0.5), 0 0 20px var(--glow-color) inset; /* Standardized hover shadow */
        }

        /* Shimmer effect for buttons */
        .btn-shimmer {
            position: relative;
            overflow: hidden;
        }

        .btn-shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn-shimmer:hover::before {
            left: 100%;
        }

        /* --- Section Divider (Consolidated from Homepage) --- */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 50%, var(--brand-green-accent) 100%);
            margin: 0 auto;
            box-shadow: 0 0 10px var(--glow-color);
            border-radius: 0;
        }

        /* --- Responsive Headings & Intro Text (Consistent Pattern) --- */
        .section-eyebrow {
            color: var(--brand-green-accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
            text-align: center; /* Added for explicit centering */
        }

        .section-heading {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--brand-green-dark);
            margin-bottom: 0.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-align: center; /* Added for explicit centering */
        }

        .section-accent {
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
            margin: 0.5rem auto 1.5rem auto;
            border-radius: 0; /* Consistent with homepage */
            box-shadow: 0 0 15px var(--glow-color);
        }

        .section-hook {
            max-width: 800px;
            margin: 0 auto 2rem auto;
            font-size: 1.25rem;
            line-height: 1.75;
            color: var(--text-secondary);
            text-align: center; /* Added for explicit centering */
        }

        /* --- Hero Banner Section (Adapted from Homepage Video Hero) --- */
        #services-hero-banner {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            margin: 0;
            padding: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            /* Using the SVG background for the hero directly */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='1080' viewBox='0 0 1920 1080'%3E%3Crect fill='%231e4620' width='1920' height='1080'/%3E%3Ctext fill='%23ffffff' font-family='Manrope, sans-serif' font-size='120' dy='40' font-weight='bold' x='50%25' y='50%25' text-anchor='middle'%3ESolutions%3C/text%3E%3C/svg%3E");
        }

        #services-hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(rgba(30, 70, 32, 0.7), rgba(30, 70, 32, 0.7)); /* Dark overlay */
            z-index: 1;
        }

        #services-hero-banner .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            padding: 2rem 1.5rem;
            color: #fff;
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeInUp 1s ease-out 0.5s forwards;
        }

        .services-hero-title {
            color: #fff;
            font-weight: 700;
            font-size: 3.5rem; /* Adjusted for consistency with homepage hero */
            line-height: 1.1;
            text-shadow: 0 3px 20px rgba(0,0,0,0.4);
        }

        .services-hero-subtitle {
            color: #fff;
            font-weight: 500;
            font-size: 1.4rem; /* Adjusted for consistency with homepage hero */
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-hero-btn-container {
            margin-top: 2rem;
        }

        @keyframes heroFadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .services-hero-title { font-size: 2.5rem !important; }
            .services-hero-subtitle { font-size: 1.1rem !important; }
            .btn-primary { padding: 12px 24px; font-size: 0.9rem; }
        }
        @media (min-width: 1024px) {
            .services-hero-title { font-size: 3.5rem !important; line-height: 1.1; }
            .services-hero-subtitle { font-size: 1.4rem !important; max-width: 800px; margin-left: auto; margin-right: auto; }
        }


        /* --- OUR SERVICES SERVICES OVERVIEW SECTION --- */
        #services-overview-section {
            padding: 6rem 2rem;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }
        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        .service-card {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0; /* Changed to sharp corners */
            padding: 2rem 1rem;
            text-align: center;
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 40px -10px #2a9d8f20;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            /* Removed cursor: pointer; */ /* No longer a link */
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px #2a9d8f40, inset 0 0 15px rgba(129, 199, 132, 0.2);
            border-color: var(--brand-green-mid);
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
        }
        .service-card:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            transition: color 0.4s ease;
            position: relative;
            z-index: 1;
        }
        .service-card:hover .service-title {
            color: var(--brand-green-dark);
        }
        .services-cta-container {
            text-align: center;
        }
        @media (max-width: 768px) {
            #services-overview-section { padding: 4rem 1.5rem; }
            .section-heading { font-size: 2.25rem; }
            .section-hook { font-size: 1.1rem; }
        }

        /* --- OUR SERVICES OUR CORE PILLARS SECTION --- */
        #core-pillars-section {
            padding: 6rem 2rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .max-w-7xl {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .pillars-grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 768px) {
            .pillars-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .pillars-grid-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .pillar-item {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0; /* Changed to sharp corners */
            box-shadow: 0 10px 40px -10px #2a9d8f20;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        .pillar-item:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px #2a9d8f40;
            border-color: var(--brand-green-mid);
        }
        .pillar-item::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 300px;
            height: 300px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
        }
        .pillar-item:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        .pillar-image-wrapper {
            position: relative;
            width: 100%;
            height: 14rem;
            overflow: hidden;
            z-index: 1;
            border-radius: 0; /* Changed to sharp corners */
        }
        .pillar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .pillar-item:hover .pillar-image {
            transform: scale(1.05);
        }
        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30, 70, 32, 0.5) 0%, transparent 60%);
        }
        .pillar-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .pillar-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }
        .pillar-content .subheading {
            color: var(--brand-green-accent);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .pillar-content .hook {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .pillar-learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--brand-green-accent);
            font-weight: 700;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            margin-top: auto;
            font-size: 0.9rem;
            margin-left: auto;
            margin-right: auto;
        }
        .pillar-learn-more:hover {
            color: var(--brand-green-dark);
        }
        .pillar-learn-more:hover svg {
            transform: translateX(4px);
        }
        .pillar-learn-more svg {
            margin-left: 0.5rem;
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        @media (max-width: 768px) {
            #core-pillars-section { padding: 4rem 1.5rem; }
            .section-heading { font-size: 2.25rem; }
            .section-hook { font-size: 1.15rem; }
        }

        /* --- OUR SERVICES OUR VALUE EDGE --- */
        #why-choose-us-section {
            padding: 6rem 2rem;
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.8' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='4'/%3E%3Ccircle cx='13' cy='13' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .why-choose-us-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .value-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }
        @media (min-width: 768px) {
            .value-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .value-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .value-item {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0; /* Changed to sharp corners */
            padding: 2.5rem;
            border: 1.5px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 40px -10px #2a9d8f20;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .value-item:hover {
            transform: translateY(-16px) scale(1.05);
            box-shadow: 0 25px 50px -12px #2a9d8f40;
            border-color: var(--brand-green-mid);
        }
        .value-item::before {
            content: '';
            position: absolute;
            top: var(--y, 50%);
            left: var(--x, 50%);
            transform: translate(-50%, -50%) scale(0);
            width: 300px;
            height: 300px;
            background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
            z-index: 0;
        }
        .value-item:hover::before {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
        .value-icon-wrapper {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 30%, var(--brand-green-light) 100%);
            box-shadow: 0 8px 30px rgba(42, 157, 143, 0.2);
            border: 2px solid #fff;
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        .value-item:hover .value-icon-wrapper {
            background: linear-gradient(135deg, var(--brand-green-accent), var(--brand-green-mid));
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 12px 40px rgba(42, 157, 143, 0.4);
        }
        .value-content {
            position: relative;
            z-index: 1;
        }
        .value-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin: 0.5rem 0;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .value-content p {
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        /* Preserving all existing icon-related styles as requested */
        .value-icon-inner {
            position: relative;
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            transform-style: preserve-3d;
            perspective: 800px;
            animation: value-floating 3s infinite ease-in-out;
        }
        .value-icon-base, .value-icon-highlight, .value-icon-detail, .value-icon-glow {
            position: absolute;
            width: 48px;
            height: 48px;
            transition: all 0.4s ease;
            color: var(--brand-green-accent);
        }
        .value-item:hover .value-icon-base, .value-item:hover .value-icon-highlight, .value-item:hover .value-icon-detail, .value-item:hover .value-icon-glow {
            color: #fff;
        }
        .value-icon-glow { filter: blur(3px); opacity: 0; z-index: 0; transition: opacity 0.6s ease, filter 0.6s ease; }
        .value-icon-highlight { opacity: 0.4; filter: blur(1px); transform: translateY(1px) scale(0.98); z-index: 1; }
        .value-icon-detail { z-index: 2; opacity: 0.7; }
        .value-icon-base { filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1)); z-index: 3; }
        .value-item:hover .value-icon-highlight { opacity: 0.7; filter: blur(2px) brightness(1.2); transform: translateY(2px) scale(1); }
        .value-item:hover .value-icon-detail { opacity: 1; transform: translateZ(5px) scale(1.05); animation: value-rotate-slow 15s infinite linear; }
        .value-item:hover .value-icon-glow { opacity: 0.6; filter: blur(5px); }
        .value-item:hover .value-icon-base { animation: value-pulse-glow 2s infinite ease-in-out; }
        @keyframes value-pulse-glow { 0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4)); } 50% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)); } }
        @keyframes value-floating { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(1.5deg); } }
        @keyframes value-rotate-slow { 0% { transform: rotate(0deg) translateZ(5px) scale(1.05); } 100% { transform: rotate(360deg) translateZ(5px) scale(1.05); } }
        @media (max-width: 768px) {
            #why-choose-us-section { padding: 4rem 1.5rem; }
            .section-heading { font-size: 2.25rem; }
            .section-hook { font-size: 1.15rem; }
        }

        /* --- OUR SERVICES CALL TO ACTION SECTION (Unified from Homepage CTA) --- */
        #cta-section {
            background: linear-gradient(120deg, var(--brand-green-dark) 0%, #173a18 40%, var(--brand-green-accent) 100%), url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08' fill-rule='evenodd'%3E%3Cpath d='M11 0h2v11h11v2H13v11H11V13H0v-2h11V0zm22 0h2v11h11v2H35v11h-2V13H22v-2h11V0zM55 0h2v11h11v2H57v11h-2V13H44v-2h11V0zM11 22h2v11h11v2H13v11H11V35H0v-2h11V22zm22 0h2v11h11v2H35v11h-2V35H22v-2h11V22zM55 22h2v11h11v2H57v11h-2V35H44v-2h11V22zM11 44h2v11h11v2H13v11H11V57H0v-2h11V44zm22 0h2v11h11v2H35v11h-2V57H22v-2h11V44zm22 0h2v11h11v2H57v11h-2V57H44v-2h11V44zM11 66h2v11h11v2H13v11H11V79H0v-2h11V66zm22 0h2v11h11v2H35v11h-2V79H22v-2h11V66zm22 0h2v11h11v2H57v11h-2V79H44v-2h11V66z'/%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
            background-blend-mode: overlay;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center; /* Default to center for mobile */
            position: relative;
            overflow: hidden;
            padding: 0; /* Padding handled by cta-content */
            box-shadow: none; /* No extra shadow on section itself */
        }
        #cta-section .cta-banner-glass-blur { /* Reusing homepage glass blur classes */
            position: absolute; top: -80px; left: -100px; width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(129, 199, 132, 0.2) 0%, #fff0 75%);
            filter: blur(32px); opacity: 0.5; z-index: 0;
            border-radius: 50%;
        }
        #cta-section .cta-banner-glass-blur-right { /* Reusing homepage glass blur classes */
            position: absolute; right: -90px; bottom: -100px; width: 280px; height: 280px;
            background: radial-gradient(circle, rgba(42, 157, 143, 0.15) 0%, #fff0 80%);
            filter: blur(24px); opacity: 0.6; z-index: 0;
            border-radius: 50%;
        }
        .cta-container {
            max-width: 850px; /* Reduced max-width for content */
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            gap: 3rem;
            position: relative;
            z-index: 1;
            padding: 5rem 2rem; /* Added padding to container instead of section */
        }
        @media (min-width: 992px) {
            .cta-container {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                max-width: 1200px; /* Wider for desktop */
            }
            .cta-image-wrapper { order: 0; } /* Image on left */
            .cta-content { order: 1; text-align: left; } /* Content on right */
        }
        .cta-image-wrapper {
            position: relative;
            border-radius: 0; /* Changed to sharp corners */
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Adjusted shadow */
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .cta-image {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .cta-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(16, 42, 16, 0.7) 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .cta-image-overlay svg {
            width: 60px;
            height: 60px;
            color: white;
            opacity: 0.8;
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }
        .cta-image-wrapper:hover .cta-image {
            transform: scale(1.1);
        }
        .cta-image-wrapper:hover .cta-image-overlay {
            opacity: 1;
        }
        .cta-image-wrapper:hover .cta-image-overlay svg {
            transform: scale(1);
        }
        .cta-content {
            text-align: center; /* Default to center for mobile */
        }
        .cta-eyebrow {
            color: var(--brand-green-light);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }
        .cta-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.75rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
            text-shadow: 0 3px 20px rgba(10, 30, 10, 0.2); /* Adjusted shadow color */
            margin-bottom: 1.5rem; /* Adjusted margin */
            color: #fff;
        }
        @media (min-width: 768px) { .cta-heading { font-size: 3.25rem; } } /* Consistent with homepage */
        .cta-accent {
            width: 50px;
            height: 4px;
            background: #fff;
            margin: 0.5rem auto 1.5rem auto; /* Centered for mobile, auto for desktop */
            border-radius: 0; /* Consistent with homepage */
            box-shadow: 0 0 15px rgba(255,255,255,0.2);
        }
        .cta-hook {
            font-size: 1.2rem; /* Adjusted for consistency */
            line-height: 1.6; /* Adjusted for consistency */
            color: var(--brand-green-light);
            margin: 0 auto 2rem auto; /* Centered for mobile, auto for desktop */
            max-width: 600px; /* Consistent with homepage */
            text-shadow: 0 1.5px 10px rgba(20, 40, 20, 0.1); /* Consistent with homepage */
        }
        /* Removed .cta-btn specific styles - now uses .btn-primary */
        .cta-btn .arrow { /* Kept specific arrow styling */
            margin-left: 8px;
            transition: transform 0.3s ease-out;
        }
        .btn-primary:hover .arrow { /* Applied to btn-primary hover */
            transform: translateX(5px);
        }
        @media (max-width: 991px) {
            .cta-container { padding: 4rem 1.5rem; }
            .cta-heading { font-size: 2.25rem; }
            .cta-hook { margin-left: auto; margin-right: auto; }
            .cta-accent { margin-left: auto; margin-right: auto; }
        }

        /* Fade-in Animation (Common Utility) */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Accessibility: Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            .btn-primary,
            .btn-shimmer::before,
            .service-card,
            .service-card::before,
            .pillar-item,
            .pillar-item::before,
            .pillar-image,
            .value-item,
            .value-item::before,
            .value-icon-wrapper,
            .value-icon-inner,
            .value-icon-base, .value-icon-highlight, .value-icon-detail, .value-icon-glow,
            .cta-image-wrapper,
            .cta-image,
            .cta-image-overlay,
            .cta-image-overlay svg,
            .fade-in-up,
            #services-hero-banner .hero-content {
                transition: none !important;
                animation: none !important;
            }
        }
    