/* --- 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F7FAF9;
  color: #3A3025;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- BASE TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #244A69;
  letter-spacing: -0.01em;
  line-height: 1.14;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, label, input, textarea, select {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3A3025;
}
p {
  margin-bottom: 16px;
}
strong {
  color: #244A69;
  font-weight: 600;
}

/* --- BODY LAYOUT --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #5DBA8B;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(93,186,139,0.07);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.08s;
  outline: none;
  margin-top: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #48936b;
  box-shadow: 0 4px 14px rgba(93,186,139,0.16);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #5DBA8B;
  background: transparent;
  color: #244A69;
  border-radius: 32px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  margin-top: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #5DBA8B;
  color: #fff;
  box-shadow: 0 3px 10px rgba(34,74,105,0.08);
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 6px rgba(51, 84, 65, 0.09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #244A69;
  padding: 6px 14px;
  border-radius: 16px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e6ede8;
  color: #5DBA8B;
}
header .btn-primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
}
@media (min-width: 980px) {
  .main-nav { display: flex; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  background: #e4f4ec;
  color: #244A69;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  cursor: pointer;
  position: relative;
  z-index: 1401;
  margin-left: auto;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #cde4d8;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 24px rgba(34,74,105,0.16);
  padding: 36px 28px 24px 32px;
  z-index: 1500;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.7,.18,.58,1.0);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e4f4ec;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 39px;
  height: 39px;
  color: #244A69;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1600;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #cde4d8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 55px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #244A69;
  padding: 10px 0 10px 8px;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6ede8;
  color: #5DBA8B;
}
@media (min-width: 980px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu {
  box-sizing: border-box;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #e4f4ec;
  background-image: url('../assets/bg-organic-green.svg'); /* decorative organic soft shape, fallback if not available */
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 48px 48px / 0 0 32px 32px;
  padding: 64px 0 42px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
}
.hero h1 {
  color: #244A69;
  font-size: 2.3rem;
  margin-bottom: 16px;
}
.hero p {
  color: #31624A;
  font-size: 1.17rem;
  max-width: 580px;
  margin-bottom: 22px;
}

