
        /* ===== CSS Variables ===== */
        :root {
            --primary-blue: #3b82f6;
            --primary-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-white: #ffffff;
            --bg-light: #f9fafb;
            --bg-card: #ffffff;
        }

        * {
            font-family: 'Inter', sans-serif !important;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            padding-top: 80px;
            overflow-y: scroll;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }
        }

        /* Ensure all text elements use Inter */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        span,
        div,
        li,
        ul,
        ol,
        button,
        input,
        textarea,
        select,
        label {
            font-family: 'Inter', sans-serif !important;
        }

        /* ===== Sticky Navbar ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            min-height: 80px;
            max-height: 80px;
            padding: 0 2rem;
            z-index: 1000;
            background: #15181f; /* deep navy to complement white logo tile */
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
            border-bottom: 1px solid rgba(15, 23, 42, 0.9);
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .navbar.scrolled {
            background: #303a63;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
            border-bottom: 1px solid rgba(15, 23, 42, 1);
        }

        .nav-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            height: 65px;
        }

        .logo img {
            height: 65px;
            width: auto;
            display: block;
        }

        .logo-tagline {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(248, 250, 252, 0.9);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            padding: 0.5rem 1.25rem;
            border: 2px solid transparent;
            border-radius: 25px;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-block;
            line-height: 1.5;
            min-height: 40px;
            box-sizing: border-box;
        }

        .nav-link:hover {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
        }

        .nav-link.active {
            color: #ffffff;
            border-color: rgba(59, 130, 246, 0.6);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .mobile-menu-btn .hamburger-icon {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn .close-icon {
            display: none;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger-icon {
            display: none;
        }

        .mobile-menu-btn.active .close-icon {
            display: inline-block;
        }

        .mobile-menu-close {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 2rem;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
                z-index: 999;
                gap: 2rem;
                overflow-y: auto;
            }

            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 28px;
                cursor: pointer;
                z-index: 10000;
                transition: all 0.3s ease;
                opacity: 0;
                pointer-events: none;
            }

            .mobile-menu-close:hover {
                background: rgba(255, 255, 255, 0.2);
                border-color: rgba(255, 255, 255, 0.4);
                transform: scale(1.1) rotate(90deg);
            }

            .nav-links.active .mobile-menu-close {
                opacity: 1;
                pointer-events: auto;
            }

            .nav-links.active {
                transform: translateX(0);
            }

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

            .nav-link {
                display: block;
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
                text-align: center;
                border-radius: 12px;
            }
        }

        /* ===== Hero Section ===== */
        .hero-section {
            padding: 8rem 2rem 4rem;
            text-align: center;
            background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f0f9ff 100%);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            color: var(--text-dark);
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== Sections ===== */
        .section {
            padding: 6rem 2rem;
            position: relative;
            overflow: visible;
        }

        .section.alt {
            background: var(--bg-light);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: -1px;
            color: var(--text-dark);
        }

        .section-title .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 4rem;
            line-height: 1.8;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: visible;
        }

        /* ===== Cards Grid (match Home page) ===== */
        .cards-grid {
            max-width: 1400px;
            margin: 3rem auto 4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem; /* >= 24px gap between cards, same as Home */
            padding: 2rem 0;
        }

        /* Base card style cloned from Home page cards */
        .card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            perspective: 1000px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            z-index: 1;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-10px) translateZ(50px) rotateX(2deg) rotateY(2deg);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .card p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        .card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .card ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .card ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Three Column Grid for Compliance */
        .three-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            margin-bottom: 4rem;
            padding-bottom: 2rem;
        }

        /* Simple Text Cards – reuse Home card visual treatment */
        .text-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .text-card:hover {
            transform: translateY(-10px) translateZ(50px) rotateX(2deg) rotateY(2deg);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .text-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .text-card p {
            color: #4b5563;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .text-card ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0 0;
            text-align: left;
        }

        .text-card ul li {
            color: #4b5563;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .text-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .text-card ul li strong {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Highlight Box */
        .highlight {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 2px solid rgba(59, 130, 246, 0.2);
            padding: 2rem;
            border-radius: 16px;
            margin: 3rem 0 4rem 0;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .highlight strong {
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        /* Tech Stack Section */
        .tech-stack-section {
            margin-top: 4rem;
            margin-bottom: 3rem;
        }

        .tech-stack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .tech-stack-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 16px;
            padding: 1.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tech-stack-card:hover {
            transform: translateY(-4px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
        }

        .tech-stack-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tech-stack-card p {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .tech-stack-card .tech-items {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.75rem;
        }

        .tech-tag {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-blue);
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        /* Security Info Box */
        .security-info {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
            border-left: 4px solid var(--primary-blue);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            position: relative;
        }

        .security-info p {
            color: #1f2937;
            font-size: 1.05rem;
            line-height: 1.8;
            margin: 0;
        }

        .security-info strong {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* CTA Buttons */
        .cta {
            display: inline-block;
            margin-top: 0;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
            position: relative;
            z-index: 20; /* ensure buttons stay above cards */
        }

        .cta:hover {
            transform: translateY(-5px) translateZ(30px) scale(1.05);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        .cta-center {
            text-align: center;
            display: block;
            margin-top: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 5;
            padding-top: 2rem;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: #ffffff;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta.dark {
            background: #ffffff;
            color: var(--primary-blue);
        }

        .cta.dark:hover {
            background: #f9fafb;
        }

        /* ===== How We Work Section ===== */
        .how-we-work {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .how-we-work::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .how-we-work .container {
            position: relative;
            z-index: 1;
        }

        .how-we-work-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .gradient-text-white {
            background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .how-we-work-subtitle {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(6, 182, 212, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .process-step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }

        .process-step p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .how-we-work-cta {
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
            color: #ffffff;
            border: none;
        }

        .how-we-work-cta:hover {
            background: linear-gradient(135deg, #0891b2, #2563eb);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
        }

        @media (max-width: 768px) {
            .how-we-work {
                padding: 4rem 1.5rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .how-we-work-subtitle {
                font-size: 1rem;
            }
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .card-animate {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-animate.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .text-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .text-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Footer ===== */
        .footer {
            background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
            color: #e5e7eb;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .footer-section p {
            color: #e5e7eb;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
            display: block;
            text-decoration: none;
        }

        .footer-tagline {
            color: #60a5fa;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #60a5fa;
            transform: translateX(5px);
        }

        .footer-contact-info {
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .footer-contact-info strong {
            color: #ffffff;
            font-weight: 600;
        }

        .footer-hours {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #9ca3af;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a5fa;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #e5e7eb;
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            display: block;
        }


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

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

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 1rem;
                overflow: visible;
            }

            .cards-grid,
            .three-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 3rem;
                padding-bottom: 1.5rem;
            }

            .card {
                padding: 2rem 1.5rem;
            }

            .hero-section {
                padding: 6rem 1.5rem 3rem;
            }

            .cta-center {
                margin-top: 1.5rem;
                padding-top: 1.5rem;
            }

            .tech-stack-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .tech-stack-section {
                margin-top: 3rem;
                margin-bottom: 2rem;
            }

            .security-info {
                padding: 1.5rem;
                margin: 2rem 0;
            }

            .security-info p {
                font-size: 0.95rem;
            }
        }
    