/* ------------------------------------------------------
   CSS RESET / SCANDINAVIAN CLEAN ROOT STYLES
------------------------------------------------------ */
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;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  color: #23272C;
  background: #F6F7F9;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #4E91CE;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,.01,.17,1);
}
a:hover, a:focus {
  color: #23272C;
  text-decoration: underline;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.25em;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
blockquote {
  border-left: 4px solid #4E91CE;
  margin: 16px 0;
  padding: 8px 16px;
  background: #F6F7F9;
  color: #23272C;
}
section:not(:last-child) {
  margin-bottom: 60px;
}
hr {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 32px 0;
}

/* Font Families */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #23272C;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h5, h6 {
  font-size: 1rem;
}

p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #23272C;
  margin-bottom: 12px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ------------------------------------------------------
   HEADER/NAVIGATION
------------------------------------------------------ */
header {
  background: #F6F7F9;
  border-bottom: 1px solid #e4e8ed;
  box-shadow: 0 1px 4px 0 rgba(35,39,44,0.04);
  position: sticky;
  top: 0;
  z-index: 1030;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23272C;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #eaf1fa;
  color: #4E91CE;
}
header a.cta-btn {
  background: #4E91CE;
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 10px 26px;
  box-shadow: 0 2px 12px 0 rgba(78,145,206,0.06);
  margin-left: 12px;
  transition: background 0.18s cubic-bezier(.4,.01,.17,1), box-shadow 0.18s cubic-bezier(.4,.01,.17,1);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.05em;
  display: inline-block;
}
header a.cta-btn:hover, header a.cta-btn:focus {
  background: #23272C;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(35,39,44,0.08);
}
header img {
  height: 40px;
  width: auto;
  margin-right: 18px;
}
/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  color: #4E91CE;
  align-self: center;
  z-index: 1201;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  background: #eaf1fa;
  border-radius: 6px;
}

