/* --- RESET & BASE --- */
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,
u, i, center,
dl, dt, dd, menu, 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,  
main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,  
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F3F4F8;
  color: #153055;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #153055;
  text-decoration: none;
  transition: color 0.15s;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #153055;
  margin-bottom: 12px;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
}
p, li, blockquote {
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  background: #F3F4F8;
  border-left: 4px solid #47A985;
  margin-bottom: 12px;
  padding: 12px 16px;
}

.subheadline {
  font-size: 1.2rem;
  color: #47A985;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(21,48,85,0.08);
}

/* HERO SECTION */
.hero {
  background: #153055;
  color: #fff;
  padding: 60px 0;
  clip-path: polygon(0 0, 100% 0%, 100% 89%, 0 100%);
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero .subheadline {
  color: #fff;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(21,48,85,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 18px;
}
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  color: #153055;
  transition: background 0.18s, color 0.18s;
}
.site-nav a:hover,
.site-nav a:focus {
  background: #F3F4F8;
  color: #47A985;
}
.primary-cta {
  background: #47A985;
  color: #fff!important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  box-shadow: 0 2px 7px 0 rgba(21,48,85,0.07);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #153055;
  color: #fff!important;
  box-shadow: 0 4px 18px 0 rgba(21,48,85,0.12);
}

/* Hamburger Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #153055;
  color: #fff;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  padding: 4px 16px 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  z-index: 51;
  position: relative;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #47A985;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 32px 32px 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 350px;
  height: 100vh;
  background: #153055;
  box-shadow: 2px 0 32px 0 rgba(21,48,85,0.19);
  transform: translateX(-120%);
  transition: transform 0.38s cubic-bezier(.27,.73,.33,1.02);
  z-index: 101;
  pointer-events: none;
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #47A985;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.13rem;
  padding: 10px 2px;
  border-radius: 7px;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #47A985;
  color: #153055;
}

/* Hide desktop nav/show mobiletoggle on mobile */
@media (max-width: 992px) {
  .site-nav,
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
}

/* --- FLEXBOX LAYOUTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px 0 rgba(21,48,85,0.065);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 2.5px solid #F3F4F8;
  transition: border-color 0.19s, box-shadow 0.19s, transform 0.21s;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #47A985;
  box-shadow: 0 5px 26px 0 rgba(71,169,133,0.15);
  transform: translateY(-2.5px) scale(1.017);
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item h3 {
  font-size: 1.18rem;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.sector-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px 0 rgba(21,48,85,0.07);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  max-width: 290px;
  flex: 1 1 180px;
  border: 2.5px solid #F3F4F8;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.16s;
}
.sector-item:hover {
  box-shadow: 0 8px 24px 0 rgba(71,169,133,0.13);
  border-color: #47A985;
  transform: scale(1.018);
}
.sector-item img {
  width: 44px;
  height: 44px;
}

.blog-highlight .recent-articles,
.blog-highlight .news-highlights {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(21,48,85,0.07);
  padding: 18px 20px;
  margin-bottom: 14px;
}
.blog-highlight {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.case-example {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(21,48,85,0.06);
  padding: 23px 20px;
  margin-bottom: 20px;
}
.project-case {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(21,48,85,0.07);
  padding: 26px 24px;
  margin-bottom: 20px;
  border-left: 6px solid #47A985;
}
.impact-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.impact-metrics li {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #153055;
  background: #f4f4fa;
  padding: 13px 24px;
  border-radius: 13px;
  min-width: 120px;
  text-align: center;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(21,48,85,0.08);
  padding: 32px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
}

/* Testimonial Cards - strong contrast! */
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonials {
  background: #F3F4F8;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(21,48,85,0.05);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(21,48,85,0.08);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #47A985;
  color: #153055;
}
.testimonial-card blockquote {
  color: #153055;
  background: none;
  border-left: none;
  margin: 0;
  font-size: 1.11rem;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #47A985;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 17px;
  }
  .testimonial-meta {
    margin-left: 0;
    margin-top: 8px;
  }
}
.benefits ul,
.text-section ul,
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}

.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #153055;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(21,48,85,0.10);
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta-section .primary-cta {
  margin: 0 auto;
  margin-top: 8px;
}

