/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f3f9ee;
  color: #143050;
  line-height: 1.6;
}
a {
  color: #37823b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #143050;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
:focus-visible {
  outline: 2px dashed #37823b;
  outline-offset: 1px;
}

/* VARIABLES (for fallback) */
:root {
  --primary: #37823b;
  --secondary: #143050;
  --accent: #f3f9ee;
  --white: #fff;
  --shadow: 0 4px 24px rgba(20,48,80,0.07), 0 2px 8px rgba(55,130,59,0.06);
  --radius: 18px;
  --gap: 24px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #143050;
  letter-spacing: -0.5px;
  margin-bottom: 0.5em;
  line-height: 1.16;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.65em;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, li, ul {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #143050;
  margin-bottom: 1em;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: #37823b;
}


/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* NAVBAR */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #143050;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #37823b;
}
.main-nav a.active:after {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: #37823b;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  background: #37823b;
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background .22s, box-shadow 0.20s, color .17s;
  margin-left: 28px;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #143050;
  color: #fff;
  box-shadow: 0 2px 16px rgba(20,48,80,0.12);
}

/* BURGER MENU */
.mobile-menu-toggle {
  background: #143050;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  cursor: pointer;
  margin-left: 20px;
  transition: background .18s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #37823b;
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 100px rgba(20,48,80,0.12);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 34px 28px 34px;
  justify-content: flex-start;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  margin: 27px 0 16px auto;
  font-size: 2.3rem;
  background: transparent;
  color: #143050;
  border: none;
  cursor: pointer;
  transition: color .21s;
  align-self: flex-end;
  z-index: 203;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #37823b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.21rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: #143050;
  padding: 11px 0;
  border-radius: 7px;
  transition: background .17s, color .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #37823b;
  background: #f3f9ee;
}

/* HERO */
.hero {
  background: #143050 url('../assets/hero-bg.svg') no-repeat right top;
  color: #fff;
  padding: 72px 0 48px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero h1 {
  color: #fff;
  font-size: 2.9rem;
  margin-bottom: 16px;
}
.hero p {
  color: #f3f9ee;
  font-size: 1.175rem;
}
.hero .cta-btn {
  margin-left: 0;
  box-shadow: 0 4px 32px rgba(78, 190, 96, 0.22);
  background: #37823b;
  color: #fff;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #f3f9ee;
  color: #143050;
}

/* FLEX LAYOUTS / SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
  flex: 1 1 320px;
  min-width: 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 44px rgba(55,130,59,0.12);
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 29px;
  margin-bottom: 12px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  gap: 12px;
  padding: 28px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s,transform 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 44px rgba(20,48,80,0.13);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  background: #f3f9ee;
  border-radius: 10px;
  padding: 7px;
  width: 38px;
  height: 38px;
}

/* SERVICES LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}
.service-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 260px;
  padding: 24px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .17s;
}
.service-list li:hover {
  box-shadow: 0 8px 44px rgba(20,48,80,0.13);
  transform: translateY(-3px) scale(1.025);
}
.service-list h2, .service-list h3 {
  color: #37823b;
  font-size: 1.24rem;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 700;
}
.service-price {
  background: #37823b;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 5px 18px;
  margin-top: 11px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* ARTICLE PREVIEWS (GUIDE) */
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}
.article-previews > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 270px;
  min-width: 220px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  transition: box-shadow .16s, transform .16s;
}
.article-previews > div:hover {
  box-shadow: 0 8px 32px rgba(20,48,80,0.15);
  transform: translateY(-4px) scale(1.024);
}
.article-previews h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #143050;
}
.article-previews a {
  color: #37823b;
  font-weight: 600;
  font-family: var(--font-body);
  margin-top: 5px;
}

/* TEAM LIST / CONTACT INFO */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.team-member {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 23px 18px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
.contact-info {
  margin-bottom: 24px;
}
.contact-info li {
  margin-bottom: 7px;
  font-size: 1.05em;
}
.map-container {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 18px;
}

.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.download-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 1.08em;
}

/* FAQ LIST (GUIDE) */
.faq-list h2 {
  font-size: 1.14rem;
  color: #37823b;
  margin-top: 22px;
  margin-bottom: 7px;
  font-weight: 700;
}
.faq-list p {
  margin-bottom: 12px;
}

/* PROJECTS (REALIZATIONS) */
.project-overview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
}
.project-overview h2 {
  font-size: 1.18rem;
  color: #37823b;
  margin-bottom: 13px;
}
.project-overview ul {
  margin-bottom: 0;
}
.project-overview li {
  margin-bottom: 6px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 24px 20px;
  background: #fff;
  color: #143050;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
  font-size: 1.05em;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 24px rgba(55,130,59,0.07), 0 8px 40px rgba(20,48,80,0.13);
  transform: translateY(-2.5px) scale(1.014);
}
.client-name {
  font-weight: 700;
  color: #37823b;
  font-size: 1em;
  margin-top: 5px;
}

/* CTA SECTION */
.cta {
  padding: 54px 0;
  background: #37823b;
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 0;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
}
.cta .cta-btn {
  margin-top: 22px;
  background: #fff;
  color: #37823b;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(20,48,80,0.09);
  border: 2px solid #fff;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #143050;
  color: #fff;
  border-color: #143050;
}

