/* -----------------------
GLOBAL RESET
----------------------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#ffffff;
color:#222;
line-height:1.6;
}

/* -----------------------
HEADER
----------------------- */

.main-header{
background:#05a65f;
color:white;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
position:sticky;
top:0;
z-index:9999;
}

.logo{
font-size:20px;
font-weight:bold;
}
.logo img {
  height: 3.5em;      /* matches old text size */
  width: auto;        /* keeps proportions */
  display: block;
}

/* -----------------------
NAVIGATION
----------------------- */

nav ul{
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

nav ul li{
position:relative;
}

nav ul li a{
color:white;
text-decoration:none;
padding:10px 12px;
display:block;
border-radius:5px;
}

nav ul li a:hover{
background:#0f5f3a;
}

/* -----------------------
DROPDOWN MENU
----------------------- */

.dropdown-menu{
display:none;
position:absolute;
top:40px;
left:0;
background:#0b3f28;
min-width:170px;
border-radius:6px;
overflow:hidden;
}

.dropdown-menu li a{
padding:10px 15px;
white-space:nowrap;
}

.dropdown:hover .dropdown-menu{
display:block;
}

/* -----------------------
HAMBURGER MENU
----------------------- */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* -----------------------
HERO SECTION
----------------------- */

.hero{
height:80vh;
background:url("images/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,150,70,0.5);
}

.hero-content{
position:relative;
color:white;
max-width:700px;
padding:20px;
}
.hero-content img {
  height: 15.5em;      /* matches old text size */
}

.hero h1{
font-size:44px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

/* -----------------------
BUTTON
----------------------- */

.btn{
background:#00a050;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
display:inline-block;
font-weight:bold;
}

.btn:hover{
background:#008040;
}

/* -----------------------
SECTIONS
----------------------- */

section{
max-width:1100px;
margin:auto;
padding:60px 20px;
}

section h2{
margin-bottom:30px;
text-align:center;
}

/* -----------------------
GRID LAYOUT
----------------------- */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

/* -----------------------
SERVICE CARDS
----------------------- */

.card{
padding:25px;
border:1px solid #eee;
border-radius:10px;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card h3{
margin-bottom:10px;
}

/* -----------------------
PRICING
----------------------- */

.pricing{
text-align:center;
}

.price-card{
border:1px solid #ddd;
padding:30px;
border-radius:10px;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.price-card h2{
margin:15px 0;
color:#00a050;
}

/* -----------------------
CONTACT FORM
----------------------- */

form{
max-width:500px;
margin:auto;
}

input, textarea{
width:100%;
padding:12px;
margin-top:10px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;
}

textarea{
min-height:120px;
}

button{
margin-top:15px;
padding:12px 25px;
background:#00a050;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#008040;
}

/* -----------------------
FOOTER
----------------------- */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* -----------------------
GREEN BACKGROUND PAGES
(contact + pricing)
----------------------- */

.green-page{
background:#0f5f3a;
min-height:100vh;
}

.green-page section{
background:white;
border-radius:10px;
padding:40px;
}

/* -----------------------
MOBILE RESPONSIVE
----------------------- */

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
width:100%;
}

nav.show{
display:block;
}

nav ul{
flex-direction:column;
width:100%;
background:#0b3f28;
}

nav ul li{
width:100%;
}

nav ul li a{
padding:15px;
}

.dropdown-menu{
position:static;
display:block;
background:#0f5f3a;
border-radius:0;
}

.hero{
height:70vh;
}

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

.hero p{
font-size:16px;
}

section{
padding:40px 15px;
}

}
/* FOOTER */

.site-footer{
background:#111;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* WHITE CONTENT BOX ON GREEN BACKGROUND */

.white-box{
background:white;
border-radius:12px;
padding:50px;
max-width:1100px;
margin:60px auto;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}
.contact-grid{
display:flex;
gap:40px;
align-items:flex-start;
}

.contact-left{
flex:1;
}

.contact-right{
flex:1;
}

.contact-left h2{
margin-bottom:15px;
}

.contact-left p{
margin-bottom:20px;
}

.contact-left ul li{
margin-bottom:8px;
}

/* MOBILE STACKING */

@media (max-width:768px){

.contact-grid{
flex-direction:column;
}


```