

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #0F172A;
            
        }

        /* Colors */
        :root {
            --uikey-blue: #1E3A8A;
            --uikey-sky: #3B82F6;
            --uikey-dark: #0F172A;
            --uikey-green: #10B981;
        }

        /* Navbar */
        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--uikey-blue) !important;
        }

        .nav-link {
            font-weight: 500;
            color: var(--uikey-dark) !important;
        }

        .nav-link:hover {
            color: var(--uikey-sky) !important;
        }

        /* Hero Section */
        .hero-section {
            padding: 120px 24px;
            background: linear-gradient(135deg, #1E3A8A, #3B82F6);
            color: white;
        }

        .hero-section h1 {
            font-weight: 600;
            font-size: 3rem;
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 600px;
        }

        /* Service Cards */
        .service-card {
            padding: 40px;
            border-radius: 14px;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        /* Section Headings */
        .section-title {
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--uikey-blue);
            margin-bottom: 30px;
        }

        /* Testimonials */
        .testimonial-box {
            background: #f8fafc;
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--uikey-sky);
        }

        /* Buttons */
        .btn-uikey {
            background: var(--uikey-blue);
            color: #fff;
            padding: 12px 30px;
            font-weight: 500;
            border-radius: 10px;
        }

        .btn-uikey:hover {
            background: var(--uikey-sky);
        }

        /* Footer */
        footer {
            background: var(--uikey-dark);
            color: white;
            padding: 40px 0;
        }
