.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-736 .elementor-element.elementor-element-d38d497{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-widget-container .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-container .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-html .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-html .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-container .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-container .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-html .eael-protected-content-message{font-size:var( --e-global-typography-secondary-font-size );}.elementor-widget-html .protected-content-error-msg{font-size:var( --e-global-typography-secondary-font-size );}}/* Start custom CSS for html, class: .elementor-element-4d59e00 */```css
/* HEADER */
.gw-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

/* CONTAINER */
.gw-header .container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER INNER */
.gw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

/* LOGO */
.gw-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.gw-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.gw-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.gw-nav a {
  font-size: 15px;
  font-weight: 700;
  color: #111827 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.gw-nav a:hover,
.gw-nav a.active {
  color: #3A5B12 !important;
}

/* CTA BUTTON */
.gw-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: #3A5B12;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.gw-cta-btn:hover {
  background: #2f490f;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* SCROLL SHADOW */
.gw-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gw-header .container {
    width: 90%;
  }

  .gw-nav {
    display: none;
  }

  .gw-header-inner {
    height: 76px;
  }

  .gw-logo img {
    height: 48px;
  }
}

@media (max-width: 575px) {
  .gw-header .container {
    width: 92%;
  }

  .gw-logo img {
    height: 42px;
  }

  .gw-cta-btn {
    height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }
}
```/* End custom CSS */