*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

header{
    padding:35px 20px;
    text-align:center;
    background:#e2e8f0;
    background-image:radial-gradient(#b8c2cc 1.5px, transparent 1.5px);
    background-size:16px 16px;
    border-bottom:4px solid;
    border-image:linear-gradient(135deg,#141e30,#243b55);
    border-image-slice:1;
}

header h1{
    font-size:34px;
    font-weight:700;
    color:#1a202c;
    line-height:1.4;
}

.blog-content{
    background:#fff;
    padding:40px 20px;
}

.blog-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:24px;
}

.blog-content h2{
    font-size:30px;
    margin:35px 0 18px;
    color:#0b3d91;
}

.blog-content h3{
    font-size:24px;
    margin:25px 0 14px;
}

table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

table th,
table td{
    border:1px solid #ddd;
    padding:14px;
}

table th{
    background:#0b3d91;
    color:#fff;
}

.career-box{
    background:#f8fbff;
    border-left:6px solid #2563eb;
    padding:22px;
    margin:30px 0;
    border-radius:12px;
}

.btn{
    display:inline-block;
    background:#0b3d91;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
}

.bottom-strip{
    background:#ffcc00;
    padding:18px;
    text-align:center;
    font-weight:bold;
    margin-top:40px;
}

.url-section{
    background:#eef4ff;
    padding:20px;
    margin-top:40px;
    border-radius:12px;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    z-index:999;
}

#footer{
    width:100%;
}

@media(max-width:768px){

    header h1{
        font-size:24px;
    }

    .blog-content{
        padding:25px 15px;
    }

    .blog-content p{
        font-size:16px;
    }

    .blog-content h2{
        font-size:24px;
    }

    .blog-content h3{
        font-size:20px;
    }

}