
/* HERO */

.research-hero{
background:url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b") center/cover;
height:340px;
position:relative;
}

.research-overlay{
background:linear-gradient(rgba(15,76,129,0.9), rgba(15,76,129,0.85));
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

.research-content h1{
font-size:42px;
margin-bottom:10px;
}

.research-content p{
font-size:16px;
opacity:0.9;
}

/* SECTION */

.research-section{
padding:90px 0;
}

.research-section.light{
background:#f7fbff;
}

.research-container{
width:90%;
max-width:1150px;
margin:auto;
}

.research-container h2{
font-size:34px;
color:#0f4c81;
margin-bottom:15px;
position:relative;
}

.research-container h2::after{
content:'';
width:60px;
height:3px;
background:#1fb6a6;
display:block;
margin-top:8px;
}

.research-container p{
color:#555;
line-height:1.8;
margin-bottom:15px;
}

/* GRID */

.research-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:30px;
}

.research-card{
background:#fff;
padding:28px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.research-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.research-card h3{
color:#0f4c81;
margin-bottom:10px;
}

/* LIST */

.research-list{
list-style:none;
padding:0;
margin-top:20px;
}

.research-list li{
margin-bottom:12px;
padding-left:28px;
position:relative;
color:#444;
}

.research-list li::before{
content:"\f058";
font-family:"Font Awesome 6 Free";
font-weight:900;
position:absolute;
left:0;
top:2px;
color:#1fb6a6;
}

/* CTA */

.research-cta{
background:#0f4c81;
color:#fff;
padding:90px 0;
text-align:center;
}

.research-cta h2{
font-size:32px;
margin-bottom:10px;
}

.research-cta a{
background:#1fb6a6;
padding:12px 30px;
border-radius:30px;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.research-cta a:hover{
background:#17a398;
transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:900px){

.research-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.research-grid{
grid-template-columns:1fr;
}

.research-content h1{
font-size:28px;
}

}
