*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter', sans-serif;

background:#0f2027;

display:flex;
flex-direction:column;

min-height:100vh;

}

.background{

flex:1;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);

}

.card{

background:white;

padding:60px 50px;

border-radius:12px;

text-align:center;

max-width:500px;

box-shadow:0 15px 40px rgba(0,0,0,0.2);

}

.logo{

width:200px;

margin-bottom:30px;

}

h1{

font-size:32px;

font-weight:600;

margin-bottom:15px;

color:#1a1a1a;

}

.description{

font-size:17px;

color:#555;

margin-bottom:25px;

line-height:1.6;

}

.divider{

height:1px;

background:#e5e5e5;

margin:25px 0;

}

.contact{

font-size:15px;

color:#777;

margin-bottom:6px;

}

.phone{

font-size:18px;

font-weight:500;

color:#222;

}

/* Footer */

footer{

text-align:center;

padding:18px;

font-size:13px;

color:#ccc;

background:#0f2027;

}

/* Animation */

.fade-in{

animation:fadeIn 1.2s ease-in-out;

}

@keyframes fadeIn{

0%{
opacity:0;
transform:translateY(20px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/* Mobile */

@media(max-width:600px){

.card{

margin:20px;

padding:40px 30px;

}

.logo{

width:160px;

}

h1{

font-size:26px;

}

}