/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #22436B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #FAFAFA;
  color: #22436B;
  min-height: 100vh;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #22436B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #49A078;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 1em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  object-fit: contain;
  background: none;
}
.button, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  padding: 12px 32px;
  background: #22436B;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,67,107,0.10);
  transition: background .2s, box-shadow .2s, transform .15s;
  display: inline-block;
  margin-top: 12px;
}
.button:active, .btn-primary:active {
  transform: scale(.98);
  background: #1a3250;
}
.button:hover, .btn-primary:hover, .btn-primary:focus {
  background: #49A078;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,67,107,0.10);
}
strong {
  font-weight: 700;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22436B;
  font-weight: 700;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.18;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.25;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.22;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,67,107,0.07);
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER & NAV ------------------------------------------------------- */
header {
  background: #F6EDD2;
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 0 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 22px;
  color: #22436B;
  background: none;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #49A07815;
  color: #49A078;
}
.btn-primary {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22436B;
  cursor: pointer;
  margin-left: 12px;
  padding: 7px 12px;
  border-radius: 50%;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #49A07815;
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.7,.1,.8,1);
  box-shadow: 12px 0 40px rgba(34,67,107,.05);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform .4s cubic-bezier(.22,.58,.38,1), opacity .2s;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22436B;
  margin: 18px 24px 0 0;
  cursor: pointer;
  padding: 7px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #49A07815;
  color: #49A078;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 2px;
  padding: 24px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 12px 14px 4px;
  border-radius: 18px;
  color: #22436B;
  background: none;
  border: none;
  width: 100%;
  transition: color .18s, background .15s;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #49A07820;
  color: #49A078;
}

/* HERO SECTION ------------------------------------------------------- */
.hero {
  background: #F6EDD2;
  border-radius: 0 0 24px 24px;
  padding: 38px 0 50px 0;
  margin-bottom: 50px;
}
.hero .container {
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 19px;
}
.hero h1 {
  color: #22436B;
  font-size: 2.5rem;
}
.subheadline {
  color: #49A078;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 8px;
}

/* CTA SECTION -------------------------------------------------------- */
.cta-section {
  margin-bottom: 60px;
  padding: 45px 20px;
  background: #49A07815;
  border-radius: 20px;
  box-shadow: 0 2px 9px rgba(34,67,107,0.05);
  text-align: center;
}

.cta-section .content-wrapper {
  align-items: center;
  gap: 14px;
}
.cta-section .btn-primary {
  margin: 10px auto 0 auto;
}

/* FEATURE GRID ------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,67,107,0.06);
  padding: 28px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 330px;
  gap: 13px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(34,67,107,.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  margin: 4px 0;
  color: #49A078;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TESTIMONIALS ------------------------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #E9E9E9;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,67,107,.06);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 320px;
  flex: 1 1 320px;
  position: relative;
  color: #22436B;
  font-size: 1.04rem;
  transition: box-shadow .17s, transform .14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(34,67,107,0.11);
  transform: scale(1.01);
}
.testimonial-card blockquote {
  color: #22436B;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card .rating {
  min-width: 65px;
  display: flex;
  align-items: center;
  gap: 1px;
}
.testimonial-card cite {
  font-size: 0.95rem;
  color: #49A078;
  display: block;
  margin-left: 6px;
}
.inspiring-story {
  background: #F6EDD2;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(34,67,107,0.04);
  margin-bottom: 20px;
  margin-top: 0px;
}
.inspiring-story h3 {
  margin-bottom: 8px;
  color: #22436B;
}

/* LAYOUTS ------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,67,107,0.07);
  padding: 24px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(34,67,107,0.10);
  transform: translateY(-1px) scale(1.012);
}
.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;
}

/* CONTACT INFO ------------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #22436B;
  font-size: 1.05rem;
}
.contact-info img {
  width: 28px;
  height: 28px;
}

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #22436B;
  color: #fff;
  padding: 38px 0 18px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 14px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #F6EDD2;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 13px;
  padding: 5px 10px;
  transition: background .18s, color .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #49A07825;
  color: #fff;
}
.footer-contact {
  font-size: .97rem;
  color: #F6EDD2;
  text-align: center;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #49A078;
  transition: color .22s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #fff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

/* COOKIE CONSENT BANNER + MODAL -------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #22436B;
  border-top: 1px solid #ececec;
  box-shadow: 0 -3px 24px rgba(34,67,107,0.11);
  z-index: 50;
  padding: 20px 16px 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookieBanner-slidein .5s;
}
@keyframes cookieBanner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 2 1 340px;
  padding-right: 10px;
}
.cookie-banner__actions {
  flex: 1 1 180px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  background: #22436B;
  color: #fff;
  cursor: pointer;
  margin-left: 6px;
  margin-bottom: 2px;
  transition: background .16s, box-shadow .16s;
  box-shadow: 0 2px 5px rgba(34,67,107,0.07);
}
.cookie-btn--alt {
  background: #49A078;
  color: #fff;
}
.cookie-btn--alt:hover,
.cookie-btn--alt:focus {
  background: #386B57;
}
.cookie-btn--light {
  background: #F6EDD2;
  color: #22436B;
  border: 1px solid #d3d4be;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #49A078;
}
.cookie-btn--light:hover, .cookie-btn--light:focus {
  background: #eaddb0;
  color: #22436B;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,67,107,0.24);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModal-fadein .3s;
}
@keyframes cookieModal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(34,67,107,0.18);
  padding: 38px 22px 28px 22px;
  max-width: 95vw;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModal-slidein .37s;
}
@keyframes cookieModal-slidein {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22436B;
  margin-bottom: 8px;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 50%;
  transition: background .2s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #49A07815;
  color: #49A078;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  background: #F6EDD2;
  border-radius: 13px;
  padding: 9px 14px;
  color: #22436B;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal__toggle {
  width: 43px;
  height: 24px;
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.cookie-modal__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #dfe1e4;
  border-radius: 16px;
  transition: background .17s;
}
.cookie-modal__toggle input:checked + .cookie-modal__slider {
  background: #49A078;
}
.cookie-modal__slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(34,67,107,0.13);
  transition: transform .15s;
}
.cookie-modal__toggle input:checked + .cookie-modal__slider:before {
  transform: translateX(19px);
}
.cookie-modal .btn-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* FORM ELEMENTS ------------------------------------------------------ */
input, textarea, select {
  background: #F6EDD2;
  border: 1px solid #E4E4E4;
  border-radius: 11px;
  padding: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  margin-bottom: 11px;
  width: 100%;
  box-shadow: none;
  transition: border-color .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #49A078;
  box-shadow: 0 0 0 2px #49A07833;
}
label {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
  color: #22436B;
}

