/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

/* BASE */
body{
font-family:system-ui,-apple-system;
background:#fff;
color:#222;
line-height:1.7;
}

/* SECTIONS */
section{
padding:60px 10%;
}

@media(max-width:768px){
section{padding:40px 5%}
}

/* HERO */
.hero{
height:100vh;
background:url('img/hero-banner.webp') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.hero-content{
background:rgba(11,46,74,.65);
padding:30px;
border-radius:12px;
max-width:600px;
}

.logo{
margin-bottom:15px;
}

.hero h1{font-size:28px;margin-bottom:10px}
.hero p{font-size:15px}

/* ABOUT */
.about{
background:#f7f7f7;
text-align:center;
}

.about p{
max-width:800px;
margin:10px auto;
}

/* SERVICES */
.services{
background:#0b2e4a;
color:#fff;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

@media(max-width:768px){
.services-grid{grid-template-columns:1fr}
}

/* CARD FIX */
.service-card{
aspect-ratio:3/2;
overflow:hidden;
border-radius:10px;
}

.service-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* CTA */
.cta{
background:url('img/hero-banner.webp') center/cover no-repeat;
text-align:center;
color:#fff;
}

.cta-buttons{
margin-top:20px;
display:flex;
justify-content:center;
gap:15px;
}

@media(max-width:768px){
.cta-buttons{flex-direction:column}
}

/* BUTTONS */
.btn{
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-size:14px;
display:inline-block;
}

.white{background:#fff;color:#000}
.blue{background:#459ad3;color:#fff}

/* FOOTER */
footer{
background:#0b2e4a;
color:#fff;
text-align:center;
padding:10px;
font-size:11px;
}