/* CSS RESET & NORMALIZE (MOBILE-FIRST) */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
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;
  vertical-align: baseline;
  font: inherit;
  background: transparent;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F4FAF7;
  color: #2B3A42;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  color: #25748A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18606f;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  padding: 0;
}
button {
  cursor: pointer;
  background: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #25748A;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.375rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3A42;
  margin-bottom: 8px;
}
strong { font-weight: 700; }
em { font-style: italic; color: #5393b5; }

/* LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(107,164,185, 0.13);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(37, 116, 138, 0.14);
  transform: translateY(-4px) scale(1.01);
}

.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;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.testimonial-section {
  background: #E0EEF0;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(37,116,138, 0.05);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(66, 136, 143, 0.08);
  padding: 26px 28px;
  margin-bottom: 24px;
  color: #2B3A42;
  border-left: 5px solid #C5E5EC;
  transition: border-color 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 5px solid #25748A;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #5393b5;
  font-size: 1.08rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 38px 0 22px;
  border-top: 1px solid #E6F4F7;
  background: #F4FAF7;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #6397A7;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #25748A; }
.footer-info {
  color: #5C6B74;
  font-size: 0.97rem;
  text-align: center;
}

/* HEADER & NAV */
header {
  background: #F4FAF7;
  box-shadow: 0 2px 8px 0 rgba(37,116,138,0.05);
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 99;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0 11px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: #3A8899;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #25748A;
}
.cta-btn {
  padding: 13px 32px;
  border-radius: 32px;
  background: linear-gradient(90deg, #C5E5EC 40%, #F4FAF7 100%);
  color: #25748A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(197,229,236,0.12);
  transition: background 0.22s, box-shadow 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  margin-left: 18px;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #B5D4DD 30%, #C5E5EC 100%);
  color: #16676C;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(197,229,236,0.18);
}

/* FEATURE GRIDS / ITEMS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(37,116,138,0.07);
  padding: 28px 22px 20px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-left: 4px solid #C5E5EC;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 20px 0 rgba(37,116,138,0.12);
  border-left: 4px solid #25748A;
}
.feature-grid img {
  width: 38px; height: 38px;
  margin-bottom: 8px;
  opacity: 0.94;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SERVICE LISTS / PROJECTS */
.service-list, .service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.service-list li, .service-list-detailed li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(107,164,185, 0.10);
  padding: 22px 20px;
  flex: 1 1 235px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border-left: 3px solid #B5D2DE;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.service-list li a, .service-list-detailed li a {
  color: #25748A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 6px;
  text-decoration: underline;
  transition: color 0.18s;
}
.service-list li a:hover, .service-list li a:focus,
.service-list-detailed li a:hover, .service-list-detailed li a:focus {
  color: #21738C;
}
.service-list-detailed li img {
  width: 38px; height: 38px;
  margin-bottom: 7px;
  opacity: 0.92;
}
.service-list-detailed li h2 span { 
  font-size: 1rem; 
  color: #7DAABB;
  font-weight: 500;
  margin-left: 5px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.process-steps li {
  background: #E6F4F7;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(107,164,185, 0.09);
  padding: 18px 18px 14px 16px;
  flex: 1 1 180px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-left: 3px solid #C5E5EC;
  transition: border-color 0.16s;
}
.process-steps li:hover, .process-steps li:focus-within {
  border-left: 3px solid #25748A;
}

.solution-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.solution-highlights li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F9FDFF;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(197,229,236, 0.07);
  padding: 20px 18px 16px 16px;
  min-width: 195px;
  flex: 1 1 195px;
  border-left: 3px solid #B5D2DE;
}
.solution-highlights img {
  width: 34px; height: 34px;
  opacity: 0.92;
}

/* FAQ STYLES */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-category {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.faq-category > h2 {
  color: #25748A;
  font-size: 1.31rem;
  margin-bottom: 10px;
}
.faq-category h3 {
  font-size: 1.06rem;
  color: #25748A;
  margin-bottom: 5px;
}
.faq-category p {
  font-size: 1rem;
  color: #355870;
  margin-bottom: 8px;
}
.faq-contact-cta {
  margin-top: 24px;
  font-size: 1rem;
}
.faq-contact-cta a {
  color: #25748A;
  text-decoration: underline;
}

/* TIPS & GUIDES */
.tips-list, .guide-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 17px;
}
.guide-list li {
  background: #F7FBFD;
  border-left: 3px solid #C5E5EC;
  padding: 16px 15px 12px 15px;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* PROJECTS */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HERO */
.hero-section {
  min-height: 310px;
  background: linear-gradient(90deg, #F4FAF7 32%, #C5E5EC 100%);
  border-radius: 0 0 38px 38px;
  margin-bottom: 50px;
  box-shadow: 0 2px 18px 0 rgba(43,58,66,0.05);
  padding-top: 46px;
  padding-bottom: 56px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1 {
  color: #25748A;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}
.hero-section .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #4C98B1;
  font-size: 1.25rem;
  margin-bottom: 17px;
}

/* BUTTONS */
button, .cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.18s;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #C5E5EC;
  font-size: 1.8rem;
  color: #25748A;
  border: none;
  box-shadow: 0 1px 8px rgba(37,116,138,0.10);
  margin-left: 12px;
  z-index: 1202;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #B5D2DE;
  color: #18606f;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(197,229,236, 0.94);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.5,1.3,.7,1), background 0.25s;
  z-index: 1201;
  opacity: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #25748A;
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
  margin: 17px 25px 5px 0;
  cursor: pointer;
  transition: color 0.14s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #42888F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-left: 35px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #25748A;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 16px 0 12px 0;
  transition: color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #10566F;
}

@media (min-width: 981px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    display: none !important;
  }
}

/* CONTENT RESPONSIVENESS */
@media (max-width: 900px) {
  .feature-grid,
  .solution-highlights,
  .service-list,
  .service-list-detailed,
  .process-steps {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section, section { padding: 30px 7px; }
  .nav-header { gap: 6px; padding: 8px 0 5px; }
  .footer-content { flex-direction: column; gap: 10px; padding: 20px 0 10px; }
  .footer-nav { flex-direction: column; gap: 8px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.14rem; }
  .hero-section { min-height: inherit; border-radius: 0 0 24px 24px; padding-top: 33px; padding-bottom: 33px; }
  .hero-section h1 { font-size: 1.5rem; }
  .hero-section .subheadline { font-size: 1.08rem; }
  .content-wrapper, .content-grid { gap: 17px; }
  .feature-grid, .solution-highlights, .service-list, .service-list-detailed, .process-steps { gap: 13px; }
  .testimonial-card { padding: 14px 12px; border-radius: 10px; }
  .card { padding: 16px 10px; border-radius: 11px; }
  .text-image-section { flex-direction: column; gap: 15px; }
}
@media (max-width: 480px) {
  .footer-info { font-size: 0.92rem; }
  .testimonial-card { font-size: 0.97rem; }
  .service-list li, .service-list-detailed li, .process-steps li, .solution-highlights li { min-width: 0; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F9FDFF;
  border-top: 2px solid #C5E5EC;
  box-shadow: 0 -2px 24px 0 rgba(66,137,143, 0.06);
  padding: 21px 22px;
  z-index: 2001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.5,1.2,.7,1), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 240px;
  color: #2B3A42;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #C5E5EC;
  border-radius: 24px;
  color: #25748A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  border: none;
  box-shadow: 0 1px 8px 0 rgba(37,116,138,0.06);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s, transform 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #B5D2DE;
  color: #10566F;
}
.cookie-reject-btn {
  background: #fff;
  color: #25748A;
  border: 2px solid #C5E5EC;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  box-shadow: none;
  transition: background 0.17s, color 0.17s, border 0.15s;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  border-color: #25748A;
  background: #F4FAF7;
  color: #10566F;
}

@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 8px 13px 8px;
    gap: 11px;
  }
  .cookie-banner__actions { gap: 8px; }
  .cookie-banner__text { font-size: 0.98rem; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 2100;
  background: rgba(37,116,138, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal__content {
  background: #F9FDFF;
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(37,116,138,0.11);
  max-width: 370px;
  padding: 37px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 11px; right: 15px;
  background: none;
  border: none;
  font-size: 1.64rem;
  color: #25748A;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #18606f;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #25748A;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: #25748A;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 26px;
  background: #C5E5EC;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #25748A;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-category--essential label {
  opacity: 0.7;
}
.cookie-category--essential {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn,
.cookie-modal .cookie-reject-btn {
  min-width: 110px;
}

@media (max-width: 440px) {
  .cookie-modal__content {
    padding: 19px 6px 14px 8px;
    max-width: 97vw;
  }
}

/* VISUAL DETAILS & EFFECTS */
.card, .feature-grid li, .service-list li, .service-list-detailed li, .process-steps li, .solution-highlights li, .project-list .text-section {
  box-shadow: 0 2px 12px 0 rgba(197,229,236,0.08);
}
.card, .feature-grid li, .service-list li, .service-list-detailed li, .process-steps li, .solution-highlights li, .project-list .text-section {
  border-radius: 16px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section, .hero-section, .testimonial-card, .card, .feature-grid li, .solution-highlights li, .process-steps li, .service-list-detailed li {
  animation: fadeInUp 0.7s cubic-bezier(.45,.92,.71,.97);
}

/* MISC UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center !important; }

/* No grid properties or columns used anywhere in this file. Flexbox ONLY. */
