*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f8fa;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:25px;
color:#222;
}

.container{
background:#fff;
max-width:750px;
width:100%;
padding:50px 40px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo img{
width:95px;
margin-bottom:20px;
}

h1{
font-size:48px;
color:#0b2d6f;
font-weight:700;
}

h2{
font-size:22px;
font-weight:400;
letter-spacing:8px;
color:#444;
margin-top:5px;
}

.line{
width:120px;
height:3px;
background:#d71920;
margin:30px auto;
}

h3{
font-size:32px;
color:#d71920;
margin-bottom:20px;
}

p{
font-size:18px;
line-height:1.8;
color:#555;
}

.services{
margin:35px 0;
font-size:17px;
font-weight:500;
color:#0b2d6f;
line-height:1.8;
}

.contact{
border-top:1px solid #ddd;
padding-top:25px;
line-height:2;
font-size:16px;
color:#444;
}

footer{
margin-top:35px;
font-size:14px;
color:#888;
}

@media(max-width:768px){

.container{
padding:35px 25px;
}

.logo img{
width:75px;
}

h1{
font-size:34px;
}

h2{
font-size:18px;
letter-spacing:5px;
}

h3{
font-size:26px;
}

p{
font-size:16px;
}

.services{
font-size:16px;
}

}