/* -----------------------------------------------------
   CSS RESET & 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  background: #F3F6FB;
  color: #1F3B56;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em 1.25em; }
b, strong { font-weight: 700; }
a {
  color: #1F3B56;
  text-decoration: none;
  transition: color 0.18s;
  outline: none;
}
a:focus, a:hover {
  color: #5EC09A;
  text-decoration: underline;
}
::selection {
  background: #5EC09A;
  color: #fff;
}

/* -----------------------------------------------------
   CONTAINER & LAYOUT
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(31,59,86,0.04);
}
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .section { padding: 24px 8px; margin-bottom: 36px; }
}

/* -----------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1F3B56;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 10px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 8px; }
h3 { font-size: 1.25rem; margin-bottom: 6px; }
h4 { font-size: 1.1rem; margin-bottom: 4px; }
p, ul, ol { font-size: 1rem; }
ul, ol { margin-bottom: 16px; }
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
address, .brand-info span, .brand-info a {
  font-size: 0.97rem;
  color: #3b5972;
}
.address-map { display: flex; align-items: center; gap: 10px; margin-top: 12px; }

/* Responsive Heading Sizes */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}

/* -----------------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(31,59,86,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
  min-height: 68px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 68px;
  gap: 0;
}
.logo img { height: 44px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 24px 0 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  display: block;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background .18s, color .15s;
  color: #1F3B56;
}
.main-nav a:hover, .main-nav a:focus {
  background: #5EC09A22;
  color: #5EC09A;
}
.cta-button {
  display: inline-block;
  background: #5EC09A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(31,59,86,0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  margin-left: 16px;
  outline: none;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #369378;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(94,192,154,0.10);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

/* Hide burger and mobile menu by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 988px) {
  .main-nav { display: none; }
  .cta-button { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #1F3B56;
    padding: 0 12px;
    cursor: pointer;
    z-index: 60;
    transition: color .14s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: #5EC09A;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(31,59,86,.015);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .3s cubic-bezier(.48,.06,.52,1), transform .35s cubic-bezier(.48,.06,.52,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1F3B56;
  padding: 16px 22px 6px 22px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 105;
  transition: color .14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #5EC09A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  min-width: 236px;
  width: 72vw;
  max-width: 344px;
  height: 100vh;
  box-shadow: -4px 0 28px 0 rgba(39,59,86,.08);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  gap: 0;
  padding: 36px 24px 18px 30px;
  z-index: 103;
}
.mobile-nav a {
  padding: 13px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #1F3B56;
  font-weight: 500;
  width: 100%;
  border-radius: 7px;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #5EC09A22;
  color: #5EC09A;
  outline: none;
}

@media (min-width: 989px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
  background: #f9fbfd;
  margin-top: 54px;
  font-size: 1rem;
  box-shadow: 0 -2px 12px 0 rgba(31,59,86,0.03);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 38px 24px 32px 24px;
  gap: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #1F3B56;
  font-size: 1rem;
  padding: 2px 0;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #5EC09A;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #506178;
  align-items: flex-start;
}
.brand-info img {
  height: 34px;
  margin-bottom: 10px;
}

@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 28px 12px 24px 12px;
  }
  .footer-nav { flex-direction: row; gap: 20px; }
}

@media (max-width: 600px) {
  footer .container { padding: 21px 6px 12px 6px; }
  .brand-info img { height: 28px; }
  .footer-nav { flex-direction: column; gap: 7px; }
}

/* -----------------------------------------------------
   CARD LAYOUTS & FLEX UTILITY
----------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(31,59,86,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 280px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(94,192,154,0.13);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 24px 18px 20px 18px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

@media (max-width: 768px) {
  .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* -----------------------------------------------------
   FEATURE LISTS, TESTIMONIALS, UTILITY
----------------------------------------------------- */
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 18px;
  color: #25425f;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  padding: 15px 0 7px 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F3F6FB;
  box-shadow: 0 2px 16px 0 rgba(31,59,86,0.04);
  border-radius: 13px;
  padding: 20px;
  margin-bottom: 20px;
  color: #1F3B56;
  font-size: 1.06rem;
  position: relative;
  min-width: 0;
}
.testimonial-card p {
  color: #163556;
  margin-bottom: 0;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-style: italic;
  color: #34667f;
  margin-left: auto;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 10px;
  }
  .testimonial-card span { margin-left: 0; }
}

