  <style>
        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

            /* NEW: site-wide base background */
            background: linear-gradient(
                135deg,
                #0a0e27 0%,
                #16213e 50%,
                #0f3460 100%
            );

            color: #ffffff;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }
        

        /* Dark mode styles */
        body.dark-mode {
            background: linear-gradient(135deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
        }


        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(20, 184, 166, 0.4);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        body.dark-mode .particle {
            background: rgba(20, 184, 166, 0.6);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        /* articles */
       .article-card {
            max-width: 760px;
            margin: 0 auto;
            padding: 3rem 3.5rem;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 20px;
            border: 1px solid rgba(20,184,166,0.25);
            box-shadow: 0 20px 40px rgba(20,184,166,0.08);
        }

        body.dark-mode .article-card {
            background: rgba(255,255,255,0.05);
            border-color: rgba(20,184,166,0.3);
        }

        .article-card h1 {
            font-size: 2.4rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .article-card p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.8rem;
            color: #334155;
        }

        .article-card p:first-of-type {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 2.5rem;
        }

        body.dark-mode .article-card p {
            color: #e5e7eb;
        }

        /* Article visual breaks */
        .article-section-break {
            text-align: center;
            margin: 3rem 0;
            padding: 2rem 0;
        }

        .article-section-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }

        .article-section-title {
            color: #0d47a1;
            margin: 0;
            font-size: 1.3rem;
        }

        body.dark-mode .article-section-title {
            color: #ffffff;
        }

        .article-quote-box {
            background: rgba(20,184,166,0.05);
            padding: 1.5rem;
            border-left: 4px solid #14b8a6;
            margin: 2rem 0;
            border-radius: 8px;
        }

        body.dark-mode .article-quote-box {
            background: rgba(20,184,166,0.1);
        }

        .article-stats-box {
            background: rgba(20,184,166,0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
        }

        body.dark-mode .article-stats-box {
            background: rgba(20,184,166,0.1);
        }

        /* Article CTA section */
        .article-cta-box {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(20,184,166,0.05);
            border-radius: 15px;
            border: 1px solid rgba(20,184,166,0.2);
        }

        body.dark-mode .article-cta-box {
            background: rgba(20,184,166,0.08);
            border-color: rgba(20,184,166,0.3);
        }

        .article-cta-title {
            margin-bottom: 1rem;
            color: #0d47a1;
            font-size: 1.3rem;
        }

        body.dark-mode .article-cta-title {
            color: #ffffff;
        }

        .article-cta-text {
            margin-bottom: 2rem;
            color: #64748b;
        }

        body.dark-mode .article-cta-text {
            color: #e0e0e0;
        }

        /* Article conclusion text */
        .article-conclusion {
            margin-top: 2rem;
            font-style: italic;
            color: #475569;
        }

        body.dark-mode .article-conclusion {
            color: #94a3b8;
        }

        /* Article section headers */
        .article-section-header {
            color: #0d47a1;
            margin: 2rem 0 1rem 0;
            font-size: 1.3rem;
        }

        body.dark-mode .article-section-header {
            color: #ffffff;
        }

        /* Article quote boxes with different colors */
        .article-quote-primary {
            background: rgba(20,184,166,0.05);
            border-left: 4px solid #14b8a6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        body.dark-mode .article-quote-primary {
            background: rgba(20,184,166,0.1);
            border-left-color: #34d399;
        }

        .article-quote-secondary {
            background: rgba(255,255,255,0.7);
            border-left: 4px solid #06b6d4;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        body.dark-mode .article-quote-secondary {
            background: rgba(255,255,255,0.05);
            border-left-color: #38bdf8;
        }

        .article-quote-warning {
            background: rgba(255,255,255,0.7);
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        body.dark-mode .article-quote-warning {
            background: rgba(255,255,255,0.05);
            border-left-color: #fbbf24;
        }

        .article-quote-success {
            background: rgba(255,255,255,0.7);
            border-left: 4px solid #10b981;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 8px;
        }

        body.dark-mode .article-quote-success {
            background: rgba(255,255,255,0.05);
            border-left-color: #34d399;
        }

        /* Article list items */
        .article-list-item {
            margin: 0 0 0.5rem 0;
        }

        /* Article emphasis text */
        .article-emphasis {
            font-weight: 600;
            color: #0d47a1;
        }

        body.dark-mode .article-emphasis {
            color: #ffffff;
        }

        /* Common text color classes for dark mode compatibility */
        .text-muted {
            color: #64748b;
        }

        body.dark-mode .text-muted {
            color: #94a3b8;
        }

        .text-copyright {
            color: #888;
        }

        body.dark-mode .text-copyright {
            color: #a1a1aa;
        }

        .text-disclaimer {
            color: #64748b;
            font-size: 0.9rem;
        }

        body.dark-mode .text-disclaimer {
            color: #94a3b8;
        }


        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(224, 242, 254, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(20, 184, 166, 0.3);
            box-shadow: 0 4px 20px rgba(20, 184, 166, 0.15);
        }

        body.dark-mode .header {
            background: rgba(10, 14, 39, 0.95);
            border-bottom: 1px solid rgba(20, 184, 166, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-placeholder {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #0d47a1;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: rgba(20, 184, 166, 0.1);
        }

        body.dark-mode .mobile-menu-btn {
            color: #ffffff;
        }

        /* Mobile navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px; /* Adjusted to match the actual header height */
            left: 0;
            right: 0;
            background: rgba(224, 242, 254, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(20, 184, 166, 0.3);
            z-index: 999;
            padding: 1rem 0;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 4px 20px rgba(20, 184, 166, 0.15);
        }

        body.dark-mode .mobile-nav {
            background: rgba(10, 14, 39, 0.98);
        }

        .mobile-nav.active {
            transform: translateY(0);
        }

        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: none;
            margin: 0;
            padding: 0 2rem;
        }

        .mobile-nav-link {
            color: #0d47a1;
            text-decoration: none;
            font-weight: 600;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(20, 184, 166, 0.2);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #14b8a6;
            padding-left: 1rem;
        }

        body.dark-mode .mobile-nav-link {
            color: #ffffff;
        }

        /* Mobile logo adjustments */
        @media (max-width: 768px) {
            .logo-placeholder {
                width: 35px;
                height: 35px;
                font-size: 1.1rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .logo-container {
                gap: 0.7rem;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .header {
                padding: 0.7rem 0;
            }

            /* Hide desktop navigation on mobile */
            .nav-menu {
                display: none !important;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-nav {
                display: block;
            }

            .theme-toggle {
                margin-left: 0.5rem;
                width: 40px;
                height: 40px;
            }

            .nav-right {
                gap: 0.5rem;
            }
        }

        /* Tablet adjustments */
        @media (max-width: 1024px) and (min-width: 769px) {
            .nav-menu {
                gap: 1.5rem;
            }
            
            .nav-link {
                padding: 0.4rem 0.8rem;
                font-size: 0.95rem;
            }
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: #0d47a1;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: #14b8a6;
            background: rgba(20, 184, 166, 0.1);
            transform: translateY(-2px);
        }

        body.dark-mode .nav-link {
            color: #ffffff;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #14b8a6;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: rgba(20, 184, 166, 0.1);
            border: 2px solid rgba(20, 184, 166, 0.3);
            border-radius: 50px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            background: rgba(20, 184, 166, 0.2);
            transform: scale(1.1);
        }

        .theme-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        body.dark-mode .theme-toggle {
            background: rgba(20, 184, 166, 0.2);
            border-color: rgba(20, 184, 166, 0.4);
        }

        body.dark-mode .theme-icon {
            transform: rotate(180deg);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
            padding: 0 2rem;
            padding-top: 100px; /* Account for fixed header */
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #0d47a1, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #1976d2;
            font-weight: 500;
        }

        body.dark-mode .hero-content h1 {
            background: linear-gradient(45deg, #ffffff, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .hero-content p {
            color: #e0e0e0;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            color: #ffffff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #475569;
            padding: 1rem 2rem;
            border: 2px solid #14b8a6;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #14b8a6;
            color: #ffffff;
            transform: translateY(-3px);
        }

        body.dark-mode .btn-secondary {
            color: #ffffff;
        }

        /* Geometric shapes */
        .hero-visual {
            position: relative;
            height: 500px;
        }

        .geometric-shape {
            position: absolute;
            border-radius: 20px;
            animation: geometricFloat 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.1));
            top: 50px;
            left: 50px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(20, 184, 166, 0.1));
            top: 200px;
            right: 80px;
            animation-delay: -2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            background: linear-gradient(225deg, rgba(20, 184, 166, 0.3), rgba(255, 255, 255, 0.1));
            bottom: 100px;
            left: 150px;
            animation-delay: -4s;
        }

        @keyframes geometricFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            position: relative;
            z-index: 10;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #0d47a1, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .section-title {
            background: linear-gradient(45deg, #ffffff, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(20, 184, 166, 0.3);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
        }
        /* Make card-links behave like cards */
        a.service-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }


        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(20, 184, 166, 0.5);
            box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
        }

        body.dark-mode .service-card {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-mode .service-card:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0d47a1;
        }

        .service-card p {
            color: #1976d2;
            line-height: 1.6;
        }

        body.dark-mode .service-card h3 {
            color: #ffffff;
        }

        body.dark-mode .service-card p {
            color: #e0e0e0;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: rgba(224, 242, 254, 0.8);
            position: relative;
            z-index: 10;
        }

        body.dark-mode .contact {
            background: rgba(0, 0, 0, 0.2);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-input {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(20, 184, 166, 0.4);
            border-radius: 10px;
            padding: 1rem;
            color: #0d47a1;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #14b8a6;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
        }

        .form-input::placeholder {
            color: rgba(13, 71, 161, 0.6);
        }

        body.dark-mode .form-input {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        body.dark-mode .form-input:focus {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: none;
        }

        body.dark-mode .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-textarea {
            grid-column: 1 / -1;
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: rgba(224, 242, 254, 0.95);
            padding: 3rem 2rem 1rem;
            text-align: center;
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(20, 184, 166, 0.3);
        }

        body.dark-mode .footer {
            background: rgba(10, 14, 39, 0.9);
            border-top: 1px solid rgba(20, 184, 166, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #1976d2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #14b8a6;
        }

        body.dark-mode .footer-link {
            color: #e0e0e0;
        }

        body.dark-mode .consultation-text {
            color: #e0e0e0 !important;
        }

        body.dark-mode .contact-text {
            color: #e0e0e0 !important;
        }

        /* Testimonials Section */
        .testimonials {
            background: rgba(224, 242, 254, 0.5);
        }

        body.dark-mode .testimonials {
            background: rgba(20, 184, 166, 0.08);
            border-top: 1px solid rgba(20, 184, 166, 0.15);
            border-bottom: 1px solid rgba(20, 184, 166, 0.15);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(20, 184, 166, 0.3);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.98);
            border-color: rgba(20, 184, 166, 0.5);
            box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
        }

        body.dark-mode .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-mode .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .customer-avatar {
            position: relative;
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }

        .avatar-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(20, 184, 166, 0.3);
        }

        .avatar-initials {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #14b8a6, #06b6d4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
        }

        .customer-info h4 {
            margin: 0 0 0.3rem 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #0d47a1;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        body.dark-mode .customer-info h4 {
            color: #ffffff;
        }

        .linkedin-link {
            color: #0077b5;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .linkedin-link:hover {
            color: #14b8a6;
            transform: scale(1.1);
        }

        .customer-info p {
            margin: 0 0 0.5rem 0;
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }

        body.dark-mode .customer-info p {
            color: #94a3b8;
        }

        .star-rating {
            display: flex;
            gap: 0.1rem;
        }

        .star {
            color: #fbbf24;
            font-size: 1rem;
        }

        .testimonial-content p {
            color: #1976d2;
            line-height: 1.6;
            font-style: italic;
            margin: 0;
            position: relative;
        }

        .testimonial-content p::before {
            content: '"';
            font-size: 2rem;
            color: rgba(20, 184, 166, 0.3);
            position: absolute;
            left: -0.5rem;
            top: -0.5rem;
            font-family: serif;
        }

        .testimonial-content p::after {
            content: '"';
            font-size: 2rem;
            color: rgba(20, 184, 166, 0.3);
            font-family: serif;
            display: inline;
            line-height: 1;
        }

        body.dark-mode .testimonial-content p {
            color: #e0e0e0;
        }

        /* Scroll Animation Styles */
        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .fade-in.animate {
            opacity: 1;
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.animate {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered animation delays */
        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }
        .service-card:nth-child(4) { transition-delay: 0.4s; }
        .service-card:nth-child(5) { transition-delay: 0.5s; }
        .service-card:nth-child(6) { transition-delay: 0.6s; }

        .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
        .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
        .testimonial-card:nth-child(3) { transition-delay: 0.3s; }
        .testimonial-card:nth-child(4) { transition-delay: 0.4s; }
        .testimonial-card:nth-child(5) { transition-delay: 0.5s; }
        .testimonial-card:nth-child(6) { transition-delay: 0.6s; }

        /* Hero content animations */
        .hero-content h1 {
            animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-content p {
            animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
        }

        .cta-buttons {
            animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
        }

        .hero-visual {
            animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
        }

        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            0% {
                opacity: 0;
                transform: translateX(100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 1.8rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero {
                padding: 120px 1rem 2rem;
                min-height: calc(100vh - 80px);
            }

            .services, .differentiators, .consultation-packages, .contact, .testimonials {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-group {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                justify-content: center;
                gap: 0.8rem;
            }

            .btn-primary, .btn-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }

            .social-links {
                gap: 1rem;
            }

            .footer-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        .legal-page {
            padding-top: 140px;
        }

      

    @media (max-width: 768px) {
        .legal-page .service-card {
            padding: 1.5rem;
        }

        .legal-page .service-card h3 {
            font-size: 1.1rem;
        }

        .legal-page .service-card p {
            font-size: 0.95rem;
            line-height: 1.7;
        }
}
    </style>
