/* CSS RESET & NORMALIZATION */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F4F7FB;
  color: #243447;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #243447;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6DD9B1;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
main {
  flex: 1;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243447;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
subheadline, .subheadline {
  font-size: 1.25rem;
  color: #3a4657;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 22px;
  display: block;
}

/* SPACING & CONTAINER PATTERNS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(36,52,71,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(36, 52, 71, 0.06);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(36, 52, 71, 0.1);
  transform: translateY(-2px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F4F7FB;
  border-left: 5px solid #6DD9B1;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(36,52,71,0.05);
}
.testimonial-card p {
  color: #243447;
  font-size: 1rem;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6DD9B1;
  font-weight: 600;
  font-size: 1.06em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(130deg, #F4F7FB 50%, #d7ede3 100%);
  border-radius: 0 0 40px 40px;
  padding: 50px 0 36px 0;
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 340px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6DD9B1;
  color: #243447;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 26px;
  min-height: 48px;
  min-width: 160px;
  padding: 0 36px;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(36, 52, 71, 0.07);
  transition: background 0.20s, box-shadow 0.20s, color 0.18s, transform 0.13s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #56c199;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(36, 52, 71, 0.12);
  text-decoration: none;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,52,71,0.02);
  padding-top: 0;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #243447;
  font-size: 1em;
  padding: 6px 15px;
  border-radius: 10px;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F7FB;
  color: #6DD9B1;
}
header .cta-button {
  margin-top: 0;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #243447;
  margin-left: 14px;
  background: none;
  border-radius: 8px;
  padding: 4px 17px 4px 11px;
  border: 0;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #6DD9B1;
  outline-offset: 2px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 16px rgba(36,52,71,0.13);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7,.3,.22,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #6DD9B1;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 18px 32px 8px 0;
  padding: 4px 10px;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #243447;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 0 32px;
}
.mobile-nav a {
  width: 90%;
  padding: 13px 0 13px 12px;
  font-size: 1.08em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243447;
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.18s, color 0.13s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F7FB;
  color: #6DD9B1;
}

/* SECTIONS & LISTS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper > ul, .content-wrapper > ol {
  margin-left: 20px;
  margin-bottom: 8px;
}
.content-wrapper li {
  margin-bottom: 8px;
  padding-left: 0px;
  font-size: 1rem;
}
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(36,52,71,0.05);
  margin-bottom: 22px;
  padding: 22px 24px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.case-study h2 {
  font-size: 1.25rem;
  margin-bottom: 9px;
  color: #243447;
}
.test-short {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6DD9B1;
  font-size: 1.04em;
  margin-bottom: 0;
  margin-top: 6px;
}
.faq {
  background: #F4F7FB;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 16px 22px;
  box-shadow: 0 1px 6px rgba(36,52,71,0.06);
}
.faq h3 {
  font-size: 1.10rem;
  margin-bottom: 7px;
  color: #243447;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq p {
  font-size: 0.99rem;
  line-height: 1.63;
}

/* BLOG STYLING */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.blog-post {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(36,52,71,0.07);
  min-width: 230px;
  flex: 1 1 236px;
  padding: 20px 18px 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.11s;
}
.blog-post:hover {
  box-shadow: 0 4px 20px rgba(36,52,71,0.11);
  transform: scale(1.02);
}
.category-list {
  margin-bottom: 14px;
  font-size: 0.98em;
  color: #243447;
}
.category-list a {
  color: #6DD9B1;
  padding: 1px 7px;
  transition: color 0.14s;
}
.category-list a:hover {
  color: #243447;
}
.search-bar {
  margin-bottom: 10px;
}
.search-bar input[type="text"] {
  border: 1.5px solid #d6e3ec;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1em;
  width: 96%;
  max-width: 340px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(36,52,71,0.04);
  transition: border-color 0.17s;
}
.search-bar input[type="text"]:focus {
  outline: none;
  border-color: #6DD9B1;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-details p, .contact-details a {
  font-size: 1.1em;
  color: #243447;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 7px;
}
.map-location {
  background: #F4F7FB;
  border-radius: 13px;
  margin-top: 14px;
  padding: 16px 14px;
  font-size: 0.97em;
  box-shadow: 0 1px 4px rgba(36,52,71,0.03);
}

/* FOOTER STYLING */
footer {
  background: #fff;
  border-top: 2px solid #d7ede3;
  padding: 36px 0 22px 0;
  margin-top: 34px;
  font-size: 0.98em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  flex: 2 1 240px;
  font-size: 1.06em;
  margin-bottom: 18px;
}
.footer-brand {
  flex: 1 1 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-contact {
  flex: 2 1 230px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 1em;
  color: #566b82;
  margin-bottom: 12px;
  align-items: flex-end;
}
.footer-contact p, .footer-contact a {
  color: #566b82;
  font-size: 1em;
  text-align: right;
}
.footer-nav nav a {
  color: #6DD9B1;
  margin-right: 8px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s;
}
.footer-nav nav a:hover {
  color: #243447;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10010;
  background: #fff;
  border-top: 2px solid #d7ede3;
  box-shadow: 0 -2px 24px rgba(36,52,71,0.13);
  padding: 18px 12px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(.71,0,.22,1), opacity 0.3s;
  max-width: 100vw;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(180px);
}
.cookie-banner p {
  color: #243447;
  font-size: 1em;
  text-align: center;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  width: 100%;
}
.cookie-button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 0.99em;
  font-weight: 600;
  background: #F4F7FB;
  color: #243447;
  transition: background 0.13s, color 0.15s, box-shadow 0.10s;
  margin: 0 7px;
  box-shadow: 0 1px 7px rgba(36,52,71,0.04);
}
.cookie-button.accept {
  background: #6DD9B1;
  color: #fff;
}
.cookie-button.reject {
  background: #e7eae8;
  color: #243447;
}
.cookie-button:hover, .cookie-button:focus {
  background: #d7ede3;
  color: #243447;
}
.cookie-button.accept:hover, .cookie-button.accept:focus {
  background: #56c199;
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: #6DD9B1;
  border: 1.5px solid #6DD9B1;
  font-weight: 700;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #6DD9B1;
  color: #fff;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,52,71,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36px 0 rgba(36, 52, 71, 0.13);
  max-width: 358px;
  padding: 36px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: pop-in 0.22s cubic-bezier(.77,0,.18,1);
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: #243447;
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02em;
  margin-bottom: 13px;
}
.cookie-category input[type=checkbox] {
  accent-color: #6DD9B1;
  width: 19px;
  height: 19px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-button {
  min-width: 95px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 13px;
  background: none;
  color: #243447;
  font-size: 1.34rem;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  padding: 1px 7px;
  transition: color 0.15s, background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #6DD9B1;
  background: #F4F7FB;
}

/* MEDIA QUERIES (RESPONSIVE) */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container {
    gap: 12px;
    height: 64px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero .container {
    min-height: unset;
    padding: 0 7px;
  }
  .section, section {
    margin-bottom: 44px;
    padding: 26px 4px;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .main-nav {
    display: none;
  }
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
    font-size: 0.98em;
  }
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .section, section {
    margin-bottom: 28px;
    padding: 13px 1px;
    border-radius: 0;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 22px 7px;
  }
}

/* UTILITIES + ANIMATIONS */
.fade-in {
  animation: fade-in 0.4s cubic-bezier(.61,0,.48,1);
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ADDITIONAL MICRO-INTERACTIONS */
.card, .blog-post, .faq, .testimonial-card, .case-study {
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:focus-within,
.blog-post:focus-within,
.faq:focus-within,
.testimonial-card:focus-within,
.case-study:focus-within {
  box-shadow: 0 0 0 2px #6DD9B1;
}
input[type="text"], input[type="email"], input[type="tel"] {
  transition: border-color 0.14s;
}

/* ENSURE ADEQUATE SPACING */
.card + .card, .testimonial-card + .testimonial-card, .faq + .faq {
  margin-top: 20px;
}

/* PREVENT ABSOLUTE FOR CONTENT, ONLY DECORATIVE (none used in these pages) */
