/*--------------------------------------------------
  CSS RESET & BASELINE
---------------------------------------------------*/
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, 
main, 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #ECEFF1;
  color: #214974;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #0FA36B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #214974;
  text-decoration: underline;
  outline: none;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 30px;
  padding: 12px 30px;
  background: #0FA36B;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px 0 rgba(33,73,116,0.12);
  margin: 6px 0;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus {
  background: #214974;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px 0 rgba(15,163,107,0.18);
}
.download-btn {
  background: #214974;
  color: #fff;
  padding: 7px 18px;
  font-size: 0.98rem;
  border-radius: 18px;
  margin-left: 10px;
  transition: background 0.22s;
}
.download-btn:hover {
  background: #0FA36B;
}

/*--------------------------------------------------
  TYPOGRAPHY (creative_artistic)
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  color: #214974;
  margin-bottom: 16px;
  line-height: 1.17;
  font-weight: 800;
}
h1 {
  font-size: 2.1rem;
  color: #0FA36B;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px #ECEFF1, 0 1px 0 #0e8d5f4d;
}
h2 {
  font-size: 1.5rem;
  color: #214974;
  margin-bottom: 12px;
  font-weight: 800;
  position: relative;
  letter-spacing: 0.06em;
}
h3 {
  font-size: 1.18rem;
  color: #0FA36B;
  margin-bottom: 10px;
}
p, li, label, input, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #214974;
  margin-bottom: 9px;
}
strong {
  font-weight: 700;
  color: #0FA36B;
}
.tag {
  display: inline-block;
  padding: 3px 13px;
  background: #0FA36B;
  color: #fff;
  border-radius: 14px;
  font-size: 0.85rem;
  margin-right: 7px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/*--------------------------------------------------
  LAYOUT CONTAINERS (Flexbox only)
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1132px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 40px 0 rgba(33,73,116,0.08);
  position: relative;
}

/* Section variant for Hero */
.hero {
  background: #214974;
  color: #fff;
  border-radius: 0 0 48px 48px;
  min-height: 260px;
  box-shadow: 0 7px 42px 0 rgba(33,73,116,0.10);
}
.hero h1, .hero h2, .hero p, .hero a {
  color: #fff;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}

.values img, .features img, .about img, .contact img, .info img, .case-study-card img, .testimonial-card img, .hero img {
  width: 36px;
  height: 36px;
  margin-right: 14px;
}

/*--------------------------------------------------
  FLEXBOX LAYOUTS (MANDATORY PATTERNS)
---------------------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 310px;
  padding: 26px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 28px rgba(33,73,116,0.10);
  transition: box-shadow 0.2s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 12px 38px rgba(15, 163, 107, 0.11);
  transform: translateY(-4px) scale(1.028);
}
.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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6faf9;
  border: 2px solid #eceff1;
  box-shadow: 0 2px 14px 0 rgba(15,163,107,0.06);
  border-radius: 20px;
  margin: 0 0 24px 0;
  min-width: 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features ul, .about ul, .values ul, .knowledge ul, .resources ul, .team ul, .info ul, .contact ul, .faq ul, .blog-list ul {
  padding-left: 0;
  margin-left: 0;
}
.features ul li, .about ul li, .values ul li, .knowledge ul li, .resources ul li, .team ul li, .info ul li, .contact ul li, .faq ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1.02rem;
  color: #214974;
}
.case-study-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(15,163,107,0.10);
  margin-bottom: 24px;
  padding: 20px 28px;
  flex: 1 1 310px;
}

.blog-list .blog-article {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  background: #ECEFF1;
  border-radius: 19px;
  margin-bottom: 22px;
  box-shadow: 0 1px 10px 0 rgba(33,73,116,0.06);
  padding: 20px 24px 14px 24px;
  gap: 6px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-list .blog-article:hover {
  box-shadow: 0 6px 21px 0 rgba(15,163,107,0.10);
  transform: translateY(-2px) scale(1.016);
}

.blog-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

/*************
 FONT AWESOME
**************/
select, input, textarea {
  border: 1.5px solid #21497421;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 7px;
  font-size: 1rem;
  background: #fff;
  color: #214974;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.18s;
}
select:focus, input:focus, textarea:focus {
  border: 1.5px solid #0FA36B;
  outline: none;
}

/****************************************************
 HEADER & MAIN NAVIGATION
*****************************************************/
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(33,73,116,0.06);
  padding: 0;
  z-index: 30;
  position: relative;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 20px 0 10px 0;
}
nav img {
  height: 42px;
  margin-right: 30px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  color: #214974;
  text-transform: none;
  font-size: 1.12rem;
  padding: 5px 11px;
  border-radius: 18px;
  transition: background 0.15s, color 0.18s;
}
nav a:hover, nav a.active {
  background: #0FA36B;
  color: #fff;
}
nav a.cta-btn {
  background: #0FA36B;
  color: #fff;
  box-shadow: 0 1px 9px 0 rgba(15,163,107,0.15);
  margin-left: 16px;
}
nav a.cta-btn:hover {
  background: #214974;
  color: #fff;
}

