body{
font-family: 'Open Sans', sans-serif;
margin:0;
background:#f8f9fb;
color:#333;
}

*{box-sizing:border-box;}

:root{
--site-banner: url('../images/site-banner.jpg');
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 80px;
background:
  linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.86)),
  var(--site-banner);
background-size:cover;
background-position:center;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

header .brand{
display:inline-flex;
align-items:center;
padding:10px 14px;
border-radius:14px;
background:rgba(255,255,255,.96);
box-shadow:0 10px 26px rgba(0,0,0,.10);
}

header img{
display:block;
height:140px;
width:auto;
filter:drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

nav a{
margin-left:25px;
text-decoration:none;
font-weight:600;
color:#333;
}

nav a:hover{
color:#1F7A3F;
}

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
  linear-gradient(140deg, rgba(11,24,18,.78), rgba(31,122,63,.72)),
  url('../images/hero.jpg');
background-size:cover;
background-position:center;
color:white;
}

.page-hero{
border-radius:16px;
padding:44px 40px;
color:#fff;
background-size:cover;
background-position:center;
box-shadow:0 10px 28px rgba(0,0,0,.14);
}

.page-hero h1{margin:0 0 10px;}
.page-hero p{max-width:70ch; margin:0;}

.page-hero--process{
background-image:
  linear-gradient(140deg, rgba(11,24,18,.78), rgba(31,122,63,.70)),
  url('../images/business-advisory.jpg');
}

.hero h1{
font-size:48px;
font-family:Poppins;
}

.hero p{max-width:58ch; margin:14px auto 0; font-size:18px; line-height:1.6;}

.btn{
background:#F4B400;
padding:14px 28px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:bold;
display:inline-block;
margin-top:20px;
}

.btn:hover{filter:brightness(.95);}

section{
padding:80px;
}

.process{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.services{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:12px;
display:block;
margin-bottom:16px;
}

.process-steps{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
margin-top:22px;
}

.step-card{
position:relative;
padding-top:22px;
}

.step-badge{
position:absolute;
top:-14px;
left:22px;
width:44px;
height:44px;
border-radius:999px;
display:grid;
place-items:center;
font-family:Poppins;
font-weight:600;
background:#1F7A3F;
color:#fff;
box-shadow:0 10px 22px rgba(0,0,0,.12);
}

.split{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:28px;
align-items:start;
margin-top:26px;
}

.panel{
background:#fff;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
padding:22px;
}

.panel h3{
font-family:Poppins;
margin:0 0 10px;
}

.cta{
margin-top:26px;
padding:26px;
border-radius:14px;
background:linear-gradient(140deg, rgba(31,122,63,.14), rgba(244,180,0,.10));
border:1px solid rgba(0,0,0,.06);
}

.flowchart{
background:#fff;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
padding:18px;
margin-top:22px;
overflow:hidden;
}

.flowchart svg{width:100%; height:auto; display:block;}

section h1{font-family:Poppins; font-size:36px; margin:0 0 10px;}
section h2{font-family:Poppins; font-size:30px; margin:0 0 18px;}
p{line-height:1.7;}
ul{line-height:1.7;}

form{
max-width:720px;
margin-top:18px;
display:grid;
gap:12px;
}

label{font-weight:600;}

input, textarea{
width:100%;
padding:12px 14px;
border:1px solid rgba(0,0,0,.12);
border-radius:10px;
font:inherit;
background:#fff;
}

textarea{min-height:160px; resize:vertical;}

footer{
background:#1F7A3F;
color:white;
padding:50px 80px;
}

footer a{color:white; text-decoration:underline; text-underline-offset:3px;}

@media(max-width:900px){

header{
padding:20px;
flex-wrap:wrap;
gap:12px;
}

header img{height:110px;}

header .brand{padding:8px 10px; border-radius:12px;}

section{
padding:40px;
}

.services,
.process{
grid-template-columns:1fr;
}

.process-steps{grid-template-columns:1fr;}
.split{grid-template-columns:1fr;}

.hero h1{
font-size:32px;
}

.hero{height:auto; padding:70px 20px;}

.page-hero{padding:28px 22px;}

}
