:root {
            --primary: #1e40af; 
            --secondary: #dc2626; 
            --accent: #f59e0b; 
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(220, 38, 38, 0.85) 100%);
        }
        .flink {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9fafb;
        }
        .flink:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-5px);
            border-color: #3b82f6;
        }
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .nav-link.active {
            color: var(--secondary);
            font-weight: 600;
            border-bottom: 2px solid var(--secondary);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-divider {
            height: 4px;
            width: 80px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 1.5rem auto;
            border-radius: 2px;
        }
