/* --------------------- 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;
}
/* Set base styles for html5 elements */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F7ED;
  color: #243342;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
a {
  color: #14406b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #237759;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #14406b;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 14px;
  color: #243342;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong, b {
  font-weight: bold;
  color: #237759;
}

/* ----------------------- LAYOUT CONTAINERS ----------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(20, 64, 107, 0.06);
}

/* --------- FLEX UTILITY CONTAINERS ---------- */
.card-container, .content-grid, .feature-grid, .service-list, .principle-list, .expert-profiles, .consultation-topics, .process-steps, .checklist, .philosophy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container { gap: 24px; }
.card {
  background: #fff;
  border: 1px solid #E6EBF1;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(20, 64, 107, 0.07);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 4px 22px 2px rgba(35, 119, 89, 0.09), 0 1.5px 6px 0 rgba(53,108,155,0.05);
}

.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;
  background: #F3F7ED;
  border-left: 4px solid #237759;
  border-radius: 10px;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px 0 rgba(35, 119, 89, 0.07);
  color: #222;
  max-width: 580px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #243342;
  font-size: 1.08rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-card strong {
  color: #14406b;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 2px rgba(35,119,89,0.12), 0 2px 8px 0 rgba(20,64,107,0.08);
}

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

/* ----------- HERO, FEATURES, CTA & SERVICE STYLING ----------- */
.hero {
  background: linear-gradient(90deg, #F3F7ED 60%, #cbe5d8 100%);
  padding: 56px 0 36px 0;
  border-radius: 0 0 22px 22px;
  margin-bottom: 50px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1,
.hero .subheadline {
  color: #14406b;
}
.hero .cta {
  margin-top: 12px;
}
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul, .services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid > li,
.service-list > li {
  background: #fff;
  border: 1px solid #E6EBF1;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(20, 64, 107, 0.05);
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 380px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.21s;
}
.feature-grid > li img,
.service-list > li img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-grid > li:hover, .service-list > li:hover {
  box-shadow: 0 4px 22px 2px rgba(20, 64, 107, 0.09), 0 1.5px 6px 0 rgba(35, 119, 89,0.04);
}
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-list > li {
  position: relative;
}
.service-list > li .cta {
  margin-top: auto;
}
.nutritional-highlights ul {
  color: #237759;
  font-size: 1.02em;
  margin: 0 0 16px 16px;
  list-style: disc outside;
}
.filter-options {
  font-size: 1em;
  color: #14406b;
  margin-top: 10px;
}
.filter-label {
  font-weight: bold;
  color: #237759;
}

/* ----------- ABOUT / CONTACT / ACCORDION ------------- */
.about-section, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(20, 64, 107, 0.09);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.company-address, .email-info, .opening-hours {
  margin-bottom: 20px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  cursor: pointer;
  font-size: 1.1rem;
  color: #237759;
  margin-bottom: 6px;
  margin-top: 0;
}
.faq-accordion p {
  color: #243342;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.certifications, .partnerships {
  color: #14406b;
  font-size: 1em;
  margin-top: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.certifications img {
  height: 24px;
  vertical-align: middle;
  margin: 0 4px 0 2px;
}
.philosophy-list, .principle-list {
  list-style: disc inside;
  gap: 20px;
  color: #14406b;
}
.icon-overview {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.icon-overview img {
  width: 40px;
  height: 40px;
}

/* -------------- BUTTONS & CALL-TO-ACTION ------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 160px;
  padding: 0 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  background: #237759;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 rgba(35, 119, 89,0.06);
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.17s;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.03em;
}
.cta:hover, .cta:focus {
  background: #14406b;
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow:0 4px 20px 2px rgba(20,64,107,0.11);
  text-decoration: none;
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border-radius: 24px;
  border: none;
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}

/* ------------- HEADER, NAVIGATION, MOBILE NAV ------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E6EBF1;
  box-shadow: 0 2px 12px 0 rgba(20, 64, 107, 0.03);
  position: sticky;
  top: 0;
  z-index: 1020;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  margin: 0 auto;
  height: 68px;
  max-width: 1140px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
}
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  color: #14406b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.13s, color 0.14s;
}
nav ul li a:hover, nav ul li a:focus {
  border-bottom: 2px solid #237759;
  color: #237759;
}
nav .cta {
  margin-left: 16px;
  margin-bottom: 0;
  min-width: 120px;
  height: 40px;
  font-size: 1rem;
  box-shadow: 0 1.5px 8px rgba(20,64,107,0.07);
}

/* ----- Mobile menu button (hamburger) ----- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #237759;
  font-size: 2.2rem;
  border: none;
  padding: 8px 12px;
  border-radius: 12px;
  margin-left: 18px;
  margin-right: 8px;
  cursor: pointer;
  z-index: 1201;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e0eee8;
  color: #14406b;
}

/* ----- Mobile menu overlay/nav ----- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1400;
  box-shadow: 0 10px 40px 0 rgba(20, 64, 107, 0.11);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.7,0,0.25,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #237759;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #14406b; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 48px 36px 20px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #14406b;
  padding: 10px 2px;
  border-radius: 8px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #e0eee8;
  color: #237759;
}

/* ---------- MAIN + CARD GRID HELPERS ---------- */
main {
  width: 100%;
  min-height: 70vh;
  margin-bottom: 60px;
}

.card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-grid > * {
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 450px;
  margin-bottom: 20px;
}


/* ----------- FOOTER ---------- */
footer {
  background: #f6f9f7;
  border-top: 1px solid #E6EBF1;
  font-size: 0.96em;
  padding: 38px 0 24px 0;
  margin-top: 50px;
}
footer nav {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 12px;
}
footer nav a {
  color: #14406b;
  margin: 0 8px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 6px 3px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.13s, color 0.14s;
}
footer nav a:hover,footer nav a:focus {
  border-bottom: 2px solid #237759;
  color: #237759;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: row;
  justify-content: center;
  color: #14406b;
  font-size: 1em;
  margin-top: 8px;
}
.footer-info a { color: #237759; }
.footer-info a:hover, .footer-info a:focus { color: #14406b; }

/* ------------- COOKIE CONSENT BANNER & MODAL -------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #14406b;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -4px 22px 0 rgba(20,64,107,0.13);
  z-index: 1500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 32px 24px 32px;
  gap: 18px;
  animation: cookiebannerfadein 0.66s cubic-bezier(0.7,0,0.25,1);
}
@keyframes cookiebannerfadein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  flex: 2 1 400px;
  line-height: 1.43;
}
.cookie-consent-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1 0 auto;
}
.cookie-consent-banner button {
  padding: 8px 28px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  font-size: 1.04rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
}
.cookie-accept {
  background: #237759;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #14406b;
  color: #fff;
}
.cookie-reject {
  background: #E6EBF1;
  color: #237759;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #dddddf;
  color: #14406b;
}
.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #237759;
  color: #fff;
}

/* -------- Cookie Modal ----------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,51,66,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadewindow 0.29s;
}
@keyframes fadewindow {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 27px 28px 27px;
  width: 95vw;
  max-width: 390px;
  box-shadow: 0 12px 36px 0 rgba(20,64,107,0.21);
  color: #14406b;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieslideup 0.38s cubic-bezier(0.7,0,0.25,1);
}
@keyframes cookieslideup {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 { font-size: 1.2rem; color: #237759; }
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.04em;
}
.cookie-category label {
  font-weight: 600;
  color: #14406b;
  flex: 1;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #237759;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #237759;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #14406b; }

/* ------ Show/hide by CSS classes for cookie ---- */
.cookie-consent-banner[hidden], .cookie-modal-overlay[hidden] { display: none !important; }

/* --------------- RESPONSIVE DESIGN (Mobile first) -------------- */
@media (max-width: 1139px) {
  .container { max-width: 97vw; }
  nav { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  .container { max-width: 97vw; }
  nav ul { gap: 18px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.11rem; }
  body { font-size: 15px; }
  .content-wrapper, .text-section, .faq-accordion { gap: 14px; }
  .section, .about-section, .contact, .features, .services, .hero {
    padding: 22px 8px;
    margin-bottom: 40px;
  }
  .footer-info { flex-direction: column; row-gap: 6px; }
  .feature-grid, .service-list, .principle-list, .expert-profiles, .consultation-topics, .checklist, .philosophy-list, .icon-overview, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > li, .service-list > li, .card-grid > * {
    max-width: 99vw;
    min-width: 70vw;
  }
  .card { padding: 18px; min-width: 90vw; }
  nav ul { display: none; }
  nav .cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 4vw; }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 15px 4vw 15px 4vw;
    font-size: 1em;
  }
  .cookie-consent-banner p { font-size: 0.98em; }
}

/* Make sure mobile menu covers everything and disables scroll */
body.mobile-menu-open {
  overflow: hidden;
}

/* --------- VISUAL MICROINTERACTIONS ----------- */
.cta, .cookie-consent-banner button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, transform 0.14s, box-shadow 0.15s;
}
.cta:active, .cookie-consent-banner button:active, .cookie-modal-actions button:active {
  transform: scale(0.97);
}

/* --------- ACCESSIBILITY FOCUS OUTLINES --------- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #237759;
  outline-offset: 2px;
}

/* Utility classes (if used in js for cookie/modal/hide) */
.hide { display: none !important; }

/* ------------ END OF CSS ------------ */
