/* --- 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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F3EC;
  color: #233C53;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 22px;
}
strong {
  font-weight: bold;
}

/* --- BRAND COLORS AS CSS VARIABLES FOR EASY TWEAKABILITY--- */
:root {
  --color-primary: #233C53;
  --color-secondary: #89A271;
  --color-accent: #F5F3EC;
  --color-text: #233C53;
  --color-text-light: #789;
  --color-bg: #F5F3EC;
  --color-white: #fff;
  --color-input-border: #E2E2E2;
  --shadow-card: 0 2px 12px rgba(35, 60, 83, 0.06);
}

/* --- TYPOGRAPHY FOR SCANDINAVIAN CLEAN LOOK --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.14;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--color-secondary);
  font-weight: 400;
}
.sub {
  font-size: 1rem;
  color: #6D7B8B;
  margin-bottom: 12px;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
blockquote {
  font-style: italic;
  color: var(--color-secondary);
  padding-left: 16px;
  border-left: 3px solid var(--color-secondary);
  background: rgba(137,162,113,0.05);
  margin-bottom: 14px;
}
.center-text {
  text-align: center;
}

/* --- CONTAINER & SPACING PATTERNS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover,
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(35,60,83,0.11);
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(35, 60, 83, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #233C53;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--color-secondary);
}
.ratings-summary {
  background: #F5F3EC;
  color: var(--color-primary);
  padding: 18px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.ratings-summary img {
  height: 1.2em;
  vertical-align: middle;
}

/**** HEADER, NAVIGATION, BURGER MENU ****/
header {
  background: var(--color-white);
  width: 100%;
  border-bottom: 1px solid #e4e7ed;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 62px;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 7px;
  border-radius: 7px;
  position: relative;
  transition: background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  padding: 12px 30px;
  margin: 12px 0 0 0;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, box-shadow 0.21s;
  box-shadow: 0 1px 7px rgba(35,60,83,0.07);
  outline: none;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn-primary:hover, .btn-primary:focus {
  background: #6c8753;
  color: var(--color-white);
}
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #142132;
  color: var(--color-accent);
}

/**** MOBILE HAMBURGER & MOBILE MENU ****/
.mobile-menu-toggle {
  background: var(--color-accent);
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 3px 14px 1px;
  margin-left: 8px;
  cursor: pointer;
  display: none;
  transition: background 0.2s;
  z-index: 140;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--color-white);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.41,.25,.37,1.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(35,60,83,0.11);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 14px;
  font-size: 2rem;
  margin: 22px 0 5px 0;
  cursor: pointer;
  padding: 2px 12px;
  transition: background 0.2s, color 0.2s;
  z-index: 202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 5px 13px 0;
  border-radius: 10px;
  font-size: 1.18rem;
  color: var(--color-primary);
  background: none;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/**** HERO SECTION VARIANT ****/
.hero {
  padding: 24px 0 30px 0;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
}

/**** ICON-ROW & ICONS ****/
.icon-row {
  display: flex;
  gap: 30px;
  margin: 20px 0 0 0;
  align-items: center;
  flex-wrap: wrap;
}
.icon-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.97rem;
  color: var(--color-primary);
  font-weight: 500;
}
.icon-row img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
}

/**** CONTACT INFO BLOCKS ****/
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 22px 0 13px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0;
}
.contact-row img {
  width: 20px;
  height: 20px;
}
.map-embed {
  display: flex;
  align-items: center;
  background: rgba(35,60,83,0.03);
  border-radius: 10px;
  padding: 14px 15px;
  margin: 18px 0 0 0;
}

/**** FOOTER ****/
footer {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 36px 0 18px 0;
  border-top: 1px solid #e4e7ed;
}
.grid-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.grid-footer > div, .grid-footer nav {
  min-width: 220px;
  margin-bottom: 18px;
}
.grid-footer img {
  height: 38px;
  margin-bottom: 10px;
}
.grid-footer p {
  color: var(--color-primary);
  font-size: 0.99rem;
  margin-bottom: 0;
}
.grid-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.grid-footer nav a {
  color: var(--color-primary);
  font-size: 0.97rem;
  padding: 4px 0;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.grid-footer nav a:hover, .grid-footer nav a:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}

/**** GENERAL LISTS ****/
ul, ol {
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 9px;
}

