:root{
--navy:#18304f;
--cream:#f8f4ed;
--gold:#cbb58d;
--dark:#111;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
line-height:1.6;
color:var(--dark);
background:#fff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #eee;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.brand{
font-size:1.6rem;
font-weight:700;
color:var(--navy);
}

nav a{
text-decoration:none;
margin-left:20px;
color:var(--dark);
font-weight:500;
}

.nav-btn{
background:var(--navy);
color:white;
padding:10px 16px;
border-radius:6px;
}

.hero{
padding:80px 0;
text-align:center;
background:linear-gradient(
180deg,
#ffffff,
#faf8f5
);
}

.hero-logo{
width:100%;
max-width:500px;
margin-bottom:30px;
}

.hero h1{
font-size:3rem;
color:var(--navy);
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
font-size:1.1rem;
margin-bottom:30px;
}

.btn{
display:inline-block;
background:var(--navy);
color:white;
text-decoration:none;
padding:16px 34px;
border-radius:6px;
font-weight:700;
}

.section{
padding:80px 0;
text-align:center;
}

.alt{
background:#f9f9f9;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.cta{
padding:80px 0;
text-align:center;
background:var(--navy);
color:white;
}

.cta .btn{
background:white;
color:var(--navy);
margin-top:20px;
}

footer{
padding:60px 0;
text-align:center;
}

.socials{
margin:20px 0;
}

.socials a{
margin:0 10px;
text-decoration:none;
color:var(--navy);
font-weight:600;
}

.email a{
color:var(--navy);
text-decoration:none;
}

.copyright{
margin-top:20px;
font-size:.9rem;
color:#666;
}

@media(max-width:768px){

nav{
display:none;
}

.hero h1{
font-size:2rem;
}

.cards{
grid-template-columns:1fr;
}

.hero-logo{
max-width:350px;
}

}