body{

margin:0;

font-family:Arial,sans-serif;

background:#f3f4f6;

color:#111827;

}



.container{

max-width:1100px;

margin:auto;

padding:40px 20px;

}





header{

text-align:center;

margin-bottom:50px;

}



header h1{

font-size:42px;

margin-bottom:15px;

}



header p{

font-size:18px;

color:#6b7280;

max-width:700px;

margin:auto;

line-height:1.7;

}





.projects{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:30px;

margin-bottom:50px;

}





.card{

background:white;

padding:30px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.25s;

}



.card:hover{

transform:translateY(-6px);

}



.card h2{

margin-top:0;

margin-bottom:15px;

}



.card p{

line-height:1.7;

color:#4b5563;

margin-bottom:25px;

}





.btn{

display:inline-block;

padding:12px 24px;

background:#2563eb;

color:white;

text-decoration:none;

border-radius:10px;

font-weight:bold;

transition:.25s;

}



.btn:hover{

background:#1d4ed8;

}





.coming-soon{

background:white;

padding:30px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

margin-bottom:50px;

}



.coming-soon h2{

margin-top:0;

text-align:center;

margin-bottom:30px;

}





.coming-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:18px;

}



.coming-grid div{

background:#f3f4f6;

padding:18px;

border-radius:12px;

text-align:center;

font-weight:600;

}





footer{

text-align:center;

color:#6b7280;

font-size:15px;

line-height:1.8;

}





@media(max-width:768px){

header h1{

font-size:34px;

}

}