/*************
 MOBILE MENU BUTTON
**************/
.mobile-menu-toggle {
  background: #0FA36B;
  color: #fff;
  border: none;
  font-size: 2.05rem;
  padding: 3px 16px 3px 9px;
  border-radius: 32px;
  margin-left: auto;
  display: none;
  cursor: pointer;
  box-shadow: 0 2px 13px 0 rgba(33,73,116,0.14);
  transition: background 0.18s, transform 0.2s;
}
.mobile-menu-toggle:hover {
  background: #214974;
  color: #fff;
  transform: scale(1.09);
}

/*************
 MOBILE NAVIGATION MENU (SLIDE)
**************/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 73, 116, 0.96);
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.5,1,0.58,1.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 6px 32px 0 rgba(15,163,107,0.13);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 2030;
  cursor: pointer;
  transition: color 0.17s, transform 0.17s;
}
.mobile-menu-close:hover {
  color: #0FA36B;
  transform: scale(1.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 62px;
  align-items: flex-start;
  gap: 0;
}
.mobile-nav a {
  display: block;
  width: 100vw;
  padding: 16px 32px;
  font-size: 1.16rem;
  border-bottom: 1.5px solid #0e704b1a;
  color: #fff;
  background: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #0FA36B;
  color: #fff;
}

/****************************************************
 FOOTER
*****************************************************/
footer {
  background: linear-gradient(90deg, #214974 85%, #0FA36B 100%);
  color: #fff;
  padding: 36px 0 16px 0;
  border-radius: 0 0 40px 40px;
  margin-top: 42px;
}
footer nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  margin-right: 13px;
  border-radius: 14px;
  padding: 4px 11px;
  transition: background 0.16s;
}
footer nav a:hover {
  background: #0FA36B;
}
footer p {
  color: #fff;
  font-size: 0.98rem;
  margin: 2px 0 10px 0;
}

/*--------------------------------------------------
  COOKIE CONSENT BANNER
---------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #214974;
  color: #fff;
  padding: 22px 26px;
  box-shadow: 0 -4px 35px 0 rgba(33,73,116,0.22);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  animation: bannerSlideUp 0.6s ease;
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 7px;
}
.cookie-btn {
  background: #0FA36B;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 7px 0 rgba(15,163,107,0.15);
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.21s, transform 0.2s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #214974;
  border: 2px solid #0FA36B;
}
.cookie-btn:hover {
  background: #214974;
  color: #fff;
}

/******************
 COOKIE MODAL
*******************/
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: #fff;
  color: #214974;
  border-radius: 22px;
  box-shadow: 0 6px 38px 0 rgba(33,73,116,0.17);
  padding: 36px 34px 30px 34px;
  min-width: 320px;
  z-index: 1234123;
  display: none;
  animation: modalFadeIn 0.32s;
}
.cookie-modal.open {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translate(-50%,-56%) scale(0.86); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1.0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal label.switch {
  margin-left: auto;
}
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #ECEFF1;
  border-radius: 13px;
  transition: .3s;
}
.switch input:checked + .slider {
  background: #0FA36B;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(15,163,107,0.09);
  transition: .3s;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}

