@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');
        :root {
            --primary: #1e40af;
            --secondary: #0f766e;
            --accent: #ea580c;
            --light: #f8fafc;
            --dark: #0f172a;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #334155;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .font-heading {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
        }
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #1e3a8a;
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: #f1f5f9;
            border-radius: 0.375rem;
            color: #475569;
            text-decoration: none;
            transition: all 0.2s;
        }
        .flink:hover {
            background-color: var(--primary);
            color: white;
        }
        .nav-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--primary);
            margin-bottom: 2rem;
        }
        .timeline-dot {
            position: absolute;
            left: -0.6rem;
            top: 0;
            width: 1.2rem;
            height: 1.2rem;
            border-radius: 50%;
            background-color: var(--primary);
        }
        .testimonial-slider {
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
        }
        .testimonial-card {
            scroll-snap-align: start;
            flex: 0 0 auto;
            width: 100%;
        }
        @media (min-width: 768px) {
            .testimonial-card {
                width: 50%;
            }
        }
        @media (min-width: 1024px) {
            .testimonial-card {
                width: 33.333%;
            }
        }
        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.375rem;
            transition: border 0.3s;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
        }
        footer a {
            color: #cbd5e1;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