/* Mobile Nav Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F6F7F9;
  transform: translateX(-100%);
  z-index: 1200;
  box-shadow: 8px 0 40px -12px rgba(35,39,44,0.10);
  transition: transform 0.34s cubic-bezier(.4,.01,.17,1);
  padding: 32px 28px 18px 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #23272C;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 32px;
  margin-right: 2px;
  transition: color 0.15s;
  z-index: 1500;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #4E91CE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #23272C;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  padding: 14px 4px 10px 0;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf1fa;
  color: #4E91CE;
}

/* ---------------
   MAIN LAYOUT
-----------------*/
main {
  padding-top: 46px; /* For sticky header spacing */
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  margin-bottom: 12px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 18px 0 rgba(35,39,44,0.05);
  padding: 28px 24px 22px 24px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s cubic-bezier(.4,.01,.17,1), transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(35,39,44,0.09);
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(35,39,44,0.08);
  margin-bottom: 20px;
  max-width: 540px;
  min-width: 260px;
  border-left: 4px solid #4E91CE;
  transition: box-shadow 0.21s cubic-bezier(.4,.01,.17,1), border-color 0.16s;
}
.testimonial-card p {
  color: #23272C;
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(35,39,44,0.12);
  border-color: #23272C;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* ------------
   BUTTONS
-------------*/
.cta-btn {
  background: #4E91CE;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  box-shadow: 0 2px 12px 0 rgba(78,145,206,0.09);
  margin-top: 6px;
  transition: background 0.18s cubic-bezier(.4,.01,.17,1), color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #23272C;
  color: #fff !important;
  box-shadow: 0 6px 24px 0 rgba(35,39,44,0.07);
  text-decoration: none;
}
.cta-link {
  color: #4E91CE;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 2px solid #4E91CE;
  padding-bottom: 2px;
  margin-left: 16px;
  transition: color 0.16s, border-color 0.16s;
}
.cta-link:hover, .cta-link:focus {
  color: #23272C;
  border-color: #23272C;
}

button, .cta-btn {
  cursor: pointer;
  outline: none;
}

/* ------
   FOOTER
---------- */
footer {
  background: #fff;
  border-top: 1px solid #e4e8ed;
  box-shadow: 0 -1px 12px 0 rgba(35,39,44,0.03);
  padding: 24px 0;
  margin-top: 80px;
}
footer > .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
footer nav a {
  color: #4E91CE;
  font-size: 1rem;
  padding: 4px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #23272C;
}
.footer-contact p {
  color: #717c88;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
footer img {
  height: 38px;
  width: auto;
}

/* ---------------
   MISC UI Elements
------------------*/
.map-placeholder {
  background: #F6F7F9;
  border: 1px dashed #CDD1D6;
  border-radius: 7px;
  padding: 28px 11px;
  text-align: center;
  color: #7C8B99;
  font-size: 1.01rem;
  margin-bottom: 14px;
}

address {
  font-style: normal;
  color: #23272C;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e4e8ed;
  box-shadow: 0 -2px 16px 0 rgba(35,39,44,0.07);
  padding: 22px 24px;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23272C;
  animation: slideup 0.45s cubic-bezier(.45,.59,.46,1.12);
}
@keyframes slideup {
  from { transform: translateY(100%); opacity:0 }
  to { transform: translateY(0); opacity:1 }
}
.cookie-banner button {
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  padding: 10px 22px;
  margin-top: 0;
}
.cookie-btn-accept {
  background: #4E91CE;
  color: #fff;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #23272C;
  color: #fff;
}
.cookie-btn-reject {
  background: #e4e8ed;
  color: #23272C;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #4E91CE;
  color: #fff;
}
.cookie-btn-settings {
  background: transparent;
  color: #4E91CE;
  border: 1.5px solid #4E91CE;
  transition: background 0.16s, color 0.16s, border-color 0.16s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #4E91CE;
  color: #fff;
  border-color: #23272C;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,39,44,0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  animation: fadein 0.4s;
}
@keyframes fadein {
  from { opacity: 0 }
  to { opacity: 1 }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 36px 0 rgba(35,39,44,0.14);
  max-width: 370px;
  width: 92vw;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popin 0.32s;
}
@keyframes popin {
  from { transform: scale(0.84); opacity:0 }
  to { transform: scale(1); opacity:1 }
}
.cookie-modal-content h3 {
  font-size: 1.19rem;
  margin-bottom: 6px;
  color: #23272C;
}
.cookie-settings-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 11px;
  background: #e4e8ed;
  position: relative;
  border: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.24s;
}
.cookie-toggle:checked {
  background: #4E91CE;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.24s;
  box-shadow: 0 1px 4px 0 rgba(35,39,44,0.09);
}
.cookie-toggle:checked::before {
  left: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #23272C;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #4E91CE;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}

/* --------------
   RESPONSIVE
-----------------*/
@media (max-width: 1160px) {
  .container { max-width: 100%; }
  header > .container, footer > .container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 9px;
  }
}
@media (max-width: 900px) {
  main { padding-top: 62px; }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header > .container, footer > .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  header a.cta-btn {
    display: none;
  }
  .section {
    padding: 28px 8px;
  }
  .content-wrapper, .text-section {
    margin-bottom: 16px;
    gap: 9px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-contact {
    margin-top: 10px;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
  .section { padding: 18px 2px; }
  .testimonial-card {
    padding: 11px;
  }
  .map-placeholder {
    padding: 14px 2px;
  }
}

/* ===============
   MICRO-ANIMATIONS
=================*/
.card, .testimonial-card, .cta-btn, .cookie-banner, .content-wrapper {
  transition: box-shadow 0.18s, background 0.19s, border-color 0.19s, color 0.17s, transform 0.16s;
}

/* ================
   ACCESSIBILITY
==================*/
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #4E91CE;
  outline-offset: 2px;
  background: #eaf1fa;
}

/* ================
   MINIMUM SPACING
==================*/
.content-wrapper:not(:last-child), .card-container > *:not(:last-child), .content-grid > *:not(:last-child), .testimonial-card:not(:last-child), .feature-item:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* Hide elements (utility) */
.hide { display: none !important; }