/* -----------------------------------------------------
   BUTTONS, FORMS & MICRO-INTERACTIONS
----------------------------------------------------- */
button, .cta-button {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: background 0.18s, box-shadow 0.13s, transform .12s;
}
button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #5EC09A;
  outline-offset: 2px;
}

/* Inline link override */
p a { text-decoration: underline; }

/* Decor accents (separators, icons) */
hr {
  border: none;
  border-top: 1px solid #e3e8ef;
  margin: 32px 0;
}

/* -----------------------------------------------------
   RESPONSIVE SECTION SPACING
----------------------------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  section, .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 13px;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1.5px solid #e7ebf1;
  box-shadow: 0 -2px 24px 0 rgba(31,59,86,0.09);
  z-index: 2000;
  padding: 22px 16px;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(70px);
  transition: opacity .3s cubic-bezier(.48,.06,.52,1), transform .34s cubic-bezier(.48,.06,.52,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-message {
  color: #1F3B56;
  font-size: 1.01rem;
  margin-right: 16px;
  margin-bottom: 8px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btn, .cookie-btn-settings {
  display: inline-block;
  padding: 10px 21px;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: background 0.19s, color 0.13s, box-shadow .14s;
  border: none;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #5EC09A;
  color: #fff !important;
  box-shadow: 0 2px 8px 0 rgba(94,192,154,0.066);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #369378; }
.cookie-btn.reject {
  background: #E8EDF3;
  color: #1F3B56 !important;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #d1e4de; }
.cookie-btn-settings {
  background: none;
  color: #5EC09A;
  text-decoration: underline;
  padding: 8px 16px;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus { color: #1F3B56; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2050;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,59,86,0.13);
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .21s cubic-bezier(.5,.2,.5,1);
}
.cookie-modal-overlay.visible {
  opacity: 1; pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 30px 0 rgba(31,59,86,0.13);
  min-width: 300px;
  max-width: 97vw;
  width: 400px;
  padding: 32px 30px 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2051;
  position: relative;
  animation: fadeInModal .35s cubic-bezier(.48,.06,.52,1);
}
@keyframes fadeInModal {
  0% { opacity:0; transform: translateY(28px) scale(.96); }
  100% { opacity:1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.2rem; margin-bottom: 12px;
  color: #1F3B56;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #5EC09A;
  width: 21px; height: 21px;
  border-radius: 6px;
}
.cookie-category label {
  color: #25425f;
  font-size: 1.03rem;
  cursor: pointer;
}
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: #5EC09A;
  font-size: 1.62rem;
  cursor: pointer;
  z-index: 2060;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1F3B56;
}

@media (max-width: 570px) {
  .cookie-modal {
    min-width: unset;
    width: 94vw;
    padding: 18px 8px 8px 13px;
  }
}

/* -----------------------------------------------------
   UTILITIES (GAP, SPACING, FLEX)
----------------------------------------------------- */
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* -----------------------------------------------------
   SCANDINAVIAN CLEAN AESTHETICS
----------------------------------------------------- */
body, section, .section {
  background: #F3F6FB;
}
section, .section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  box-shadow: 0 2px 18px 0 rgba(31,59,86,0.03);
}
h1, h2, h3, h4 {
  letter-spacing: -0.5px;
}
ul li b, ul li strong, ol li b, ol li strong {
  color: #1F3B56;
}

/* -----------------------------------------------------
   MISC RESPONSIVE / MOBILE FIRST
----------------------------------------------------- */
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1rem; }
  .cta-button { font-size: .98rem; padding: 10px 18px; }
  .brand-info { font-size: 0.93rem; }
  .address-map p { font-size: 0.97rem; }
  .card-content { padding: 14px 6px 14px 6px; }
}

/* -----------------------------------------------------
   ACCESSIBILITY OUTLINES
----------------------------------------------------- */
:focus-visible {
  outline: 2px solid #5EC09A;
  outline-offset: 3px;
}

/* -----------------------------------------------------
   END OF CSS FILE
----------------------------------------------------- */