/**** COOKIE CONSENT BANNER + MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-primary);
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 24px rgba(35,60,83,0.09);
  z-index: 1004;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 18px 15px 15px 15px;
  animation: cookie-slide-up 0.36s cubic-bezier(.3,1.6,.62,1) both;
}
@keyframes cookie-slide-up {
  from { transform: translateY(105%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 0px;
}
.cookie-banner button {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 3px;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-white);
  transition: background 0.2s, color 0.18s;
}
.cookie-banner button.accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #6c8753;
}
.cookie-banner button.reject {
  background: #dcdcdc;
  color: #233C53;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #c8c8c8;
  color: #233C53;
}
.cookie-banner button.settings {
  background: var(--color-primary);
  color: var(--color-white);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #142132;
}

/**** COOKIE MODAL ****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35, 60, 83, 0.28);
  z-index: 1202;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie-overlay 0.3s;
}
@keyframes fadein-cookie-overlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 430px;
  width: 92vw;
  box-shadow: 0 10px 32px rgba(35,60,83,0.22);
  padding: 32px 25px 24px 25px;
  position: relative;
  font-size: 1rem;
  animation: modal-fadein 0.33s cubic-bezier(.3,1.7,.22,1) both;
}
@keyframes modal-fadein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.cookie-modal button {
  margin: 14px 6px 0 0;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-white);
  transition: background 0.19s, color 0.14s;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px;
  top: 17px;
  background: none;
  color: #a2a2a2;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-primary);
}

/**** FORMS, INPUTS (UNIFORM STYLE EVEN IF NOT IN HTML NOW) ****/
input, select, textarea, button {
  font-family: inherit;
}
input, select, textarea {
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  color: var(--color-primary);
  background: #f8f8f6;
  margin-bottom: 15px;
  outline: none;
  transition: border 0.19s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 1px 9px rgba(137,162,113,0.09);
}

/* --- SPECIAL CLASSES & STRUCTURES --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}

/**** CARDS, CAROUSEL LOGIC ****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/**** Feature Lists & Info Banners ****/
.feature-list, .info-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0 0 0;
}
.info-banner {
  background: rgba(137,162,113,0.09);
  border-radius: 16px;
  padding: 24px 14px;
  margin: 12px 0 24px 0;
  color: var(--color-primary);
}

/**** ANIMATIONS & TRANSITIONS ****/
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s, transform 0.35s;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/**** RESPONSIVE DESIGN: MOBILE-FIRST, THEN DESKTOP BREAKPOINTS ****/
/*--- Mobile (default) ---*/
/* All flex containers are column by default */
/*--- Tablet & Above ---*/
@media (min-width: 720px) {
  .container {
    padding: 0 34px;
  }
  .main-nav {
    gap: 28px;
  }
}
@media (min-width: 900px) {
  .content-wrapper { max-width: 88%; margin: 0 auto; }
  .grid-footer {
    flex-direction: row;
    align-items: flex-start;
    gap: 38px;
  }
}
@media (min-width: 1000px) {
  .section {
    padding: 60px 0 65px 0;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
  .card-container {
    flex-direction: row;
    gap: 34px;
  }
  .main-nav {
    display: flex;
    gap: 30px;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*--- Header/Nav: Show/hide main nav & burger ---*/
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .section {
    padding: 28px 5px;
    margin-bottom: 32px;
  }
  .testimonials-card, .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 16px 9px;
  }
  .testimonial-card {
    font-size: 0.93rem;
  }
  .icon-row {
    gap: 16px;
  }
  .card {
    padding: 15px 8px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .grid-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
  .center-text { text-align: center; }
  .text-image-section, 
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
}

/**** UTIL CLASSES ****/
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }

/* Hide on desktop */
.desktop-hidden { display: none; }
@media (max-width: 900px) { .desktop-hidden { display: block !important; } }


/* -- ENSURE NO GRID/COLUMNS/COLUMN PROPERTIES EXIST -- */
/* (NO display: grid, NO column-count, NO grid-template-*, etc.) */

/***** SCANDINAVIAN CLEAN CARD AESTHETICS ******/
.card, .testimonial-card {
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  background: #fff;
  border: 1px solid #e2e7ed;
}

/**** MISC FIXES ****/
::-webkit-input-placeholder { color: #a6aaaa; opacity:1; }
:-moz-placeholder { color: #a6aaaa; }
::-moz-placeholder { color: #a6aaaa; }
:-ms-input-placeholder { color: #a6aaaa; }
::placeholder { color: #a6aaaa; }

/**** SCANDINAVIAN DETAILS ****/
.card, .content-wrapper, .contact-info-block, .feature-list {
  /* Subtle wood-like texture simulated by soft shadowing + clean white bg for Scandinavian touch */
}

/*---- End of CSS ----*/