.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 9px;
  justify-content: flex-end;
}

/**********************************************************
    ARTISTIC(creative) ICONS, HIGHLIGHTS, DECORATION
***********************************************************/
.hero::before {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  background: #0FA36B;
  width: 120px;
  height: 80px;
  border-radius: 60px 160px 0 0;
  opacity: 0.13;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  left: -30px; top: 0;
  width: 83px; height: 62px;
  background: #214974;
  opacity: 0.09;
  border-radius: 56px 52px 33px 44px;
  z-index: 0;
}
.section::before {
  content: '';
  position: absolute;
  top: 30px; right: 24px;
  width: 34px; height: 34px;
  background: #0FA36B;
  border-radius: 16px 18px 34px 28px;
  opacity: 0.07;
  z-index: 0;
}
.section > * {
  position: relative;
  z-index: 1;
}

/**********************************************************
    MICROINTERACTIONS & HOVERS
***********************************************************/
.card, .case-study-card, .testimonial-card, .blog-article {
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover, .case-study-card:hover {
  box-shadow: 0 12px 48px 0 rgba(33,73,116,0.20);
  transform: translateY(-4px) scale(1.025);
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(15,163,107,0.15);
  transform: translateY(-4px) scale(1.017);
}

/**********************************************************
    RESPONSIVE ADAPTATION
***********************************************************/
@media (max-width: 1050px) {
  .container {
    max-width: 97vw;
    padding: 0 7px;
  }
  nav img {
    margin-right: 7px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  nav {
    gap: 6px;
    padding-bottom: 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  section {
    padding: 34px 6px;
    margin-bottom: 38px;
  }
  .hero {
    min-height: unset;
    border-radius: 0 0 25px 25px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .case-study-card, .card, .testimonial-card, .blog-list .blog-article {
    flex: 1 1 100%;
    padding: 17px 12px;
    min-width: 0;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin: 20px 12px 10px auto;
    z-index: 512;
  }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  section { border-radius: 13px; }
  .hero { border-radius: 0 0 12px 12px; padding: 27px 4px; }
  footer {
    padding: 22px 0 12px 0;
    border-radius: 0 0 13px 13px;
    font-size: 0.98rem;
  }
  .cookie-banner { padding: 14px 9px 16px 9px; }
  .cookie-modal { padding: 18px 6px 24px 6px; min-width: 85vw; max-width: 97vw; }
}
@media (max-width: 750px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 530px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: 1.06rem; }
}

/**********************************************************
    ADDITIONAL ARTISTIC/CREATIVE STYLE TOUCHES
***********************************************************/
section {
  border: 2.5px solid #0FA36B18;
  box-shadow: 0 5px 36px 0 rgba(33,73,116,0.07), 0 3px 9px 0 #0FA36B12;
}
::-webkit-input-placeholder { color: #214974A6; }
::-moz-placeholder { color: #214974A6; }
:-ms-input-placeholder { color: #214974A6; }
::placeholder { color: #214974A6; }

/**********************************************************
    THANK YOU PAGE
***********************************************************/
.thankyou {
  background: #f6faf9;
  text-align: center;
  border: 2.5px solid #0FA36B27;
}
.thankyou h1 {
  color: #214974;
  margin-bottom: 13px;
}
.thankyou ul {
  text-align: left;
  margin: 0 auto 16px auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/***********************
  Z-INDEX DECLARATIONS
***********************/
header, .mobile-menu-toggle { z-index: 4999; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 99999; }
.cookie-modal { z-index: 1234123; }
footer { z-index: 0; }

/**********************************************************
    FOCUS OUTLINE
***********************************************************/
a:focus, button:focus, .cta-btn:focus, select:focus {
  outline: 2px solid #0FA36B;
  outline-offset: 1.5px;
}

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