@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');
        body { font-family: 'Open Sans', sans-serif; color: #333; }
        h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 600; }
        .hero-gradient { background: linear-gradient(135deg, #0f1b3f 0%, #1a3a5f 50%, #0f1b3f 100%); }
        .section-padding { padding-top: 5rem; padding-bottom: 5rem; }
        .card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .card-hover:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
        .flink { display: inline-block; padding: 0.75rem 1.5rem; margin: 0.5rem; background: #f8f9fa; border-radius: 50px; color: #495057; transition: all 0.3s; border: 1px solid #dee2e6; }
        .flink:hover { background: #0f1b3f; color: white; text-decoration: none; transform: scale(1.05); }
        .btn-primary { background-color: #0f1b3f; border-color: #0f1b3f; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: all 0.3s; }
        .btn-primary:hover { background-color: #1a3a5f; transform: scale(1.05); }
        .footer-links a { color: #adb5bd; transition: color 0.3s; }
        .footer-links a:hover { color: #ffffff; text-decoration: underline; }
        .nav-link { font-weight: 500; position: relative; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: #fff; transition: width 0.3s; }
        .nav-link:hover::after { width: 100%; }
        .sticky-nav { backdrop-filter: blur(10px); background-color: rgba(15, 27, 63, 0.95); }
        .animate-fade-in-up { animation: fadeInUp 0.8s ease-out; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .stat-number { font-size: 3.5rem; font-weight: 800; color: #0f1b3f; line-height: 1; }
        .process-step { position: relative; padding-left: 3rem; }
        .process-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: #0f1b3f; }
        .process-step-number { position: absolute; left: -1.25rem; top: 0; width: 2.5rem; height: 2.5rem; background: #0f1b3f; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        input, textarea { border-radius: 0.375rem; border: 1px solid #ced4da; padding: 0.75rem; }
        input:focus, textarea:focus { outline: none; border-color: #0f1b3f; box-shadow: 0 0 0 0.2rem rgba(15, 27, 63, 0.25); }
