body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f6f8;
color:#333;
}

header{
background:#1f2933;
color:white;
text-align:center;
padding:50px 20px;
}

h1{
margin:0;
font-size:40px;
}

section{
max-width:1000px;
margin:auto;
padding:40px 20px;
}

.bio p{
font-size:18px;
line-height:1.6;
}

.research ul{
display:flex;
flex-wrap:wrap;
gap:10px;
padding:0;
}

.research li{
background:#e3e7ea;
padding:8px 12px;
border-radius:6px;
list-style:none;
}

.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.project{
background:white;
border-radius:10px;
padding:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.project img{
width:100%;
border-radius:6px;
}

.project a{
display:inline-block;
margin-top:10px;
color:#1a73e8;
text-decoration:none;
}

.badges{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.badges span{
background:#1a73e8;
color:white;
padding:6px 12px;
border-radius:5px;
font-size:14px;
}

footer{
text-align:center;
padding:40px;
background:#1f2933;
color:white;
}

footer a{
color:#90c2ff;
text-decoration:none;
}
