/* --- CSS RESET & NORMALIZE --- */
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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.7;
  background: #F4F7FA;
  color: #223E56;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.015em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #69B0AC;
  text-decoration: none;
  transition: color 0.18s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #223E56;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #223E56;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {font-size: 2.25rem; margin-bottom: 24px;}
h2 {font-size: 1.5rem; margin-bottom: 20px;}
h3 {font-size: 1.1rem; margin-bottom: 16px;}
h4, h5, h6 {font-size: 1rem; margin-bottom: 14px;}
p, .text-section p, .footer-contact p, ol li, ul li, dl dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 1em;
  color: #223E56;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #223E56;
  background: #f4f7fa;
  border-left: 4px solid #69B0AC;
  margin: 20px 0;
  padding: 18px 22px;
  border-radius: 8px;
  font-style: italic;
  box-shadow: 0 1px 8px 0 rgba(34,62,86,0.06);
}

/* --- SCANDINAVIAN CLEAN LAYOUT PATTERNS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,62,86,0.07);
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,62,86,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 24px 22px;
  min-width: 240px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 rgba(34,62,86,0.13);
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(34,62,86,0.10);
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 360px;
}
.testimonial-card p {
  color: #223E56;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #69B0AC;
}
.testimonial-card .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #F4F7FA;
  box-shadow: 0 2px 8px rgba(34,62,86,0.03);
  position: sticky;
  top: 0;
  z-index: 101;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 22px;
  position: relative;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #223E56;
  font-size: 1rem;
  opacity: 0.89;
  border-radius: 6px;
  padding: 7px 10px;
  transition: background 0.17s, color 0.16s;
}
header nav a.cta-btn {
  background: #69B0AC;
  color: #fff;
  font-weight: 700;
  margin-left: 14px;
  padding: 9px 21px;
  border-radius: 30px;
  box-shadow: 0 2px 8px 0 rgba(105,176,172,0.10);
  transition: background 0.17s, box-shadow 0.13s, color 0.17s;
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus {
  background: #223E56;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(34,62,86,0.19);
}
header nav a:hover, header nav a:focus {
  background: #F4F7FA;
  color: #69B0AC;
}
header nav a img {
  height: 39px;
}
/* Hide mobile burger menu on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  margin-left: auto;
  border: none;
  color: #223E56;
  cursor: pointer;
  z-index: 200;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(34,62,86,0.04);
  pointer-events: none;
  transition: opacity 0.25s;
  opacity: 0;
}
.mobile-menu.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 84vw;
  max-width: 350px;
  height: 100vh;
  padding: 48px 32px 26px 28px;
  background: #fff;
  box-shadow: 2px 0 18px 0 rgba(34,62,86,0.19);
  z-index: 10010;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.82,0,.19,1);
}
.mobile-menu.active nav.mobile-nav {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: fixed;
  left: calc(84vw - 26px);
  top: 17px;
  background: #fff;
  border: none;
  color: #223E56;
  font-size: 2.1rem;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10020;
  box-shadow: 0 1px 14px 0 rgba(34,62,86,0.06);
}
.mobile-menu nav.mobile-nav a {
  color: #223E56;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 7px;
  margin-bottom: 12px;
  padding: 12px 9px 12px 0;
  transition: background 0.15s, color 0.14s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: #F4F7FA;
  color: #69B0AC;
}

/* Show only burger on mobile */
@media (max-width: 1024px) {
  header nav {
    gap: 10px;
    padding: 0 12px;
  }
}
@media (max-width: 880px) {
  header nav a:not(:first-child), header nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav a img {
    margin-right: 0;
  }
}

/* --- MAIN CONTENT & RESPONSIVE LAYOUTS --- */
main {
  min-height: 60vh;
  padding-bottom: 58px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,62,86,0.07);
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* --- FLEX LISTS WITH ICONS --- */
.content-wrapper ul, .content-wrapper ol, .text-section ul, .text-section ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}
.content-wrapper ul li, .content-wrapper ol li, .text-section ul li, .text-section ol li {
  display: flex;
  flex-direction: column;
  background: #F4F7FA;
  border-radius: 14px;
  padding: 22px 18px 16px 18px;
  min-width: 200px;
  flex: 1 1 210px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px 0 rgba(34,62,86,0.06);
  align-items: flex-start;
  gap: 9px;
  position: relative;
}
.content-wrapper ul li img, .text-section ul li img {
  height: 38px; width: 38px; margin-bottom: 7px;
}
.content-wrapper ul li strong, .text-section ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223E56;
  font-size: 1.13rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.content-wrapper ul li p, .text-section ul li p {
  margin-bottom: 2px;
  font-size: 0.98rem;
}

/* FAQ and Definition List Styling */
dl {
  width: 100%;
  margin-bottom: 0;
}
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #223E56;
  font-size: 1.06rem;
  margin-top: 17px;
}
dl dd {
  font-size: 1rem;
  color: #223E56;
  margin: 1px 0 15px 0;
}
dl a {
  color: #69B0AC;
  font-weight: 500;
}
dl a:hover, dl a:focus {
  color: #223E56;
}