/* --- SECTION, CARDS, FEATURES, FLEX LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 22px rgba(59,89,65,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F7FAF9;
  border-radius: 22px;
  box-shadow: 0 3px 12px rgba(60,81,62,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.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: #e4f4ec;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(34,74,105,0.09);
  margin-bottom: 24px;
  flex: 1 1 320px;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #31624A;
  margin-top: 3px;
  font-style: italic;
  display: flex;
  gap: 6px;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid,.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 20px 0;
}
.feature, .service {
  background: #F7FAF9;
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(93,186,139,0.03);
  padding: 24px 20px;
  flex: 1 1 230px;
  min-width: 262px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature img, .service img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 12px 28px 18px 26px / 13px 27px 21px 18px;
  background-blend-mode: multiply;
}
.faq-list h3 {
  font-size: 1.08rem;
  color: #244A69;
  margin-top: 26px;
  margin-bottom: 7px;
}
.faq-list p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.faq-teaser {
  background: #e4f4ec;
  border-radius: 13px;
  padding: 14px 20px;
  font-size: 1.04rem;
  margin-top: 20px;
}
.faq-teaser a {
  color: #5DBA8B;
  text-decoration: underline;
  transition: color 0.14s;
}
.faq-teaser a:hover, .faq-teaser a:focus {
  color: #244A69;
}

/* --- CONTACT INFOS --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 20px 0 20px 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
  color: #244A69;
}
.info-item img {
  width: 26px; height: 26px; filter: grayscale(0.2); opacity: 0.90;
}

.map-location {
  margin-top: 27px;
  background: #e4f4ec;
  border-radius: 16px;
  padding: 21px 30px;
  color: #31624A;
}

.legal-text {
  background: #F7FAF9;
  border-radius: 14px;
  padding: 26px 22px;
  color: #31624A;
}

/* --- FOOTER --- */
footer {
  background: #e4f4ec;
  border-radius: 32px 32px 0 0 / 16px 16px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px rgba(107,152,101,0.06);
  padding: 38px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.logo-footer img {
  height: 39px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.footer-nav a {
  font-weight: 600;
  color: #244A69;
  padding: 6px 10px;
  border-radius: 9px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #cde4d8;
  color: #5DBA8B;
}
.footer-contact {
  font-size: 1rem;
  color: #31624A;
  line-height: 1.48;
  margin-bottom: 7px;
}
.footer-copy {
  width: 100%;
}
.footer-copy small {
  color: #31624A;
  letter-spacing: 0.015em;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe4;
  color: #3A3025;
  padding: 21px 20px 22px 20px;
  box-shadow: 0 -3px 24px rgba(71,94,53,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 3999;
  transition: transform 0.29s cubic-bezier(.58,.0,.23,1), opacity 0.22s;
  border-radius: 14px 14px 0 0;
  font-size: 1.05rem;
}
.cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 5px;
}
.cookie-btn,
.cookie-btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 11px 26px;
  font-size: 0.97rem;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-btn {
  background: #5DBA8B;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #48936b;
}
.cookie-btn-secondary {
  background: #fff;
  color: #5DBA8B;
  border: 2px solid #5DBA8B;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #e4f4ec;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%) scale(1);
  background: #fff;
  box-shadow: 0 18px 90px 0 rgba(34,74,105,0.17);
  border-radius: 24px;
  padding: 38px 30px 28px 30px;
  max-width: 375px;
  width: 92vw;
  z-index: 4100;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%) scale(0.93);
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: #244A69;
}
.cookie-modal-close {
  background: #e4f4ec;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.33rem;
  cursor: pointer;
  color: #244A69;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #cde4d8;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #244A69;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5DBA8B;
  width: 19px;
  height: 19px;
  border-radius: 6px;
}
.cookie-category .cookie-category-desc {
  font-weight: 400;
  color: #31624A;
  font-size: 0.97rem;
}
.cookie-category.essential label {
  color: #789076;
}
.cookie-category.essential input[type="checkbox"] {
  opacity: 0.5;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
}

/* --- ORGANIC/NATURE ACCENTS --- */
.section, .hero, .feature, .service, .testimonial-card, .faq-teaser {
  /* organic corners */
  border-radius: 29px 14px 22px 17px / 27px 22px 17px 24px;
}
.card {
  border-radius: 21px 15px 17px 28px / 21px 25px 13px 22px;
}

/* --- SHADOWS & TEXTURES --- */
.section, .hero, .card, .feature, .service, .testimonial-card {
  box-shadow: 0 1.5px 8px 0 rgba(34,74,105,0.06);
}

/* --- RESPONSIVE DESIGN (Mobile First) --- */
@media (max-width: 980px) {
  header .container {
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .main-nav, header .btn-primary {
    display: none !important;
  }
  .section, .hero {
    padding: 28px 8px;
    margin-bottom: 44px;
  }
  .features-grid, .services-grid, .testimonial-card, .contact-info {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .feature, .service, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-card {
    gap: 12px;
  }
  .footer-contact, .footer-copy {
    font-size: 0.96rem;
  }
  .cookie-banner {
    font-size: 1.02rem;
    padding: 18px 7px;
    border-radius: 13px 13px 0 0;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
  h2 { font-size: 1.22rem; }
  .footer-contact p {
    word-break: break-word;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/* --- CARD, GRID & SECTION RESPONSIVENESS --- */
@media (max-width: 600px) {
  .container { padding: 0 6px; }
  .section, .card, .hero, .feature, .testimonial-card {
    border-radius: 14px 7px 14px 12px / 13px 10px 10px 14px;
    padding: 13px 5px;
    margin-bottom: 27px;
  }
  .cookie-modal {
    padding: 23px 7px 9px 7px;
    border-radius: 9px;
  }
}

/* --- INTERACTIONS & TRANSITIONS --- */
.card, .feature, .service, .testimonial-card, .faq-teaser {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .feature:hover, .testimonial-card:hover, .faq-teaser:hover {
  box-shadow: 0 8px 30px rgba(93,186,139,0.15);
  transform: translateY(-2px) scale(1.016);
}

/* --- MISC CLASSES --- */
ul {
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}
input, textarea, select {
  font-size: 1rem;
  padding: 9px 12px;
  border: 1.5px solid #d4e6d6;
  background: #f7faf9;
  border-radius: 11px;
  outline: none;
  transition: border-color 0.17s;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #5DBA8B;
  background: #e5f3e9;
}

::-webkit-scrollbar {
  width: 9px;
  background: #e4f4ec;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #5DBA8B;
  border-radius: 12px;
}

/* --- Z-INDEX LAYERING --- */
.mobile-menu {
  z-index: 1500;
}
.mobile-menu-toggle {
  z-index: 1401;
}
.cookie-banner {
  z-index: 3999;
}
.cookie-modal {
  z-index: 4100;
}

/* --- UTILITY --- */
.mono { font-family: monospace; }
.text-center { text-align: center; }
.flex { display: flex; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

/* --- FOCUS VISIBILITY HIGH CONTRAST --- */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .cookie-btn-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2px solid #244A69;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #cde4d8;
}

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