  body{
            font-family: 'Poppins', sans-serif;
            background:#f4f6f9;
            line-height:1.9;
        }
        
        .hero{
            position:relative;
            background:url('../blogImages/Business-Online-Growth.jpg') no-repeat center/cover;
            min-height:420px;
            border-radius:14px;
            overflow:hidden;
        }
        .hero::after{
            content:"";
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.65);
        }
        .hero-content{
            position:relative;
            z-index:2;
            color:#fff;
            padding:40px;
        }
        .blog-card{
            background:#fff;
            border-radius:14px;
            padding:40px;
            margin-top:-80px;
            position:relative;
            z-index:3;
        }
        .blog-card h2,h3{
            font-weight:600;
            margin-top:35px;
        }
        .blog-card img {
            border-radius: 12px;
            margin: 30px 0;
        }

        .highlight{
            background:#f1f5ff;
            border-left:5px solid #0d6efd;
            padding:20px;
            border-radius:10px;
            margin-top:25px;
        }