body{
font-family:'Inter', sans-serif;
margin:0;
color:#333;
background:#f9fbfc;
}

h1,h2,h3{
font-family:'Playfair Display',serif;
}

/* NAVBAR */

.navbar{
background:white;
border-bottom:1px solid #eee;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
}

.logo{
font-size:24px;
font-weight:600;
color:#2A6F97;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#2A6F97;
}

/* HERO */

.hero{
max-width:1100px;
margin:auto;
padding:70px 20px;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.hero-content{
max-width:500px;
}

.hero h1{
font-size:42px;
color:#014F86;
}

.hero-button{
display:inline-block;
margin-top:20px;
background:#2A6F97;
color:white;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
}

.hero-image img{
width:320px;
max-width:100%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* SERVICES */

.services{
padding:80px 20px;
text-align:center;
background:white;
}

.services h2{
font-size:34px;
margin-bottom:40px;
color:#014F86;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.service-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.2s;
}

.service-card:hover{
transform:translateY(-6px);
}

/* ABOUT */

.about{
padding:80px 20px;
background:#E8F4F8;
}

.about-container{
max-width:900px;
margin:auto;
text-align:center;
}

.about h2{
font-size:34px;
color:#014F86;
}

/* TESTIMONIAL */

.testimonials{
background:#2A6F97;
color:white;
text-align:center;
padding:80px 20px;
}

.testimonial{
font-size:22px;
max-width:700px;
margin:auto;
font-style:italic;
}

.author{
margin-top:15px;
}

/* NEWSLETTER */

.newsletter{
text-align:center;
padding:80px 20px;
}

.newsletter input{
padding:12px;
width:250px;
margin-right:10px;
border:1px solid #ccc;
}

.newsletter button{
background:#2A6F97;
color:white;
border:none;
padding:12px 22px;
cursor:pointer;
}

/* FOOTER */

footer{
background:#014F86;
color:white;
text-align:center;
padding:35px;
margin-top:40px;
}

.hero{
width:100%;
background:linear-gradient(135deg,#E8F4F8,#ffffff);
padding:100px 20px;
display:flex;
justify-content:center;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.hero-card{
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
max-width:450px;
}

.hero-card h1{
font-size:40px;
color:#014F86;
margin-top:0;
}

.hero-image img{
width:320px;
border-radius:14px;
box-shadow:0 12px 30px rgba(0,0,0,0.2);
}