/* ==========================================================================  
   CSS RESET & NORMALIZE FOR SCANDINAVIAN CLEAN  
   ========================================================================== */
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, 
main, 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;
  box-sizing: border-box;
}
body {
  background: #fff;
  color: #26313d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
ul, ol {
  margin: 0 0 1.2em 1.5em;
  padding-left: 1.25em;
}
av {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid #204B80;
  outline-offset: 2px;
}

/* FONTS ==================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #204B80;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
h4 {
  font-size: 1.15rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #26313d;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: #204B80;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(84, 103, 133, 0.04);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  max-width: 800px;
}

/* FLEXBOX-BASED LAYOUTS ===================================================== */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature-grid > div {
  background: #F7F8FA;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(43, 62, 88, 0.04);
  padding: 28px 22px 22px 22px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.21s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 20px 0 rgba(32, 75, 128, 0.09);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(32,75,128,0.05);
  padding: 24px 18px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,75,128,0.13);
}

.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;
  border-radius: 18px;
  background: #F7F8FB;
  box-shadow: 0 2px 12px 0 rgba(32,75,128,0.09);
  margin-bottom: 20px;  
  color: #222;
  font-size: 1.08rem;
  min-width: 240px;
  max-width: 510px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(32,75,128,0.13);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #26313d;
  margin-bottom: 6px;
}
.testimonial-author {
  font-weight: 500;
  color: #204B80;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card .star-rating {
  display: flex;
  gap: 2px;
  align-items: center;
}

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

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-list > div {
  flex: 1 1 350px;
  background: #F6FAF4;
  padding: 20px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0px 8px 0 rgba(92,142,56,0.07);
}
.faq-list h3 {
  color: #5C8E38;
  font-size: 1.1rem;
  font-weight: 600;
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.article-list article {
  background: #F7F8FA;
  border-radius: 12px;
  padding: 22px 18px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.article-list article:hover {
  box-shadow: 0 6px 24px 0 rgba(32,75,128,.09);
}
.article-list span {
  display: inline-block;
  margin-top: 6px;
  color: #5C8E38;
  font-size: 0.98rem;
  font-weight: 500;
}

.map-embed-placeholder {
  background: #EDEDED;
  height: 180px;
  border-radius: 14px;
  margin-top: 16px;
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 6px;
  width: 18px;
}

/* PRIMARY BUTTONS =========================================================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 14px 34px;
  border-radius: 7px;
  cursor: pointer;
  text-align: center;
  min-width: 155px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border: none;
  outline: none;
  margin-top: 14px;
  box-shadow: 0 1px 8px 0 rgba(32,75,128,0.08);
}
.btn-primary {
  background: #204B80;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1b406e;
  box-shadow: 0 2px 16px 0 rgba(32,75,128,0.15);
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #204B80;
  border: 2px solid #204B80;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #204B80;
  color: #fff;
}

/* Inputs & SELECTS (minimal, clean) ======================================= */
input[type="search"], input[type="text"], select {
  display: inline-block;
  width: 190px;
  max-width: 100%;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid #d2dadf;
  margin-right: 10px;
  background: #fafbfc;
  transition: border 0.14s;
  box-shadow: none;
  color: #204B80;
  font-size: 1rem;
}
input[type="search"]:focus, 
select:focus {
  border: 1.5px solid #204B80;
  background: #fff;
}

/* LISTS (OL / UL) ======================================================== */
ul, ol {
  margin-bottom: 18px;
  padding-left: 1.5em;
}
ul li, ol li {
  margin-bottom: 11px;
  color: #26313d;
}
ol li {
  list-style-type: decimal;
  margin-left: 0.4em;
}
ul li {
  list-style-type: disc;
}

/* HERO SECTIONS ========================================================= */
.hero {
  background: #F7F8FB;
  padding: 60px 0 48px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #204B80;
  margin-bottom: 17px;
}
.hero p {
  color: #26313d;
  font-size: 1.15rem;
  margin-bottom: 11px;
}

/* NAVIGATION - Desktop + Mobile ============================================== */
header {
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(32,75,128,0.06);
  position: sticky;
  top: 0;
  z-index: 120;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
  position: relative;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #204B80;
  font-size: 1.02rem;
  padding: 7px 2px;
  border-radius: 4px;
  position: relative;
  transition: background 0.12s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EDEDED;
  color: #5C8E38;
}
header .btn-primary {
  margin-left: 20px;
  margin-top: 0;
  font-size: 1rem;
}

/* BURGER MENU (Mobile) =================================================== */
.mobile-menu-toggle {
  display: none;
  background: #204B80;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2.1rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 180;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #142f4c;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(32,75,128,0.23);
  transform: translateX(-120vw);
  transition: transform 0.38s cubic-bezier(.7,0,.21,1);
  z-index: 2000;
  padding: 0 0 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #204B80;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  align-self: flex-end;
  margin: 24px 20px 0 0;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #142f4c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin: 48px 0 0 0;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #204B80;
  padding: 11px 0;
  transition: color 0.11s;
  width: 100%;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #5C8E38;
  background: #EDEDED;
}

/* Hide main nav and enable burger on mobile ============================== */
@media (max-width: 992px) {
  .main-nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* FOOTER ================================================================= */
footer {
  background: #F7F8FA;
  padding: 42px 0 0 0;
  margin-top: 64px;
  font-size: 1.06rem;
  color: #204B80;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 18px;
}
.footer-links {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
}
.footer-links a {
  color: #204B80;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 0.10s;
}
.footer-links a:hover {
  color: #5C8E38;
}
.brand-footer img {
  height: 36px;
  margin-bottom: 10px;
}
.brand-footer p {
  line-height: 1.6;
  font-size: 1rem;
  color: #26313d;
}
.brand-footer a {
  color: #5C8E38;
  text-decoration: underline;
}
.legal-footer {
  padding: 13px 0 0 0;
  color: #97a2b7;
  font-size: 0.97rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.legal-footer a {
  color: #8BA1C8;
  text-decoration: underline;
}
.legal-footer a:hover {
  color: #5C8E38;
}

/* RESPONSIVE DESIGN ============================================================== */
/* MOBILE-FIRST: default column flex, switch to row on md+ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 40px;
    border-radius: 11px;
  }
  .feature-grid, .card-container, .content-grid, .faq-list, .article-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div,
  .article-list article,
  .card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
  }
  .content-wrapper, .text-section {
    gap: 13px;
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
  }
  .hero {
    padding: 36px 0 26px 0;
    border-radius: 0 0 18px 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-links nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 569px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.18rem;
  }
}
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}

/* COOKIE CONSENT BANNER ========================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10800;
  background: rgba(255,255,255,0.98);
  color: #26313d;
  border-top: 2.5px solid #204B80;
  box-shadow: 0 -2px 24px 0 rgba(32,75,128,0.08);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 26px 8px;
  min-height: 68px;
  font-size: 1.0rem;
  opacity: 1;
  transition: opacity 0.24s, transform 0.26s;
}
.cookie-consent-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 350px;
  max-width: 600px;
}
.cookie-consent-banner .cookie-btn-row {
  display: flex;
  gap: 11px;
  align-items: center;
}
.cookie-btn {
  padding: 11px 26px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.0rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: #204B80;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #15375b;
}
.cookie-btn.reject {
  background: #fff;
  color: #204B80;
  border: 1.5px solid #204B80;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F3F6F9;
  color: #15375b;
}
.cookie-btn.settings {
  background: #5C8E38;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #457228;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 4px;
    gap: 12px;
  }
  .cookie-consent-banner .cookie-btn-row {
    gap: 5px;
    justify-content: flex-end;
  }
}

/* COOKIE MODAL ================================================= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 14000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(61,82,102,0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #26313d;
  border-radius: 16px;
  box-shadow: 0 6px 44px 0 rgba(32,75,128,0.21);
  max-width: 400px;
  width: 93vw;
  padding: 32px 25px 19px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  animation: cookieModalIn 0.29s cubic-bezier(.1,.8,.32,1.1);
}
@keyframes cookieModalIn {
  from { transform: translateY(55px) scale(0.97); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-modal h2 {
  color: #204B80;
  margin-bottom: 10px;
  font-size: 1.28rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #EEF1F4;
  color: #26313d;
}
.cookie-category:last-child {border-bottom: none;}
.cookie-category input[type=checkbox]{
  accent-color: #204B80;
  width: 1.1em;
  height: 1.1em;
}
.cookie-category.essential label {
  color: #5C8E38;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 11px;
  background: #204B80;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  font-size: 1.23rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #1a395f;
}

/* MICRO-INTERACTIONS/TRANSITIONS ============================================ */
a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.14s, color 0.16s, box-shadow 0.19s;
}
input, select {
  transition: border 0.16s;
}
.card, .feature-grid > div, .testimonial-card, .article-list article {
  transition: box-shadow 0.22s;
}

/* MISC UTILITIES ============================================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.no-select { user-select: none; }
.nowrap { white-space: nowrap; }

/* CLASSES FROM MANDATORY LAYOUTS ============================================ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* END OF FILE */