/* Articles in blog */
.content-wrapper article {
  background: #F4F7FA;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(34,62,86,0.05);
  padding: 21px 18px 15px 18px;
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.content-wrapper article h3 {
  font-size: 1.15rem;
  margin-bottom: 11px;
}
.content-wrapper article:hover, .content-wrapper article:focus {
  box-shadow: 0 5px 18px 0 rgba(34,62,86,0.11);
}

/* --- BUTTONS & CTA --- */
.cta-btn, button, .cookie-consent-btn {
  display: inline-block;
  background: #69B0AC;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  border-radius: 28px;
  padding: 12px 26px;
  box-shadow: 0 2px 10px 0 rgba(34,62,86,0.07);
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.15s, box-shadow 0.13s;
}
.cta-btn:hover, .cta-btn:focus, button:hover, .cookie-consent-btn:hover, button:focus, .cookie-consent-btn:focus {
  background: #223E56;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(105,176,172,0.19);
  outline: none;
}

/* --- FOOTER STYLES --- */
footer {
  background: #223E56;
  color: #fff;
  padding: 36px 0 12px 0;
  border-top: 0;
}
footer .container {
  max-width: 1100px;
  margin: 0 auto;
}
footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #F4F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 2px;
  transition: color 0.13s;
  opacity: 0.96;
}
footer nav a:hover, footer nav a:focus {
  color: #69B0AC;
  text-decoration: underline;
}
.footer-contact p, .footer-contact {
  font-size: 0.97rem;
  color: #e8f1f5;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer img[src$='logo-mark.svg'] {
  height: 35px;
  margin-bottom: 11px;
}
footer .footer-contact img {
  height: 19px;
  margin-right: 9px;
  vertical-align: -5px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 990px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  main {
    padding-bottom: 84px;
  }
  section, .section {
    padding: 28px 7px;
    margin-bottom: 36px;
    border-radius: 11px;
  }
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu nav.mobile-nav {
    width: 97vw;
    padding-left: 4vw;
    left: 0;
  }
  .mobile-menu-close {
    left: auto;
    right: 19px;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.45rem;}
  h2 {font-size: 1.1rem;}
  .cta-btn, button, .cookie-consent-btn {
    padding: 11px 17px;
    font-size: 1rem;
  }
  section, .section {
    padding: 17px 2px;
    border-radius: 6px;
  }
  .footer-contact {
    font-size: 0.89rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 13000;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e1e6ea;
  box-shadow: 0 -2px 18px 0 rgba(34,62,86,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 32px 20px 22px;
  gap: 24px;
  font-size: 1rem;
  color: #223E56;
  opacity: 1;
  transition: transform 0.24s, opacity 0.17s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 210px;
  color: #223E56;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-consent-btn {
  font-size: 0.98rem;
  margin-top: 0;
  margin-bottom: 0;
  padding: 9px 15px;
  border-radius: 18px;
  background: #69B0AC;
  color: #fff;
  border: none;
  min-width: 100px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 1px 10px 0 rgba(105,176,172,0.06);
}
.cookie-banner .cookie-consent-btn.secondary {
  background: #223E56;
}
.cookie-banner .cookie-consent-btn.ghost {
  background: #f4f7fa;
  color: #223E56;
  border: 1px solid #e1e6ea;
}
.cookie-banner .cookie-consent-btn.ghost:hover,
.cookie-banner .cookie-consent-btn.ghost:focus {
  background: #e9f0f0;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 11px 7px 13px 10px;
    gap: 10px;
    font-size: 0.93rem;
  }
  .cookie-banner .cookie-btns {
    gap: 7px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 14000;
  width: 100vw;
  height: 100vh;
  background: rgba(34,62,86,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.21s;
  opacity: 1;
}
.cookie-modal.hide {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 380px;
  width: 93vw;
  box-shadow: 0 3px 32px 2px rgba(34,62,86,0.13);
  padding: 29px 28px 21px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.38rem;
  color: #223E56;
  cursor: pointer;
}
.cookie-modal .cookie-modal-content h2 {
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #69B0AC;
  width: 20px; height: 20px;
  border-radius: 4px;
  margin-right: 1px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #223E56;
}
.cookie-modal .cookie-category .cookie-lock {
  font-size: 1.1rem;
  color: #bbb;
  margin-left: 4px;
}

/* Cookie modal buttons */
.cookie-modal .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-consent-btn {
  border-radius: 17px;
  padding: 9px 15px;
  font-size: 0.99rem;
}

/* --- GENERAL ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-btn, .cookie-consent-btn, button {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.11s;
}
.cta-btn:active, .cookie-consent-btn:active, button:active {
  transform: scale(0.97);
}
.card, .testimonial-card {
  transition: box-shadow 0.19s, background 0.17s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(34,62,86,0.17);
}

/* --- UTILITY CLASSES --- */
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.text-center {text-align: center !important;}
.flex {display: flex !important;}
.flex-col {flex-direction: column !important;}
.align-center {align-items: center !important;}

/* --- PRINT STYLES --- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {display: none !important;}
  main, section, .container {box-shadow: none!important; background: #fff!important;}
}

/* --- END OF STYLE.CSS --- */
