/* CSS RESET & SCANDINAVIAN CLEAN DEFAULTS */
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, button,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F6F2;
  color: #195959;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0.4em;
}
li {
  margin-bottom: 8px;
}
a {
  text-decoration: none;
  color: #195959;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B3D76A;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #195959;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(25,89,89,0.06);
  border-bottom: 1px solid #E6ECE6;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  padding: 7px 12px;
  border-radius: 6px;
  transition: background-color 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2F6F2;
  color: #195959;
}
.cta-btn {
  background: #B3D76A;
  color: #195959;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  padding: 11px 32px;
  border-radius: 24px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(25,89,89,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A5C85F;
  color: #195959;
  box-shadow: 0 4px 18px 0 rgba(179,215,106,0.19);
}

/***** BURGER MENU (MOBILE) *****/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #195959;
  font-size: 2.1rem;
  display: none;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 21;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E6ECE6;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffffcc;
  box-shadow: 0 8px 32px 0 rgba(25, 89, 89, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  z-index: 101;
  transition: transform 0.36s cubic-bezier(.93,-0.01,.34,.99), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #195959;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s;
  z-index: 102;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: #E6ECE6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 40px 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  color: #195959;
  border-radius: 8px;
  padding: 14px 10px;
  font-weight: 600;
  transition: background 0.12s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6ECE6;
  color: #195959;
}

/***** HERO SECTIONS *****/
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section:first-of-type {
  margin-top: 0;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 0;
    margin-bottom: 36px;
  }
}

/***** FEATURES, CARDS, TESTIMONIALS, GRIDS *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 14px 0 rgba(25,89,89,0.05);
  padding: 30px 22px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(25,89,89,0.13);
  transform: translateY(-3px) scale(1.022);
}
.feature-grid img {
  width: 38px; height: 38px;
  margin-bottom: 3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(25,89,89,0.05);
  border-radius: 16px;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 22px rgba(25,89,89,0.13);
  transform: translateY(-2px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 22px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(25,89,89,0.09);
  margin-bottom: 20px;
  max-width: 530px;
  min-width: 240px;
  position: relative;
}
.testimonial-card p {
  color: #195959;
  font-size: 1.1rem;
  letter-spacing: 0.05px;
  margin-bottom: 10px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #195959;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
  filter: grayscale(0%) brightness(1.1) saturate(1.6);
}
@media (max-width: 950px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 20px 16px;
  }
}

/***** CONTENT & TEXT BLOCKS *****/
p {
  color: #195959;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
ul, ol {
  color: #195959;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 13px;
}
.text-section strong {
  color: #195959;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h2 + .content-wrapper, h2 + .feature-grid {
  margin-top: 18px;
}

/**** BUTTONS ****/
button, .cta-btn {
  outline: none;
  border: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #195959;
}
button[disabled], .cta-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Generic secondary button, can be used in modals and banners */
.secondary-btn {
  background: #FFF;
  color: #195959;
  border: 1.5px solid #195959;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  padding: 11px 28px;
  font-size: 1rem;
  margin-right: 14px;
  cursor: pointer;
  transition: color 0.16s, background 0.16s;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: #195959;
  color: #FFF;
  border-color: #195959;
}

/****** FOOTER *******/
footer {
  background: #F2F6F2;
  border-top: 1px solid #E6ECE6;
  padding: 38px 0 30px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-links, .quick-links, .legal-links {  
  color: #567;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  opacity: 0.96;
}
.footer-links a, .quick-links a {
  color: #195959;
  font-weight: 500;
}
.footer-links a:hover, .quick-links a:hover {
  color: #B3D76A;
}
.contact-short {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #195959;
  font-size: 1rem;
}
.contact-short img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.82;
}
.legal-links {
  font-size: 0.95rem;
  color: #859b95;
}
.social-media-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-media-icons img {
  width: 30px; height: 30px;
  opacity: 0.9;
  transition: opacity 0.13s, transform 0.13s;
  cursor: pointer;
}
.social-media-icons img:hover {
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 700px) {
  footer .container {
    gap: 10px;
    padding: 0 4px;
    font-size: 0.96rem;
  }
  .contact-short {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

/****** COOKIE CONSENT BANNER ******/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.7px solid #A5C85F;
  box-shadow: 0 -2px 16px 0 rgba(25,89,89,0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  z-index: 1200;
  gap: 22px;
  animation: ccbannerIn 0.6s cubic-bezier(.75,-.01,.4,1.02);
}
@keyframes ccbannerIn {
  from { transform:translateY(120px); opacity:0; }
  to   { transform:translateY(0); opacity:1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #195959;
  margin-bottom: 0;
  flex: 1 1 200px;
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-banner .accept-btn {
  background: #B3D76A;
  color: #195959;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .accept-btn:hover {
  background: #A5C85F;
}
.cookie-banner .settings-btn, .cookie-banner .reject-btn {
  background: #fff;
  color: #195959;
  border: 1.3px solid #195959;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .reject-btn:hover {
  background: #195959;
  color: #fff;
}
@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 8px;
  }
  .cookie-banner .cookie-banner-btns {
    gap: 9px;
    flex-direction: column;
    width: 100%;
  }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,89,89,0.20);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ccmIn .30s cubic-bezier(.61,-0.22,.43,1.09);
}
@keyframes ccmIn {
  from{ opacity:0; }
  to{ opacity:1; }
}
.cookie-modal {
  background: #fff;
  padding: 40px 28px 30px 28px;
  box-shadow: 0 8px 32px 0 rgba(25,89,89,0.17);
  border-radius: 23px;
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position:relative;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 17px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 3px;
}
.cookie-cat-row label {
  flex: 1 1 auto;
  color: #195959;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-cat-toggle {
  width: 36px; height: 20px;
  border-radius: 10px;
  background: #E6ECE6;
  position: relative;
  margin-left: 8px;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cookie-cat-toggle input {
  display: none;
}
.cookie-cat-toggle span {
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #B3D76A;
  transition: left 0.18s, background 0.18s;
}
.cookie-cat-toggle input:checked + span {
  left: 19px;
  background: #195959;
}
.cookie-modal .modal-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .close-modal-btn {
  background: none;
  border: none;
  position: absolute;
  top: 17px; right: 17px;
  color: #195959;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: #E6ECE6;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 12px;
  }
}

/****** RESPONSIVE FLEX AND SPACING RULES ******/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.card {
  min-width: 190px;
  max-width: 320px;
}

/***** UTILITY CLASSES & ACCESSIBILITY ******/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/***** MODALS & OVERLAYS (GENERIC) *****/
.modal-overlay {
  z-index: 5000;
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,89,89,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** MISC VISUAL ELEMENTS *****/
hr {
  border: none;
  border-top: 1px solid #E6ECE6;
  margin: 30px 0;
}

/* Accordion, collapse, FAQ (Optional for policies) */
.collapse {
  border: none;
  background: #F2F6F2;
  margin-bottom: 16px;
  padding: 14px 10px;
  border-radius: 8px;
}

/***** PRINT CLARITY ******/
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .modal-overlay {
    display: none !important;
  }
}
