/* === 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, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F6F6F6;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #156064;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}
p + p {
  margin-top: 12px;
}
strong {
  font-weight: 700;
}
small {
  color: #555;
  font-size: 0.95em;
}

/* === GLOBAL LAYOUT === */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(30,46,70,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(21,96,100,0.05);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(21,96,100,0.14);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 28px;
  background: #F6F6F6;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(21,96,100,0.045);
  margin-bottom: 20px;
  color: #212121;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #1A4046;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #888;
  font-size: 0.96em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.feature-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #156064;
  background: #F6F6F6;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.99rem;
  transition: background 0.18s;
}
.feature-icons div:hover {
  background: #e7f8f7;
}

/* === HERO & CTA === */
.hero {
  background: linear-gradient(120deg, #F6F6F6 72%, #e7f8f7 100%);
  border: none;
  margin-bottom: 60px;
  padding: 54px 0 40px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 30px rgba(21,96,100,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #156064;
  font-size: 2.5rem;
}
.cta {
  background: #fffbe7;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 10px rgba(255,215,0,0.08);
}
.cta .button-primary {
  margin-top: 18px;
}

/* === BUTTONS === */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #156064;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  border-radius: 22px;
  padding: 12px 28px;
  box-shadow: 0 2px 10px rgba(21,96,100,0.10);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 8px;
}
.button-primary:hover, .button-primary:focus {
  background: #124e51;
  box-shadow: 0 6px 24px rgba(21,96,100,0.14);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.button-secondary {
  display: inline-flex;
  background: #fff;
  color: #156064;
  border: 2px solid #156064;
  padding: 12px 26px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #f5ffff;
  color: #124e51;
  border-color: #124e51;
}

/* === LISTS === */
ul, ol {
  margin: 0 0 16px 0;
  padding: 0;
  color: #222;
}
ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
ul li::before {
  content: '';
  background: #FFD700;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 9px;
}
ol li {
  margin-bottom: 9px;
  padding-left: 6px;
  list-style: decimal inside;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 2px 14px rgba(30,46,70,0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 68px;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #156064;
  font-size: 1rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 2rem;
  color: #156064;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.13s, box-shadow 0.13s;
  z-index: 1200;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e7f8f7;
}
.button-primary {
  margin-left: 16px;
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(21,96,100,0.12);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  border: none;
  color: #156064;
  font-size: 2.3rem;
  margin: 26px 24px 12px 0;
  align-self: flex-end;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2100;
  transition: background 0.13s;
  padding: 2px 14px 2px 14px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e7f8f7;
}
.mobile-nav {
  width: 92vw;
  max-width: 340px;
  background: #fff;
  height: 100vh;
  box-shadow: -4px 0 24px rgba(21,96,100,0.14);
  padding: 46px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.64,.09,.17,1);
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #156064;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 14px 0 10px 0;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  transition: background 0.13s, color 0.17s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7f8f7;
  color: #FFD700;
}

/* === FOOTER === */
footer {
  background: #fff;
  padding: 46px 20px 32px 20px;
  box-shadow: 0 -2px 12px rgba(21,96,100,0.04);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 80px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-direction: column;
}
.footer-branding img {
  height: 38px;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #156064;
}
.footer-branding small {
  color: #888;
  font-size: 0.93rem;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 8px 0;
}
.footer-nav a, .legal-nav a {
  color: #156064;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .legal-nav a:hover, .footer-nav a:focus, .legal-nav a:focus {
  color: #FFD700;
}
address {
  color: #555;
  text-align: center;
  font-size: 0.98rem;
  margin-top: 8px;
  line-height: 1.6;
}
address img {
  height: 17px;
  width: 17px;
  margin-right: 2px;
  vertical-align: middle;
}

/* === CONTACT DETAILS === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 12px 0;
}
.contact-details img {
  height: 16px;
  width: 16px;
  margin-right: 4px;
  vertical-align: middle;
}
.contact-details p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #156064;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 890px) {
  .main-nav {
    gap: 13px;
    font-size: 0.97rem;
  }
  header {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  header {
    min-height: 52px;
    flex-direction: row;
    padding: 9px 0;
  }
  .main-nav {
    display: none;
  }
  .button-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  .footer-nav, .legal-nav {
    gap: 13px;
    font-size: 0.95rem;
  }
  .section, .cta {
    padding: 22px 5px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card, .card {
    padding: 14px 12px;
  }
  .feature-icons {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .footer-branding img {
    height: 29px;
  }
}

/* === SCANDINAVIAN CLEAN MICRO-EFFECTS === */
.card, .testimonial-card, .cta, .feature-icons div {
  transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
}
.card:hover {
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(21,96,100,0.10);
  background: #f9fafb;
}
.cta:hover {
  box-shadow: 0 6px 30px rgba(255,215,0,0.13);
  background: #fffde9;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #1a4046;
  z-index: 4000;
  box-shadow: 0 -2px 16px rgba(21,96,100,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 22px 6vw 22px 6vw;
  transition: transform 0.28s cubic-bezier(.63,0,.21,1);
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-banner__text {
  flex: 2 1 390px;
  color: #1a4046;
  font-size: 1rem;
}
.cookie-consent-banner__buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 13px;
}
.cookie-consent-banner .button-primary, .cookie-consent-banner__accept {
  background: #156064;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.18s;
}
.cookie-consent-banner .button-primary:hover, .cookie-consent-banner .button-primary:focus {
  background: #124e51;
}
.cookie-consent-banner .button-secondary, .cookie-consent-banner__reject {
  background: #fff;
  border: 2px solid #156064;
  color: #156064;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cookie-consent-banner .button-secondary:hover, .cookie-consent-banner .button-secondary:focus {
  background: #e7f8f7;
  color: #124e51;
  border-color: #124e51;
}
.cookie-consent-banner__settings {
  background: #FFD700;
  color: #156064;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 14px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255,215,0,0.07);
  margin-left: 4px;
  transition: background 0.14s;
}
.cookie-consent-banner__settings:hover, .cookie-consent-banner__settings:focus {
  background: #ffe88a;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 13px 10px 17px 10px;
    font-size: 0.96rem;
  }
  .cookie-consent-banner__buttons {
    gap: 8px;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,46,70,0.23);
  z-index: 4010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.26s cubic-bezier(.73,0,.27,1);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 42px rgba(21,96,100,0.15);
  padding: 33px 27px 22px 27px;
  width: 96vw;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInModal 0.37s cubic-bezier(.74,0,.25,1);
  color: #222;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.97) translateY(25px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #156064;
  margin-bottom: 6px;
}
.cookie-modal__close {
  align-self: flex-end;
  background: #fff;
  color: #156064;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 12px;
  transition: background 0.13s;
  margin-bottom: 2px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #e7f8f7;
}
.cookie-modal__category {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0 9px 0;
}
.cookie-modal__category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal__category .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.cookie-modal__category .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal__category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F6F6F6;
  transition: background 0.18s;
  border-radius: 13px;
}
.cookie-modal__category .switch input:checked + .slider {
  background: #FFD700;
}
.cookie-modal__category .slider:before {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.24s;
  box-shadow: 0 1px 3px rgba(30,46,70,0.08);
}
.cookie-modal__category .switch input:checked + .slider:before {
  transform: translateX(17px);
  background: #fffbe7;
}
.cookie-modal__category .desc {
  font-size: 0.96rem;
  color: #444;
  margin-left: 6px;
}
.cookie-modal__category .always {
  font-size: 0.93rem;
  color: #888;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* === TYPOGRAPHY SCALE === */
@media (min-width: 992px) {
  h1 {
    font-size: 2.9rem;
  }
  h2 {
    font-size: 2rem;
  }
  p, li {
    font-size: 1.09rem;
  }
  .button-primary, .button-secondary {
    font-size: 1.08rem;
  }
}

/* === Z-INDEX LAYERS === */
header { z-index: 999; }
.mobile-menu { z-index: 2000; }
.cookie-consent-banner { z-index: 4000; }
.cookie-modal { z-index: 4010; }

/* === VISUAL FURNITURE === */
hr {
  border: 0;
  height: 1px;
  background: #eaeaea;
  margin: 24px 0;
}

/* === HELPER CLASSES === */
.text-center { text-align: center; }
.hide { display: none!important; }

/* === FOCUS STATES === */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px dashed #FFD700;
  outline-offset: 2px;
}

/* === SELECTION COLOR === */
::selection {
  background: #FFD700;
  color: #156064;
}

/* === BRAND FONT IMPORTS: you must add these in the HTML <head> for best practice === */
/*
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
*/
