
        :root {
            --primary: #f81f7e;
            --secondary: #03489c;
            --accent: #002025;
            --light: #f8fafc;
            --dark: #002025;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }
        
        .hero {
            
            color: white;
        }
        
        .insurance-card {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .insurance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .active {
            color: var(--accent);
            font-weight: 600;
        }
        
        .section {
            scroll-margin-top: 100px;
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: none;
            }
            
            .mobile-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            }
        }
    