
body{
font-family:Arial;
margin:0;
background:#f4f6fb;
color:#333;
}

.container{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

header{
background:#0a2c54;
color:white;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero{
height:450px;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1559526324-593bc073d938') center/cover;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-box{
background:rgba(0,0,0,.4);
padding:30px;
border-radius:6px;
}

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

.card{
background:white;
padding:25px;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
border-radius:6px;
}

.team-section{
background:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover fixed;
padding:80px 0;
text-align:center;
}

.team-section h2{
color:white;
margin-bottom:40px;
}

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

.team-card{
background:rgba(255,255,255,0.95);
padding:25px;
border-radius:8px;
box-shadow:0 6px 25px rgba(0,0,0,0.25);
}

.team-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
border:4px solid #0a2c54;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}

.testimonial{
background:white;
padding:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
border-radius:6px;
}

input{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
border:1px solid #ccc;
}

button{
background:#0a2c54;
color:white;
padding:12px;
border:none;
cursor:pointer;
width:100%;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

footer{
background:#0a2c54;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

.fade{
opacity:0;
transform:translateY(30px);
transition:.8s;
}

.fade.show{
opacity:1;
transform:translateY(0);
}
