body{
font-family: Inter, sans-serif;
margin:0;
background:#FFF8E7;
color:#1F2A44;
}

nav{
display:flex;
justify-content:space-between;
padding:25px 60px;
background:white;
border-bottom:2px solid #E6EDF7;
}

.logo{
font-weight:800;
font-size:26px;
color:#0046A8;
}

.menu a{
margin-left:25px;
text-decoration:none;
color:#0046A8;
font-weight:600;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:120px 80px;
}

.hero-text{
max-width:520px;
}

.hero h1{
font-size:80px;
line-height:1.1;
color:#0046A8;
margin:0;
}

.hero p{
font-size:22px;
margin-top:20px;
}

.hero img{
width:420px;
}

section{
padding:100px 80px;
text-align:center;
}

h2{
font-size:48px;
margin-bottom:40px;
}

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

.card{
background:white;
padding:40px;
border-radius:12px;
border:1px solid #E3E8F2;
}

.panel-blue{
background:#5FB3FF;
color:white;
}

.panel-red{
background:#E94E3C;
color:white;
}

footer{
padding:40px;
background:#F4F7FB;
text-align:center;
}
