/* ==========================================================================
   CSS RESET & BASELINE TYPOGRAPHY - minimal, modern, accessible
   ========================================================================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #19202a;
  background: #fff;
  font-size: 16px;
  min-height: 100vh;
  word-break: break-word;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #234570;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #66B6A9;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  appearance: none;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* ===========================================================================
   TYPOGRAPHY
   =========================================================================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #234570;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #234570;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #234570;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #234570;
}
p, .legal-text {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #19202a;
}
strong, b {
  font-weight: 600;
}

/* ===========================================================================
   LAYOUT CONTAINERS
   =========================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Flex Containers per requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(33,43,54,0.04);
  padding: 28px 24px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(33,43,54,0.10);
  z-index: 20;
}
.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: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(33,43,54,0.06);
  color: #19202a;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(33,43,54,0.11);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===========================================================================
   NAVIGATION (Desktop & Mobile)
   =========================================================================== */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(33,43,54,0.04);
  z-index: 500;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0 12px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #234570;
  opacity: 0.94;
  padding: 4px 10px;
  border-radius: 7px;
  transition: color 0.2s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #66B6A9;
  opacity: 1;
}
.main-nav .cta-btn {
  background: #234570;
  color: #fff !important;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(35,69,112,0.03);
  margin-left: 14px;
  transition: background 0.18s, box-shadow 0.2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #66B6A9;
  color: #234570 !important;
  box-shadow: 0 4px 18px rgba(102,182,169,0.10);
}

.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #234570;
  border: none;
  font-size: 2rem;
  padding: 3px 11px;
  margin-left: auto;
  border-radius: 7px;
  box-shadow: 0 1px 6px rgba(33,43,54,0.07);
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,69,112,0.98);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.38,1.31,.58,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  opacity: 0.86;
  transition: opacity 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 44px 32px 24px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.37rem;
  font-weight: 500;
  opacity: 0.96;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #66B6A9;
  background: rgba(255,255,255,0.09);
}

