/* ----------- CSS RESET & NORMALIZATION (minimalist, modern 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, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #183059;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: #4C91BF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183059;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
:focus {
  outline: 2px solid #4C91BF;
  outline-offset: 2px;
}

/* ----------- BASE TYPOGRAPHY ----------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #183059;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 500; }
p, li, blockquote { font-size: 1rem; color: #2e3e52; }
blockquote { font-style: italic; border-left: 3px solid #4C91BF; padding-left: 16px; color: #183059; background:#FEEFDC; margin:16px 0; }

/* ----------- CONTAINER ----------- */
.container {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---------------- HEADER & NAVIGATION ----------------- */
header {
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(24,48,89,0.04);
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #183059;
  font-weight: 500;
  padding: 8px 8px;
  border-radius: 3px;
  transition: background 0.2s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #4C91BF;
  background: #FEEFDC;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  background: #4C91BF;
  color: #fff;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(76,145,191,0.07);
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.22s, transform 0.2s;
  margin-left: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #183059;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 30px 0 rgba(76,145,191,0.14);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183059;
  cursor: pointer;
  margin-left: 16px;
  z-index: 300;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #4C91BF;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF;
  z-index: 250;
  transition: transform 0.33s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183059;
  cursor: pointer;
  padding: 22px 24px 0 0;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #4C91BF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 40px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #183059;
  font-weight: 500;
  padding: 18px 10px 18px 0;
  border-radius: 3px;
  min-width: 180px;
  transition: background 0.22s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FEEFDC;
  color: #4C91BF;
}

/* ----------- HERO, SECTIONS, FLEX SPACING ----------- */
.section, .hero-section, .features-section, .about-preview-section, .testimonials-preview-section, .cta-section, .services-section, .process-section, .benefits-section, .thankyou-section, .about-section, .differentiators-section, .resources-section, .contact-section, .location-section, .privacy-policy-section, .gdpr-section, .cookies-policy-section, .terms-section, .testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Card/container/minimal flexbox layouts */
.card-container, .feature-grid, .service-list, .blog-previews ul, .tips-list ul, .downloadables ul, .testimonial-slider, .footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(24,48,89,0.08);
  padding: 24px 22px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(24,48,89,0.14);
}
.content-grid, .footer-nav nav, .blog-previews ul {
  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 26px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(24,48,89,0.10);
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  max-width: 470px;
  word-break: break-word;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(24,48,89,0.19);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FEEFDC;
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 1px 10px 0 rgba(76,145,191,0.03);
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(24,48,89,0.11);
  transform: translateY(-1.5px) scale(1.01);
}
.feature-price, .service-price {
  font-weight: bold;
  color: #183059;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
.service-list {
  gap: 24px;
  width: 100%;
}
.service-item {
  background: #FEEFDC;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(76,145,191,0.03);
  padding: 28px 24px;
  min-width: 270px;
  max-width: 380px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 30px 0 rgba(24,48,89,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* --------- GENERIC LIST/ULS WITH CHECKS OR ICONS --------- */
ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
}
ul li:before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 2px;
  color: #4C91BF;
  font-size: 1.04em;
}
ul:not(.mobile-nav):not(.footer-nav) li img {
  margin-right: 8px;
  vertical-align: middle;
}
dl, ol {
  margin-left: 0;
}

/* ----------- TABLES & MISC ----------- */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 10px 8px;
  border-bottom: 1px solid #FEEFDC;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #183059;
  background: #FEEFDC;
}

/* ----------- FOOTER ----------- */
footer {
  background: #F5F7FB;
  border-top: 1px solid #FEEFDC;
  color: #183059;
  font-size: 0.98rem;
  padding-top: 48px;
  padding-bottom: 36px;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #183059;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.9;
  transition: color 0.14s, opacity 0.14s;
  font-size: 1rem;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #4C91BF;
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
}
.footer-brand img {
  width: 54px;
  margin-bottom: 8px;
}
.footer-brand p {
  color: #183059;
  font-weight: 500;
  font-size: 1.01rem;
}
.footer-brand a {
  color: #4C91BF;
  font-size: 1rem;
  text-decoration: underline;
}
.footer-contact {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2e3e52;
  font-size: 1rem;
  opacity: 0.92;
}

/* ------------ TESTIMONIALS ------------ */
.stars {
  font-size: 1.32em;
  color: #F7B801;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

/* ----------- BLOG + RESOURCES ----------- */
.downloadables ul li, .blog-previews ul li, .tips-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
.downloadables h2, .blog-previews h2, .tips-list h2 {
  font-size: 1.34rem;
  color: #183059;
  margin-bottom: 10px;
}
.blog-previews ul {
  flex-direction: column;
  gap: 20px;
}

/* ----------- MAP PLACEHOLDER & ADDRESS ----------- */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FEEFDC;
  border-radius: 12px;
  padding: 18px;
  margin-top: 10px;
  box-shadow: 0 1px 6px rgba(24,48,89,0.06);
  font-size: 1rem;
}
address {
  font-style: normal;
  color: #183059;
  font-weight: 500;
  margin-bottom: 14px;
}

