
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,sans-serif;
background:#f5f7fb;
color:#333;
line-height:1.7;
}
header{
background:#0a2540;
padding:18px 50px;
position:sticky;
top:0;
z-index:999;
display:flex;
justify-content:space-between;
align-items:center;
}
.logo{
color:#00cfff;
font-size:28px;
font-weight:bold;
}
nav a{
color:white;
text-decoration:none;
margin-left:18px;
font-weight:600;
}
.hero{
background:linear-gradient(rgba(10,37,64,.85),rgba(10,37,64,.85)),url('../images/server-support.jpg');
background-size:cover;
background-position:center;
padding:130px 40px;
text-align:center;
color:white;
}
.hero h1{
font-size:52px;
margin-bottom:20px;
}
.hero p{
max-width:950px;
margin:auto;
font-size:20px;
}
.btn{
display:inline-block;
margin-top:30px;
background:#00cfff;
padding:14px 30px;
border-radius:8px;
color:#0a2540;
font-weight:bold;
text-decoration:none;
}
.section{
padding:70px 50px;
}
.title{
font-size:38px;
margin-bottom:20px;
color:#0a2540;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:35px;
}
.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 4px 18px rgba(0,0,0,.08);
}
.card h3{
margin-bottom:15px;
color:#0a2540;
}
.banner{
width:100%;
margin-top:35px;
border-radius:14px;
}
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:40px;
}
.stat{
background:#123b6d;
padding:30px;
border-radius:12px;
color:white;
text-align:center;
font-size:28px;
font-weight:bold;
}
footer{
background:#0a2540;
color:white;
padding:50px;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
padding:15px 22px;
border-radius:50px;
color:white;
font-weight:bold;
text-decoration:none;
}
form input,form textarea,form select{
width:100%;
padding:15px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #ccc;
}
form button{
background:#00cfff;
padding:15px 30px;
border:none;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}
@media(max-width:768px){
header{
flex-direction:column;
padding:20px;
}
nav{
margin-top:10px;
}
nav a{
display:block;
margin:10px 0;
}
.hero h1{
font-size:34px;
}
.section{
padding:40px 20px;
}
}