@media (max-width: 980px) {
  .main-nav {
    gap: 18px;
    font-size: 0.97rem;
    padding: 14px 0 7px;
  }
}
@media (max-width: 820px) {
  .main-nav a, .main-nav .cta-btn {
    font-size: 0.97rem;
    padding: 4px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1001;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========================================================================
   HERO SECTION & CTAs
   =========================================================================== */
.hero {
  background: #F8F9FA;
  padding: 64px 0 36px;
  margin-bottom: 48px;
}
.hero .container {
  padding-top: 0;
  padding-bottom: 0;
}
.hero h1 {
  font-size: 2.9rem;
  color: #234570;
}
.hero h2 {
  font-size: 1.5rem;
  color: #234570;
  opacity: 0.93;
  margin-bottom: 18px;
}
.cta {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(102,182,169,0.07);
  text-align: center;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #234570;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 22px;
  margin-top: 20px;
  margin-bottom: 8px;
  min-width: 220px;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(35,69,112,0.06);
  transition: background 0.16s, color 0.2s, box-shadow 0.27s, transform 0.19s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #66B6A9;
  color: #234570;
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 6px 24px rgba(102,182,169,0.13);
}
.cta-btn img {
  max-width: 20px; max-height: 20px; display: inline;
}

/* ===========================================================================
   FLEX-BASED FEATURE GRIDS & CARDS
   =========================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,69,112,0.04);
  padding: 28px 24px 24px 24px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 350px;
  transition: box-shadow 0.19s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(35,69,112,0.10);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 40px; height: 40px;
  margin-bottom: 6px;
}
.service-category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 38px 0 0 0;
}
.service-category-cards > div {
  background: #F8F9FA;
  border-radius: 10px;
  padding: 20px 20px 16px 20px;
  flex: 1 1 220px;
  min-width: 170px;
  box-shadow: 0 1.5px 8px rgba(35,69,112,0.02);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

/* Steps/Process lists style */
.steps ol, .steps-detailed ol {
  margin: 0 0 18px 14px;
  padding-left: 20px;
  font-size: 1.04rem;
  color: #234570;
}
.steps ul, .steps-detailed ul {
  margin: 0 0 0 14px;
  padding-left: 20px;
  font-size: 1.01rem;
  color: #19202a;
}

/* ===========================================================================
   TESTIMONIALS & CLIENT LOGOS
   =========================================================================== */
.testimonials {
  background: #fff;
  padding: 40px 0 30px 0;
  margin-bottom: 48px;
}
.testimonials h2 {
  text-align: center;
  margin-top: 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 30px 0 0 0;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #234570;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #19202a;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 36px 0 0 0;
}
.client-logos img {
  height: 38px;
  width: auto;
  opacity: 0.82;
  transition: opacity 0.16s;
}
.client-logos img:hover {
  opacity: 1;
}

/* ===========================================================================
   ABOUT & TEXT SECTIONS
   =========================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.text-section ul {
  padding-left: 19px;
  margin-bottom: 0;
}
.text-section a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
  color: #66B6A9;
  border-bottom: 2px solid #66B6A9;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section a:hover, .text-section a:focus {
  color: #234570;
  border-bottom: 2px solid #234570;
}
.case-studies {
  margin-top: 23px;
  background: #F8F9FA;
  border-radius: 9px;
  padding: 17px 15px;
  box-shadow: 0 1.5px 6px rgba(35,69,112,0.02);
}

/* ===========================================================================
   CONTACT PAGE
   =========================================================================== */
.map-placeholder {
  background: #F8F9FA;
  border-radius: 9px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  margin-top: 22px;
  font-size: 0.97rem;
  padding: 18px 0;
}
.text-section li img {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: text-bottom;
  filter: grayscale(1) opacity(0.75);
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
footer {
  background: #fff;
  border-top: 1.5px solid #F8F9FA;
  box-shadow: 0 -1px 8px rgba(35,69,112,0.02);
  padding: 32px 0 28px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #9ea1a7;
}
.footer-menu a {
  color: #234570;
  opacity: 0.89;
  padding: 2px 7px;
  border-radius: 5px;
  transition: color 0.16s, background 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a:hover {
  color: #fff;
  background: #234570;
  opacity: 1;
}
.footer-menu span {
  color: #74808d;
  margin-left: 7px;
}

/* ===========================================================================
   COOKIE CONSENT BANNER & MODAL
   =========================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 1999;
  bottom: 0; left: 0; right: 0;
  background: #234570;
  color: #fff;
  padding: 18px 16px;
  box-shadow: 0 -4px 12px rgba(35,69,112,0.12);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  animation: banner-appear 0.55s cubic-bezier(.35,1.61,.43,1.06);
}
@keyframes banner-appear {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  align-items: center;
}
.cookie-btn, .cookie-btn-alt {
  background: #fff;
  color: #234570;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  border-radius: 17px;
  padding: 7px 22px;
  font-weight: 600;
  margin: 0;
  border: none;
  box-shadow: 0 1px 6px rgba(102,182,169,0.08);
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn-alt {
  background: #66B6A9;
  color: #234570;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-btn-alt:hover, .cookie-btn-alt:focus {
  background: #234570;
  color: #fff;
  box-shadow: 0 5px 20px rgba(35,69,112,0.15);
}

.cookie-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 2400;
  background: rgba(35,69,112,0.51);
  pointer-events: all;
  transition: opacity 0.3s;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #234570;
  border-radius: 16px;
  box-shadow: 0 10px 44px rgba(35,69,112,0.25);
  padding: 32px 22px 24px 22px;
  max-width: 410px;
  width: 95%;
  min-width: 0;
  animation: modal-appear 0.32s cubic-bezier(.45,1.44,.6,1.08);
}
@keyframes modal-appear {
  from { transform: scale(0.88) translateY(70px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #234570;
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 19px;
}
.cookie-modal-category label {
  font-size: 1.06rem;
  color: #19202a;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #66B6A9;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #b5cbce;
}
.cookie-modal-category[aria-disabled="true"] label {
  color: #adb6bb;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #19202a;
  font-size: 1.6rem;
  float: right;
  margin-top: -12px;
  margin-right: -5px;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  opacity: 1;
}

/* ===========================================================================
   LEGAL PAGES
   =========================================================================== */
.legal-text {
  font-size: 1.01rem;
  line-height: 1.65;
  color: #19202a;
}
.legal-text h2 {
  font-size: 1.17rem;
  margin-top: 16px;
  margin-bottom: 7px;
  color: #234570;
}
.legal-text ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

/* ===========================================================================
   SUCCESS PAGE
   =========================================================================== */
.thank-you .cta-btn {
  margin: 28px auto 0 auto;
}
.thank-you p {
  text-align: center;
}

/* ===========================================================================
   RESPONSIVE DESIGN
   Mobile-first, adapt to larger screens
   =========================================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding-left: 13px; padding-right: 13px;
  }
  .feature-grid, .testimonial-slider, .service-category-cards, .client-logos, .benefits-grid {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .testimonial-slider, .content-grid, .service-category-cards, .client-logos, .benefits-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid > div, .service-category-cards > div, .content-grid > * {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.76rem; }
  h2 { font-size: 1.20rem; }
  h3 { font-size: 1.03rem; }
  .section {
    margin-bottom: 38px;
    padding: 28px 8px;
  }
  .hero {
    padding: 36px 0 23px;
    margin-bottom: 24px;
  }
  .cta {
    padding: 30px 0;
  }
  .testimonial-slider,
  .feature-grid,
  .service-category-cards,
  .benefits-grid,
  .client-logos,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    font-size: 0.91rem;
    padding: 0 3px;
  }
  .cookie-modal {
    padding: 14px 5px 17px 5px;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.12rem; }
  h2 { font-size: 0.98rem; }
  h3 { font-size: 0.89rem; }
  .cta-btn {
    min-width: 100px;
    font-size: 0.97rem;
    padding: 8px 13px;
  }
}

/* ===============
   MISC UTILITIES
   =============== */
.bg-accent { background: #F8F9FA; }
.text-primary { color: #234570; }
.text-secondary { color: #66B6A9; }
.bg-primary { background: #234570; color: #fff; }
.bg-secondary { background: #66B6A9; color: #234570; }
.rounded { border-radius: 12px; }
.shadow-sm { box-shadow: 0 1px 4px rgba(35,69,112,0.07); }
.shadow-md { box-shadow: 0 4px 20px rgba(35,69,112,0.11); }

/* ======================
   END CSS
   ====================== */