/* RESPONSIVE/MOBILE -------------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid > div { max-width: 48vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, .cta-section { padding: 28px 8px; }
  .container { padding: 0 8px; }
  .content-grid { gap: 10px; }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 1px;
    max-width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 1px;
    width: 100%;
    padding: 13px 10px;
    border-radius: 14px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: auto;
    margin-right: 8px;
    padding: 10px 16px;
    font-size: .97rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .hero { padding: 22px 0 25px 0; }
  .section, .cta-section { margin-bottom: 30px; }
  .footer-menu { gap: 10px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .99rem;
    padding: 16px 5px 15px 6px;
  }
  .cookie-banner__actions {
    gap: 8px;
    justify-content: flex-start;
  }
  .cookie-modal__content {
    padding: 23px 7px 18px 7px;
    min-width: 210px;
    width: 92vw;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------- */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.19s cubic-bezier(.44,.01,.56,1), transform 0.22s cubic-bezier(.23,.6,.32,1.04);
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.983);
  box-shadow: 0 2px 8px rgba(34,67,107,0.08);
}

.btn-primary, .button, .cookie-btn {
  transition: background .2s, color .15s, box-shadow .16s, transform .13s;
}

a, .main-nav a, .footer-menu a, .mobile-nav a {
  transition: color .16s, background .14s;
}

/* SCROLLBAR STYLE ----------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F6EDD2;
}
::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bfc1be;
}

/* SELECTION ----------------------------------------------------------- */
::selection {
  background: #F6EDD2;
  color: #22436B;
}
::-moz-selection {
  background: #F6EDD2;
  color: #22436B;
}

/* SCANDINAVIAN ELEMENTS ----------------------------------------------- */
.section, .card, .feature-grid > div, .cta-section, .testimonial-card, .footer-social {
  /* Natural touch with box-shadow, balanced white space & rounded corners */
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,67,107,0.06);
}

/* NATURAL MATERIAL (WOOD/BEIGE ACCENT) BORDERS ------------------------ */
.card, .section, .feature-grid > div {
  border: 1px solid #f3f3ea;
}

/* VISUAL HIERARCHY & SPACING ------------------------------------------ */
.section + .section, .section + .cta-section, .cta-section + .section {
  margin-top: 32px;
}
.card + .card, .feature-grid > div + .feature-grid > div {
  margin-top: 0;
}

/* VISIBILITY HELPERS -------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* CUSTOM FONT FACES (with fallbacks if Google Fonts not loaded) ------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}

/* -- END OF CSS -- */