/* VitalVerstand – Nature Organic CSS
   AUTHOR: Senior CSS Developer, 2024
   MODERN, MOBILE-FIRST, FLEX ONLY, NO GRID/COLUMNS/ABSOLUTE LAYOUTS
   NATURE ORGANIC AESTHETIC: earth tones, organic shapes, soft textures, green accents
   BRAND: #22577A (primary blue-green), #38A3A5 (soft teal), #F7F7FF (accent light), natural browns/greens added
   FONTS: 'Montserrat', 'Open Sans', fallback: sans-serif
--------------------------------------------------------------
*/
/* 1. 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, 
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 { 
  box-sizing: border-box; 
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #29423a;
  background-color: #F7F7FF;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38A3A5;
}
ul, ol {
  margin-left: 1.6em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
:focus {
  outline: 2px solid #38A3A5;
  outline-offset: 2px;
}

/* 2. TYPOGRAPHY HIERARCHY */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #22577A;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  color: #29423a;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #20614f;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #386641;
  font-weight: 500;
  margin-bottom: 6px;
}
p,
.subtitle, .subheadline, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #385858;
  margin-bottom: 10px;
}
.subtitle { font-size: 1.05rem; color: #38A3A5; font-weight: 600; letter-spacing: 0.4px; }
.subheadline { font-size: 1.04rem; color: #3C6E71; margin-bottom: 18px;}
strong { color: #20614f; }
blockquote {
  font-style: italic;
  color: #22577A;
  background: rgba(56,163,165,0.07);
  border-left: 4px solid #38A3A5;
  padding: 16px 22px;
  margin-bottom: 8px;
  border-radius: 10px;
}
cite {
  font-style: normal;
  color: #386641;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}

/* 3. FLEXBOX GLOBAL CONTAINER PATTERNS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fcfcfc;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(56, 100, 81, 0.07);
}
.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;
  background: #F7F7FF;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(34, 87, 122, 0.04);
  margin-bottom: 20px;
  border: 1.5px solid #d9dfdd;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 210px;
  background: #F8F5F2;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px 0 rgba(56, 100, 81, 0.05);
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 4px #d6e4e3b3);
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(34, 87, 122, 0.09);
  transform: translateY(-4px) scale(1.02);
}

/* 4. HEADER & NAVIGATION */
header {
  background: #F5F9F7;
  box-shadow: 0 1px 10px 0 rgba(34,87,122,0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 1120px;
  margin: 0 auto;
  gap: 30px;
}
.logo img { height: 48px; }
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav ul li {
  margin: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #22577A;
  letter-spacing: 0.07em;
  padding: 5px 0;
  position: relative;
}
.main-nav a:not(.logo):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #38A3A5;
  transition: width 0.2s;
  border-radius: 2px;
  margin: 0 auto;
}
.main-nav a:not(.logo):hover:after,
.main-nav a:not(.logo):focus:after {
  width: 100%;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  border-radius: 32px;
  padding: 12px 33px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.12s;
  border: none;
  margin-left: 18px;
  box-shadow: 0 2px 14px 0 rgba(56,163,165,0.09);
  letter-spacing: 0.03em;
  background: #22577A;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #38A3A5;
  color: #fff;
  transform: translateY(-2px) scale(1.015);
}
.btn-secondary {
  background: #fff;
  color: #22577A;
  border: 1.5px solid #38A3A5;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #38A3A5;
  color: #fff;
  border-color: #38A3A5;
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: #F6FDF9;
  border: none;
  font-size: 2.1rem;
  color: #22577A;
  padding: 6px 16px;
  border-radius: 50%;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
  z-index: 1011;
}
.mobile-menu-toggle:focus {
  background: #bce2d0;
  color: #255759;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56, 100, 81, 0.07);
  backdrop-filter: blur(1px);
  z-index: 2000;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(0.95,0.02,0.7,0.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #22577A;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #b7e4c7;
  color: #20746f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px auto;
  width: 90%;
  background: #F7F7FF;
  border-radius: 16px;
  padding: 26px 8px;
  box-shadow: 0 6px 18px 0 rgba(34,87,122,0.09);
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #22577A;
  padding: 10px 4px;
  width: 100%;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #e5f6ee;
  color: #38A3A5;
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 992px) {
  .main-nav ul, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .logo img {
    height: 43px;
  }
  .main-nav { gap: 10px;}
}

/* 5. HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  width: 100%;
  background: linear-gradient(95deg,#c9f9db 20%, #b7e4c7 100%);
  border-radius: 0 0 42px 42px / 0 0 30px 30px;
  box-shadow: 0 2px 20px 0 rgba(34, 87, 122, 0.08);
  margin-bottom: 40px;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 5px 16px 6px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 20px;
}

/* 6. FEATURES SECTION */
.features {
  margin-bottom: 60px;
  padding: 40px 0 8px 0;
  background: linear-gradient(115deg,#f7f7ff 0%, #e5f6ee 100%);
  border-radius: 32px;
}
.features .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  width: 100%;
}
.features ul {
  padding-left: 18px;
  color: #274120;
}
.features li {
  margin-bottom: 16px;
  font-size: 1.05rem;
  list-style: disc outside;
}

/* 7. ABOUT & LEGAL SECTIONS */
.text-section {
  background: #f7f2ea;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(56, 100, 81, 0.05);
  color: #2C5440;
}
.legal {
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal .content-wrapper {
  gap: 20px;
  background: #f7f2ea;
  padding: 22px 20px;
  border-radius: 18px;
}
.legal h1, .success h1 {
  color: #22577A;
  margin-bottom: 18px;
}
.legal ul {
  padding-left: 21px;
}

/* 8. SERVICES SECTION */
.services {
  margin-bottom: 60px;
  padding-top: 22px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
}
.service-item {
  background: #f7f7ff;
  flex: 1 1 250px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(34,87,122,0.05);
  padding: 18px 18px 18px 22px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.service-item h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
}
.service-item h3 span {
  margin-left: 10px;
  color: #38A3A5;
  font-size: 0.97rem;
  font-weight: 500;
}
.service-item:hover {
  box-shadow: 0 6px 24px 0 rgba(34,87,122,0.14);
  transform: translateY(-3px) scale(1.02);
}
.services .btn-secondary {
  margin-top: 16px;
}

/* 9. TESTIMONIALS (High Contrast) */
.testimonials {
  background: #f8fbe8;
  border-radius: 32px;
  padding: 40px 0 32px 0;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #22577A;
  margin-bottom: 28px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #FCFCFC;
  color: #20322F;
  border: 2px solid #e2ebde;
}
.testimonial-card blockquote {
  color: #22577A;
  font-size: 1.09rem;
  background: none;
  padding: 0;
  border: none;
  margin-bottom: 6px;
}
.testimonial-card cite {
  color: #2C5440;
}

/* 10. CONTACT SECTION */
.contact .content-wrapper.text-section {
  gap: 8px;
  margin-bottom: 16px;
}
.contact .btn-primary {
  margin-top: 14px;
}
.contact strong {
  color: #20614f;
}

/* 11. FOOTER */
footer {
  background: #184445;
  color: #F7F7FF;
  padding: 38px 0 18px 0;
  border-radius: 32px 32px 0 0/ 18px 18px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(34,87,122,0.10);
  margin-top: 40px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  font-size: 1rem;
}
.footer-nav a {
  color: #f7f7ff;
  opacity: 0.86;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.14s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #38A3A5;
  opacity: 1;
}
.company-info p {
  color: #F7F7FF;
  opacity: 0.74;
  font-size: 0.99em;
  letter-spacing: 0.01em;
}

/* 12. SUCCESS PAGE */
.success {
  margin-bottom: 60px;
  padding: 40px 0;
}
.success .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success h1 {
  font-size: 2.1rem;
}

/* 13. COOKIE CONSENT BANNER (Fixed) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fbfbf1;
  color: #284234;
  box-shadow: 0 -6px 24px 0 rgba(34,87,122,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 14px 22px 18px;
  z-index: 3000;
  border-radius: 17px 17px 0 0;
  border-top: 2.5px solid #c3e5db;
  font-size: 1em;
  animation: slideBannerIn 0.6s cubic-bezier(0.65,0,0.23,1.16);
}
@keyframes slideBannerIn { 0%{transform:translateY(100%);} 100%{transform:translateY(0);} }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.11s;
}
.cookie-banner .accept {
  background: #38A3A5;
  color: #fff;
  font-weight: 600;
  border: none;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #22577A;
}
.cookie-banner .reject {
  background: #f8f8f8;
  color: #22577A;
  font-weight: 500;
  border: 1px solid #38A3A5;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #38A3A5;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #22577A;
  border: 1px dashed #b5cfc6;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #b7e4c7;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -58%) scale(1);
  background: #fafafa;
  color: #29423a;
  border-radius: 24px;
  box-shadow: 0 8px 48px 0 rgba(34,87,122,0.18);
  z-index: 4000;
  width: 96%;
  max-width: 440px;
  padding: 36px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.38s cubic-bezier(0.68,0,0.23,1.13);
}
@keyframes fadeInModal { 0% { opacity: 0; transform: translate(-50%,-70%) scale(0.96);} 100% {opacity: 1; transform:translate(-50%,-58%) scale(1);} }
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #22577A;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .category {
  margin-bottom: 12px;
  font-size: 1.03rem;
  color: #29423a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .toggle {
  margin-left: auto;
}
.cookie-modal label[for^='cookie-'] {
  font-size: 1em;
}
/* Toggle Switches */
.cookie-modal .toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .toggle .slider {
  display: inline-block;
  width: 37px; height: 21px;
  border-radius: 21px;
  background: #cfe7de;
  position: relative;
  vertical-align: middle;
  transition: background 0.19s;
}
.cookie-modal .toggle .slider:before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(34,87,122,0.02);
  transition: left 0.18s;
}
.cookie-modal .toggle input:checked + .slider {
  background: #38A3A5;
}
.cookie-modal .toggle input:checked + .slider:before {
  left: 17px;
}
.cookie-modal .toggle input[disabled] + .slider {
  background: #b5cfc6;
  opacity: 0.8;
}
.cookie-modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal .actions button {
  min-width: 90px;
  padding: 8px 0;
}
.cookie-modal .close {
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #694b4b;
}
.cookie-modal .close:hover {
  color: #22577A;
}

/* 14. ACCESSIBILITY & INTERACTIVITY */
button, [role=button], input[type=button], input[type=submit], .btn-primary, .btn-secondary {
  outline: none;
}
button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2.5px solid #38A3A5;
  outline-offset: 2px;
}

/* 15. ORGANIC SHAPES & DECORATIVE TOUCHES */
.section, .hero, .features, .testimonials, footer {
  border-radius: 32px;
}
.card, .feature-item, .service-item, .testimonial-card, .text-section {
  border-radius: 18px;
}
.hero, .features, .testimonials, footer {
  box-shadow: 0 3px 14px 0 rgba(34,87,122,0.07);
}

/* Microinteractions */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .service-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 20px 0 rgba(56,163,165,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* 16. SPACING & RESPONSIVE LAYOUTS */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 850px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 24px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .hero, .features, .testimonials, .section, footer {
    border-radius: 16px;
  }
  .features .content-wrapper, .feature-grid, .service-list, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .main-nav { flex-direction: row; gap: 10px; }
  .container { padding: 0 10px; }
  h1 { font-size: 1.86rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.09rem; }
}
@media (max-width: 480px) {
  .hero .content-wrapper, .features .content-wrapper, .services .content-wrapper, .testimonials .content-wrapper, .section .content-wrapper {
    padding: 10px 2px 6px 3px;
  }
  .footer-nav { flex-direction: column; gap: 10px; }
  .feature-item, .service-item, .testimonial-card, .text-section { padding: 13px 7px; }
}


/* 17. UTILITIES */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.text-center { text-align: center; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-between { justify-content: space-between; }
.flex-center { justify-content: center; align-items: center; }

/* 18. PRINT & SELECTION */
::selection {
  background: #b7e4c7;
  color: #184445;
}

/* --- END OF STYLE.CSS --- */
