:root{
  --green:#3E6947;
  --green-dark:#2d4f35;
  --text:#111;
  --muted:#555;
  --bg:#fff;
  --maxw:1100px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--maxw);padding:0 16px;margin:auto}

/* Header */
.site-header{background:var(--green);color:#fff;position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;gap:16px;min-height:64px; padding: 50px 16px 0 16px; }
.brand{display:flex;align-items:center;gap:12px}
.logo{height:44px;width:auto;display:block}
.logo-text{font-weight:700;font-size:20px;color:#fff}

/* Menu */
.nav{margin-left:320px; text-align:right; flex-grow:1; padding-top: 37px; position:relative;}
.menu{list-style:none;margin:0;padding:0;display:flex;gap:4px;justify-content:flex-end;}
.menu-item>a{display:block;padding:12px 8px;color:#fff;border-radius:6px}
.menu-item.is-active>a{background:rgba(255,255,255,.16);font-weight:700}
.menu-item.has-children{position:relative}

/* Top Menu (Login, Contact Us) - Desktop */
.top-menu{
  display:flex;
  gap:16px;
  position:absolute;
  top:-25px;
  right:8px;
}
.top-menu-link{
  color:#fff;
  padding:8px 0;
  font-weight:400;
  font-size:16px;
  text-decoration:none;
}
.top-menu-link:hover{
  text-decoration:underline;
}

/* Hide mobile-only menu items on desktop */
.menu-item.mobile-only{display:none;}

/* Hide certain menu items on mobile */
.menu-item.hide-on-mobile{display:flex;}
.submenu{
  list-style:none;margin:0;padding:8px 0;position:absolute;left:0;top:100%;
  min-width:200px;background:#fff;color:var(--text);border:1px solid #e6e6e6;border-radius:10px;
  box-shadow:0 6px 14px rgba(0,0,0,.08);display:none;
}
.menu-item.has-children:hover>.submenu{display:block}
.submenu-item>a{display:block;padding:8px 12px;color:var(--text)}
.submenu-item>a:hover{background:#f5f5f5}

/* Hamburger menu button - hidden on desktop */
.menu-toggle{display:none;}

/* Content area */
#content.container{padding:24px 16px}
.content h1{margin:0 0 12px 0;font-size:30px}
.content p{margin:0 0 12px 0;color:var(--muted)}

/* Footer */
.site-footer{background:var(--green);color:#fff;}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:16px;min-height:56px}
.footer-email{color:#fff;font-weight:600}

/* Mobile screens */
@media (max-width: 549px){
  /* Hide desktop top menu on mobile */
  .top-menu{display:none;}
  
  /* Show mobile-only menu items */
  .menu-item.mobile-only{display:block;}
  
  /* Hide items marked as hide-on-mobile */
  .menu-item.hide-on-mobile{display:none;}
  
  /* Reset nav positioning for mobile */
  .nav{margin-left:0; width:100%; padding-top:0; position:static;}
  
  /* Show hamburger menu button */
  .menu-toggle{
    display:block;
    position:absolute;
    top:0px;
    right:16px;
    background:none;
    border:none;
    color:#fff;
    font-size:50px;
    cursor:pointer;
    padding:8px;
    z-index:101;
  }
  
  /* Mobile menu - hidden by default */
  .menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:var(--green);
    padding:8px 16px;
    box-shadow:0 4px 6px rgba(0,0,0,.1);
  }
  
  /* Show menu when active */
  .menu.active{display:flex;}
  
  .menu-item>a{padding:12px 8px;}
  
  /* Submenu styling for mobile */
  .submenu{
    position:static;
    box-shadow:none;
    border:none;
    border-radius:0;
    padding:0 0 0 16px;
    background:transparent;
  }
  .submenu-item>a{padding:8px;color:#fff;}
  .submenu-item>a:hover{background:rgba(255,255,255,.16);}
}
/* Overhanging logo treatment */
.site-header{ overflow: visible; position: relative; }
.header-inner{ align-items: center; min-height: 150px; }

/* Position logo absolutely so it doesn't affect header height */
.brand{ 
  position: absolute;
  top: 0;
  left: 16px;
  z-index: 100;
}

.brand-wrap{ display: inline-block; position: relative; }

/* Make the logo larger and pull it below the green bar */
.logo{
  width: 297px;               /* custom size as requested */
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15)); /* subtle lift */
}

/* Give a bit more breathing room under the header so content isn't cramped */
#content.container{ padding-top: 110px; }

/* Mobile: reduce logo and header size */
@media (max-width: 549px){
  .logo{ width: 110px; }
  .header-inner{ min-height: 70px; }
  #content.container{ padding-top: 20px; }
}

/* Contact Page Styling */
.contact-page-full{
  background: var(--green);
  color: #fff;
  min-height: 500px;
  padding: 40px 16px 80px 16px;
}

.contact-wrapper{
  max-width: 980px;
  margin-left: 0px; /* Start content underneath logo */
}

.contact-header{
  margin-bottom: 30px;
}

.contact-title{
  color: #fff;
  font-size: 36px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.contact-content{
  background: var(--green);
  padding: 0;
}

.contact-person{
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.contact-photo{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-info h3{
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.contact-info p{
  color: #fff;
  margin: 5px 0;
  font-size: 18px;
}

.contact-info a{
  color: #fff;
  text-decoration: underline;
}

.contact-info a:hover{
  color: #e0e0e0;
}

/* Mobile contact page */
@media (max-width: 549px){
  .contact-page-full{
    padding: 40px 16px;
  }
  
  .contact-wrapper{
    margin-left: 0;
  }
  
  .contact-person{
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-photo{
    width: 120px;
    height: 120px;
  }
  
  .contact-title{
    font-size: 28px;
  }
  
  .contact-info h3{
    font-size: 20px;
  }
  
  .contact-info p{
    font-size: 16px;
  }
}

/* Shared Responsive Page Title Styles */
.page-title-responsive {
  padding: 25px 16px 0 20px;
}

.page-title-responsive h1 {
  color: #000;
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}

/* Shared Responsive Content Container Styles */
#content.container.page-content-responsive {
  padding-top: 15px;
}

/* Desktop: absolute title to clear logo, content clears logo vertically */
@media (min-width: 550px) {
  .page-title-responsive {
    position: absolute;
    left: 340px;
    top: 200px;
    z-index: 10;
    padding: 0;
  }
  
  .page-title-responsive h1 {
    font-size: 36px !important;
  }
  
  #content.container.page-content-responsive {
    padding-top: 150px;
  }
}