/* ----------- CTA SECTION ----------- */
.cta-section, .thankyou-section {
  text-align: center;
}
.cta-section .cta-btn, .thankyou-section .cta-btn {
  margin-top: 22px;
}

/* ----------- GENERAL SPACING & LAYOUTS ----------- */
.section, .hero-section, .features-section, .about-preview-section, .testimonials-preview-section, .cta-section,
.services-section, .process-section, .benefits-section, .thankyou-section, .about-section, .differentiators-section, .resources-section, .contact-section, .location-section, .privacy-policy-section, .gdpr-section, .cookies-policy-section, .terms-section, .testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX RESPONSIVE TEXT-IMAGE */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 18px;
  margin-bottom: 7px;
}
.text-section p {
  margin-bottom: 8px;
}

/* ----------- BUTTON, MICRO-INTERACTIONS ----------- */
button {
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: filter 0.16s;
}
button:active {
  filter: brightness(0.96);
}

/* ----------- COOKIE CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #FFF;
  border-top: 1px solid #4C91BF;
  box-shadow: 0 -2px 20px 0 rgba(24,48,89,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 12px;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(.72,.07,.28,.96);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #183059;
  margin-right: 16px;
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #FEEFDC;
  color: #183059;
  cursor: pointer;
  transition: background 0.15s, color 0.18s, transform 0.12s;
  box-shadow: 0 1px 7px rgba(24,48,89,0.06);
}
.cookie-banner .cookie-btn.accept {
  background: #4C91BF;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #183059;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.reject {
  background: #FFF;
  color: #183059;
  border: 1px solid #FEEFDC;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #FEEFDC;
  color: #183059;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.settings {
  background: #FEEFDC;
  color: #183059;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #4C91BF;
  color: #fff;
  transform: scale(1.04);
}

/* ---------- COOKIE PREFERENCES MODAL ---------- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,48,89,0.3);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(24,48,89,0.12);
  padding: 36px 32px 30px 32px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(.72,.07,.28,.96);
}
@keyframes modalIn {
  0% {opacity:0;transform:translateY(20px) scale(0.97);}
  100% {opacity:1;transform:translateY(0) scale(1);}
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #183059;
  cursor: pointer;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.08em;
}
.cookie-cat label {
  color: #183059;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #4C91BF;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: flex-end;
}

/* ---------- RESPONSIVE BREAKPOINTS (mobile-first) ---------- */
@media (max-width: 1020px) {
  .container {
    max-width: 840px;
  }
  header .container, footer .container {
    gap: 15px;
  }
  .main-nav {
    gap: 19px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    min-height: 60px;
    padding: 6px 0;
  }
  .main-nav, .cta-btn {
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    height: auto;
    padding: 6px 0;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin: 0 0 0 12px;
    font-size: 0.98rem;
    padding: 8px 14px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav nav {
    flex-direction: column;
    gap: 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .feature-grid, .service-list, .blog-previews ul {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .about-preview-section .container, .features-section .container, .cta-section .container {
    padding: 0;
  }
  .testimonial-card {
    min-width: 95vw;
    max-width: 100vw;
    padding: 16px 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.08rem; }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .hero-section, .features-section, .about-preview-section, .testimonials-preview-section, .cta-section, .services-section, .process-section, .benefits-section, .thankyou-section, .about-section, .differentiators-section, .resources-section, .contact-section, .location-section, .privacy-policy-section, .gdpr-section, .cookies-policy-section, .terms-section, .testimonials-section {
    padding: 24px 4px;
  }
  .card, .feature-item, .service-item {
    padding: 15px 7px;
    min-width: 0;
    max-width: 98vw;
  }
  .cta-btn, .cookie-banner .cookie-btn {
    padding: 8px 14px;
    font-size: 1rem;
  }
  .cookie-modal-dialog {
    padding: 20px 10px 15px 10px;
    min-width: 90vw;
  }
}

/* ----------- MISC ----------- */
::-webkit-scrollbar {
  width: 8px;
  background: #F5F7FB;
}
::-webkit-scrollbar-thumb {
  background: #E1E7F1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C8D7EA;
}

/* --------------- UTILITY --------------- */
.visually-hidden {position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(1px,1px,1px,1px)!important;white-space:nowrap!important;border:0!important;}

/* ----------- END ----------- */
