       /* --- REUSING CORE VARIABLES (Consistent with Home) --- */
        :root {
            --primary-gold: #eebb54;
            --primary-gold-hover: #d4a036;
            --bg-dark: #2d2d2d;
            --bg-darker: #1f1f1f;
            --bg-footer: #141b2d;
            --text-white: #ffffff;
            --text-grey: #b3b3b3;
            --card-shadow: 0 10px 30px rgba(0,0,0,0.15);
            --transition-speed: 0.3s;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; transition: var(--transition-speed); }
        ul { list-style: none; }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .animate-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
        .animate-left { animation: slideInLeft 0.8s ease-out forwards; opacity: 0; }
        .animate-right { animation: slideInRight 0.8s ease-out forwards; opacity: 0; }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }

        /* --- HEADER (Consistent) --- */
        header {
            background-color: var(--bg-dark);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .logo-container h2 { color: var(--primary-gold); font-size: 1.8rem; font-weight: 700; line-height: 1; }
        .logo-container span { color: var(--text-white); font-size: 0.8rem; font-weight: 400; display: block; margin-top: 5px; letter-spacing: 1px; }

        nav ul { display: flex; gap: 2rem; }
        nav a { color: var(--text-white); font-weight: 500; font-size: 0.95rem; position: relative; }
        nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-gold); transition: var(--transition-speed); }
        nav a:hover, nav a.active { color: var(--primary-gold); }
        nav a:hover::after, nav a.active::after { width: 100%; }

        /* --- PAGE HERO --- */
        .page-hero {
            background-color: var(--bg-dark);
            padding: 8rem 5% 4rem 5%;
            text-align: center;
            position: relative;
        }

        .page-hero h1 {
            color: var(--text-white);
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .page-hero h1 span { color: var(--primary-gold); }
        .page-hero p { color: var(--text-grey); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

        /* --- SERVICE SECTIONS (Zig-Zag) --- */
        .service-section {
            padding: 5rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            position: relative;
            overflow: hidden;
        }

        .service-section:nth-child(even) { background-color: #ffffff; }
        .service-section:nth-child(odd) { background-color: #f0f0f0; }

        /* Reverse order for every other section */
        .service-section.reverse {
            flex-direction: row-reverse;
        }

        .service-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .service-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Large Background Number */
        .bg-number {
            position: absolute;
            top: -60px;
            left: -20px;
            font-size: 10rem;
            font-weight: 800;
            color: rgba(0,0,0,0.05);
            font-family: 'Montserrat', sans-serif;
            z-index: -1;
            line-height: 1;
        }

        .service-content h3 {
            font-size: 2.2rem;
            color: var(--bg-dark);
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .service-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--primary-gold);
        }

        .service-content p {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            margin-top: 1.5rem;
        }

        .feature-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #444;
        }

        .feature-list li i {
            color: var(--primary-gold);
            margin-right: 15px;
            font-size: 1.1rem;
        }

        /* Visual Card Styling */
        .visual-card {
            background-color: var(--bg-dark);
            width: 100%;
            max-width: 450px;
            height: 350px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            position: relative;
            transition: transform 0.4s ease;
        }

        .visual-card:hover {
            transform: translateY(-10px);
        }

        .visual-card i {
            font-size: 5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .visual-card span {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* --- CTA SECTION --- */
        .cta-banner {
            background-color: var(--primary-gold);
            padding: 4rem 5%;
            text-align: center;
            color: var(--bg-darker);
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .btn-dark {
            background-color: var(--bg-darker);
            color: white;
            padding: 1rem 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            display: inline-block;
            margin-top: 1.5rem;
            transition: var(--transition-speed);
        }

        .btn-dark:hover {
            background-color: white;
            color: var(--bg-darker);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* --- FOOTER (Consistent) --- */
        footer {
            background-color: var(--bg-footer);
            color: white;
            padding: 3rem 5%;
            border-top: 3px solid var(--primary-gold);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-left h4 { font-size: 1.2rem; color: var(--primary-gold); margin-bottom: 1rem; }
        .footer-info p { font-size: 0.9rem; color: #ccc; margin-bottom: 0.5rem; }
        .social-icons { display: flex; gap: 1.5rem; }
        .social-icons i { font-size: 1.5rem; color: white; cursor: pointer; transition: 0.3s; }
        .social-icons i:hover { color: var(--primary-gold); }

        /* Responsive */
        @media (max-width: 900px) {
            .service-section { flex-direction: column; text-align: left; padding: 3rem 5%; gap: 2rem; }
            .service-section.reverse { flex-direction: column; }
            .bg-number { font-size: 6rem; top: -30px; }
            .visual-card { width: 100%; height: 250px; }
            header { flex-direction: column; gap: 1rem; }
            .page-hero h1 { font-size: 2rem; }
        }