.section, .benefits, .blog-highlight, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.resource-category {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(21,48,85,0.06);
  padding: 18px 16px;
  margin-bottom: 16px;
}
.faq-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(21,48,85,0.06);
  padding: 17px 15px;
  margin-bottom: 20px;
}

/* --- FOOTER --- */
footer {
  background: #153055;
  color: #fff;
  padding: 48px 0 32px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  justify-content: space-between;
  border-radius: 0 0 15px 15px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #47A985;
}
.footer-contact {
  font-size: 0.98rem;
  color: #bed6e1;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
footer a img, .footer-wrapper img {
  height: 37px;
  width: auto;
  margin-bottom: 14px;
  margin-top: 0;
  filter: brightness(0) invert(1);
}

/* --- CONTACT PAGE --- */
.contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(21,48,85,0.07);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.contact-info ul {
  gap: 8px;
  margin-bottom: 0;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.map-embed {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(21,48,85,0.07);
  padding: 17px 14px;
}
.next-steps ul {
  margin-bottom: 6px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1140px) {
  .container {
    max-width: 96vw;
  }
  .footer-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .feature-grid, .sector-list, .impact-metrics ul, .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer-wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 8px;
  }
  .hero, .section, .blog-highlight, .benefits, .testimonials, .cta-section {
    padding: 26px 7px;
    margin-bottom: 34px;
    border-radius: 11px;
  }
}
@media (max-width: 600px) {
  .feature-item, .sector-item, .project-case {
    padding: 16px 7px;
    min-width: unset;
    max-width: 98vw;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 7px;
  }
  .testimonials, .section, .blog-highlight, .cta-section {
    padding: 14px 3px;
    margin-bottom: 28px;
  }
  .impact-metrics ul {
    flex-direction: column;
    gap: 8px;
  }
  .content-wrapper {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- Microinteractions & Animations --- */
.feature-item, .sector-item, .card, .project-case, .case-example, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.16s, border-color 0.16s;
}
.primary-cta, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}

.primary-cta:active {
  transform: scale(0.98);
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #153055;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px;
  font-size: 1rem;
  z-index: 1200;
  box-shadow: 0 -2px 11px 0 rgba(21,48,85,0.09);
  transition: transform 0.36s cubic-bezier(.3,.65,.38,1), opacity 0.23s;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-accept, .cookie-reject, .cookie-settings-btn {
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.15s;
}
.cookie-accept {
  background: #47A985;
  color: #fff;
}
.cookie-accept:hover { background: #fff; color: #153055; }
.cookie-reject {
  background: #bed6e1;
  color: #153055;
}
.cookie-reject:hover { background: #fff; color: #153055; }
.cookie-settings-btn {
  background: #fff;
  color: #153055;
  border: 2px solid #47A985;
}
.cookie-settings-btn:hover {
  background: #47A985;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  background: rgba(21,48,85, 0.54);
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  z-index: 1220;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #153055;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(21,48,85,0.13);
  padding: 36px 26px 30px 26px;
  min-width: 280px;
  max-width: 97vw;
  min-height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popupfadein 0.38s cubic-bezier(.31,.72,.38,1.01);
}
@keyframes popupfadein {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: none;
  border: none;
  color: #153055;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.13s;
  padding: 2px 7px;
  line-height: 1;
}
.cookie-modal-close:hover {
  color: #47A985;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 9px;
}
.cookie-category .toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch span {
  display: block;
  width: 38px;
  height: 22px;
  background: #bed6e1;
  border-radius: 12px;
  transition: background 0.13s;
  position: relative;
}
.toggle-switch span:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px rgba(21,48,85,0.06);
}
.toggle-switch input:checked + span {
  background: #47A985;
}
.toggle-switch input:checked + span:before {
  transform: translateX(16px);
}

/* --- UTILITIES --- */
.hidden {
  display: none !important;
}

/* --- FORMATTING CLASSES --- */
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.gap-8  { gap: 8px;  }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* --- GEOMETRIC SHAPES / DECORATIVE ELEMENTS --- */
.hero .container { position: relative; }
.hero:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 46px;
  background: #47A985;
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

/********************
 FONT FACE, IF NEEDED
 ********************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
