*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
background:#f5f5f0;
color:#2f3a34;
line-height:1.6;
}


/* NAVBAR (same as main page) */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
position:sticky;
top:0;
background:rgba(245,245,240,0.95);
backdrop-filter:blur(8px);
border-bottom:1px solid rgba(0,0,0,0.05);
z-index:1000;
}

.logo img{
height:142px;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#365c49;
}

nav{
display:flex;
gap:32px;
}

nav a{
text-decoration:none;
font-size:15px;
color:#44524b;
letter-spacing:0.4px;
position:relative;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:1px;
background:#365c49;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}



/* PAGE HERO */

.page-hero{
padding:140px 8% 80px 8%;
text-align:center;
}

.page-hero h1{
font-family:'Playfair Display', serif;
font-size:56px;
color:#3b5d4f;
margin-bottom:20px;
}

.page-hero p{
max-width:650px;
margin:auto;
color:#4b5751;
}



/* CONTENT SECTIONS */

.content-section{
padding:100px 8%;
max-width:900px;
margin:auto;
}

.content-section h2{
font-family:'Playfair Display', serif;
font-size:38px;
color:#3b5d4f;
margin-bottom:20px;
}

.content-section p{
margin-bottom:18px;
color:#4b5751;
}

.soft-bg{
background:#e4e7df;
border-radius:10px;
}



/* CTA */

.cta{
padding:120px 20%;
text-align:center;
background:#e4e7df;
}

.cta h2{
font-family:'Playfair Display', serif;
font-size:42px;
color:#3b5d4f;
margin-bottom:20px;
}

.cta-btn{
padding:16px 34px;
border:none;
background:#365c49;
color:white;
border-radius:30px;
cursor:pointer;
}



/* FOOTER */

.site-footer{
background:#2f3a34;
color:#e6ebe7;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
padding:80px 8%;
}

.footer-brand img{
height:142px;
margin-bottom:15px;
}

.footer-links a{
display:block;
text-decoration:none;
color:#cdd4cf;
margin-bottom:10px;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:25px;
font-size:13px;
color:#aab3ad;
}



/* MOBILE */

@media(max-width:900px){

.menu-toggle{
display:block;
}

nav{
position:absolute;
top:100%;
left:0;
width:100%;
background:#f5f5f0;
flex-direction:column;
align-items:center;
gap:20px;
padding:30px 0;
display:none;
}

nav.active{
display:flex;
}

.footer-container{
grid-template-columns:1fr;
gap:40px;
}

}