/* FOOTER */
footer {
  background: #143050;
  color: #f3f9ee;
  padding: 44px 0 28px 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.footer-nav nav {
  display: flex;
  gap: 30px;
}
.footer-nav a {
  color: #f3f9ee;
  font-weight: 700;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #67c279;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.98em;
  opacity: 0.89;
  letter-spacing: 0.02em;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  color: #143050;
  box-shadow: 0 -4px 32px rgba(20,48,80,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 32px;
  font-size: 1.04em;
  border-top: 1.5px solid #e6ece2;
  transition: transform .27s;
}
.cookie-banner .cookie-text {
  flex: 1 1 0%;
  min-width: 160px;
  max-width: 520px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 23px;
  border-radius: 7px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: background .16s, color .12s;
}
.cookie-accept {
  background: #37823b;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #143050;
}
.cookie-reject {
  background: #143050;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #37823b;
}
.cookie-settings {
  background: #fff;
  border: 1.5px solid #143050;
  color: #143050;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f3f9ee;
  border-color: #37823b;
  color: #37823b;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,48,80, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(20,48,80,0.27);
  padding: 36px 33px 25px 33px;
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  align-items: flex-start;
  animation: slide-down-modal .32s cubic-bezier(.68,-0.32,.27,1.28);
}
@keyframes slide-down-modal {
  from { transform: translateY(-48px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-inner h2 {
  font-size: 1.36rem;
  color: #143050;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.07em;
}
.cookie-category label {
  cursor: pointer;
  color: #143050;
}
.cookie-category input[type=checkbox] {
  accent-color: #37823b;
  width: 19px; height: 19px;
  margin-right: 2px;
}
.cookie-category .always-on {
  color: #37823b;
  font-size: 1em;
  font-weight: bold;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: transparent;
  color: #143050;
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #37823b;
}

/* SECTIONS/ TEXT SECTIONS */
.text-section {
  max-width: 740px;
  margin: 0 auto;
  padding: 22px;
}
.text-section h1 {
  color: #37823b;
  font-size: 2.25rem;
}
.text-section h2 {
  color: #143050;
}
.text-section ul {
  list-style: disc inside;
  padding-left: 22px;
  margin-bottom: 18px;
}
.text-section ul li {
  font-size: 1.02em;
  margin-bottom: 8px;
  color: #143050;
}
.text-section a {
  color: #37823b;
  font-weight: 600;
  border-bottom: 1.5px solid #37823b;
  transition: border-color .13s;
}
.text-section a:hover, .text-section a:focus {
  color: #143050;
  border-color: #143050;
}

/* GENERAL BUTTONS */
button, .button, .btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 11px 28px;
  cursor: pointer;
  border: none;
  transition: background .18s, color .15s, box-shadow .21s;
  background: #37823b;
  color: #fff;
}
button:hover, .btn:hover, .button:hover, button:focus, .btn:focus {
  background: #143050;
  color: #fff;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
  .container { max-width: 92vw; }
  .feature-grid, .service-list, .card-container, .team-list, .download-list, .article-previews {
    gap: 18px;
  }
}
@media (max-width: 940px) {
  .nav-bar { flex-wrap: wrap; }
  .feature-grid, .service-list {
    gap: 14px;
  }
  .main-nav { gap: 16px; }
}
@media (max-width: 860px) {
  .footer-nav nav, .feature-grid, .service-list, .download-list, .team-list, .article-previews {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .feature-grid, .service-list, .download-list, .team-list, .article-previews {
    flex-direction: column;
    gap: 13px;
  }
  .card, .feature-grid li, .service-list li, .team-member, .download-list li, .article-previews > div {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .footer-info, .footer-nav nav {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 16px 8px; }
  .cookie-banner .cookie-actions { gap: 9px; }
}
@media (max-width: 520px) {
  html {
    font-size: 15px;
  }
  .container { padding: 0 6px; }
  .hero {
    padding: 54px 0 24px 0;
    min-height: 480px;
  }
  .cta {
    padding: 29px 0;
    border-radius: 14px;
  }
  .cookie-modal-inner {
    padding: 22px 6px 16px 10px;
    min-width: 0;
  }
}

/* ANIMATIONS / MICROINTERACTIONS */
.cta-btn, button, .btn, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.14s, box-shadow .17s, border-color .12s;
}
.feature-grid li, .service-list li, .article-previews > div, .testimonial-card, .card {
  transition: box-shadow 0.15s, transform 0.14s;
}
.mobile-menu, .cookie-modal {
  transition: transform 0.37s cubic-bezier(.7,-0.45,.17,1.18), opacity .25s;
}

/* UTILITIES */
.mb-20 { margin-bottom: 20px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mb-60 { margin-bottom: 60px!important; }
.pt-34 { padding-top: 34px!important; }
.pb-34 { padding-bottom: 34px!important; }
.flex-centered { display: flex; align-items: center; justify-content: center; }

/* High contrast for testimonials & reviews as cards (dark text on light bg) already set above */

/* Hide accessibility text when not needed */
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; border: 0!important; }

/* END CSS */
