 body{
            font-family:'Poppins',sans-serif;
            background:#f8fafc;
            color:#475569;
        }

        .hero{
            background:linear-gradient(135deg,#2563eb,#4f46e5);
            color:#fff;
            padding:90px 0;
        }

        .section-title{
            color:#1e3a8a;
            font-weight:700;
            margin-bottom:20px;
        }

        .feature-card{
            background:#fff;
            border-radius:18px;
            padding:30px;
            box-shadow:0 10px 30px rgba(0,0,0,.08);
            transition:.3s;
            height:100%;
        }

        .feature-card:hover{
            transform:translateY(-8px);
        }

        .icon-box{
            width:70px;
            height:70px;
            background:#2563eb;
            color:#fff;
            border-radius:15px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:30px;
            margin-bottom:20px;
        }

        .stats{
            background:#2563eb;
            color:#fff;
        }

        .counter{
            font-size:42px;
            font-weight:700;
        }

        footer{
            background:#0f172a;
            color:#fff;
        }

        footer a{
            color:#fff;
            text-decoration:none;
            margin-left:15px;
        }

        footer a:hover{
            color:#60a5fa;
        }

    </style>