 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: #fff;
            color: #000;
            line-height: 1.6;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Top Benefits Slider */
        .benefits-slider-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #000;
            padding: 0.5rem 0;
            z-index: 999;
            overflow: hidden;
            transform: translateZ(0);
        }

        .benefits-slider {
            display: flex;
            animation: slide 30s linear infinite;
            will-change: transform;
        }

        .benefits-track {
            display: flex;
            gap: 3rem;
            padding: 0 1.5rem;
            flex-shrink: 0;
        }

        .benefit-slide {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.7rem;
            color: #fff;
            white-space: nowrap;
            letter-spacing: 0.05em;
        }

        .benefit-slide::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 14px;
            height: 14px;
            background: #fff;
            color: #000;
            border-radius: 50%;
            font-size: 0.6rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        @keyframes slide {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Enhanced Navbar - Consistent with About Page */
        .navbar {
            position: fixed;
            top: 36px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e5e5;
            padding: 0.9rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 998;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateZ(0);
        }

        .navbar.scrolled {
            padding: 0.7rem 5%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .logo {
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            user-select: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 24px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover img {
            transform: scale(1.05) translateY(-1px);
        }

        .navbar.scrolled .logo img {
            height: 22px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.4rem 0;
        }

        .nav-links a:hover {
            color: #666;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.08);
            cursor: pointer;
            position: relative;
            z-index: 1001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            align-items: center;
            justify-content: center;
        }

        .mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        .mobile-toggle-inner {
            position: relative;
            width: 18px;
            height: 12px;
        }

        .mobile-toggle span {
            position: absolute;
            width: 100%;
            height: 2px;
            background: #000;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            left: 0;
        }

        .mobile-toggle span:nth-child(1) { top: 0; }
        .mobile-toggle span:nth-child(2) { top: 5px; }
        .mobile-toggle span:nth-child(3) { top: 10px; }

        .mobile-toggle.active span:nth-child(1) {
            top: 5px;
            transform: rotate(45deg);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            top: 5px;
            transform: rotate(-45deg);
        }

        .main-content {
            margin-top: 72px;
        }

        .loading {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
        }

        /* Enhanced Trust Badge Bar */
        .trust-badge-bar {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 1rem;
            z-index: 997;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            font-size: 0.7rem;
            color: #fff;
            letter-spacing: 0.05em;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transform: translateX(120%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            max-width: 220px;
        }

        .trust-badge-bar.show {
            transform: translateX(0);
            opacity: 1;
        }

        .trust-badge-bar.minimized {
            padding: 0.6rem 0.8rem;
            gap: 0.5rem;
            max-width: 200px;
        }

        .trust-badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            transform: translateX(20px);
            animation: slideInBadge 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        }

        .trust-badge-bar.show .trust-badge-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .trust-badge-bar.show .trust-badge-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .trust-badge-bar.show .trust-badge-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes slideInBadge {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .trust-badge-item::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background: #fff;
            color: #000;
            border-radius: 50%;
            font-size: 0.65rem;
            font-weight: 600;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .trust-badge-item:hover::before {
            transform: scale(1.1) rotate(10deg);
        }

        .trust-badge-bar.minimized .trust-badge-item {
            font-size: 0.65rem;
        }

        .trust-badge-bar.minimized .trust-badge-item::before {
            width: 16px;
            height: 16px;
            font-size: 0.6rem;
        }

        /* Enhanced Footer - Consistent with About Page */
        .footer {
            padding: 4rem 5% 2rem;
            background: #fff;
            border-top: 1px solid #e5e5e5;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 2.5rem;
        }

        .footer-section h4 {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #000;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo img {
            height: 24px;
            width: auto;
            max-width: 130px;
            object-fit: contain;
        }

        .footer-section p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #666;
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #000;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e5e5e5;
            color: #666;
            font-size: 0.8rem;
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #999;
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #000;
        }

        #hero-section,
        #clients-section,
        #services-section,
        #why-us-section,
        #contact-section {
            scroll-margin-top: 85px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .logo img {
                height: 22px;
                max-width: 120px;
            }

            .navbar.scrolled .logo img {
                height: 20px;
            }
            
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1.5rem 5%;
                gap: 1rem;
                border-bottom: 1px solid #e5e5e5;
                transform: translateY(-120%);
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                pointer-events: none;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links a {
                font-size: 0.8rem;
                padding: 0.5rem 0;
                width: 100%;
            }

            .trust-badge-bar {
                bottom: 15px;
                right: 15px;
                padding: 0.75rem;
                max-width: 180px;
            }

            .trust-badge-bar.minimized {
                padding: 0.5rem 0.6rem;
                max-width: 160px;
            }

            .trust-badge-item {
                font-size: 0.65rem;
                gap: 0.4rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 20px;
                max-width: 105px;
            }

            .benefit-slide {
                font-size: 0.65rem;
            }

            .trust-badge-bar {
                bottom: 10px;
                right: 10px;
                padding: 0.6rem;
                max-width: 160px;
            }

            .trust-badge-item {
                font-size: 0.6rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
 