*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Montserrat,sans-serif;

background:#ffffff;

color:#003b75;

line-height:1.6;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 8%;

background:white;

box-shadow:0 2px 15px rgba(0,0,0,.08);

position:sticky;

top:0;

z-index:100;

}

.logo{

display:flex;

align-items:center;

gap:18px;

}

.logo-image{

width:160px;

height:auto;

flex-shrink:0;

}
.logo h1{

font-size:30px;

font-weight:700;

}

.logo p{

font-size:14px;

color:#5b6b7f;

}

nav{

display:flex;

gap:30px;

}

nav a{

text-decoration:none;

color:#003b75;

font-weight:600;

transition:.3s;

}

nav a:hover{

color:#0080ff;

}

.hero{

height:550px;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(rgba(255,255,255,.92),
rgba(255,255,255,.92)),
url("images/microscope.jpg");

background-size:cover;

background-position:center;

text-align:center;

padding:50px;

}

.hero h2{

font-size:50px;

margin-bottom:20px;

}

.hero p{

font-size:20px;

max-width:800px;

margin:auto;

margin-bottom:35px;

}

.button{

display:inline-block;

padding:16px 36px;

background:#0066cc;

color:white;

border-radius:8px;

text-decoration:none;

font-weight:bold;

}

.button:hover{

background:#004e9c;

}

section{

padding:90px 10%;

}

section h2{

font-size:40px;

margin-bottom:30px;

text-align:center;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:35px;

margin-top:40px;

}

.card{

background:white;

padding:35px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

text-align:center;

}

.card i{

font-size:50px;

color:#0066cc;

margin-bottom:20px;

}

.team-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:40px;

margin-top:50px;

}

.member{

background:white;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}


.member img {

width:250px;

height:250px;

object-fit:cover;

object-position:center top;

border-radius:50%;

display:block;

margin:0 auto 20px;

border:5px solid #0066cc;


}

#contact{

text-align:center;

}

footer{

background:#003b75;

color:white;

text-align:center;

padding:30px;

margin-top:60px;

}

@media(max-width:900px){

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero h2{

font-size:34px;

}

.hero{

height:auto;

padding:80px 20px;

}

}
