/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #e1dbcd;
  color: #314336;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  user-select: none;
}
button, input, select, textarea {
  font: inherit;
}
a {
  color: #47692f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fba815;
}
ul, ol {
  list-style: none;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  color: #38526a;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, address, dt, dd {
  font-size: 1rem;
  color: #314336;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px 48px 20px 44px/40px 28px 44px 20px;
  box-shadow: 0 3px 20px rgba(62, 66, 51, 0.10);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 18px 32px 14px 26px/22px 17px 28px 13px;
  }
  .container {
    padding: 0 6px;
    gap: 18px;
  }
}

/* Header & Navigation */
header {
  background: #f2efe5;
  box-shadow: 0 2px 8px rgba(91, 112, 72, 0.05);
  padding: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 80px;
}
header img {
  height: 50px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #314336;
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #eaf3e2;
  color: #47692f;
}
.cta.primary {
  background: #47692f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px 16px 28px 24px/36px 32px 24px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(105, 120, 40, 0.13);
  transition: background 0.21s, color 0.21s, box-shadow 0.22s;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: #314336;
  box-shadow: 0 4px 24px rgba(105, 120, 40, 0.19);
  color: #fba815;
}
@media (max-width: 1000px) {
  header .container nav {
    gap: 10px;
  }
  header .container {
    gap: 8px;
  }
}

/* Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: #47692f;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 6px 18px 8px 18px;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 15px;
  z-index: 201;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #38526a;
  color: #fba815;
}
@media (max-width: 900px) {
  header .container nav,
  header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #e1dbcd;
  z-index: 2999;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 4px 0 28px 2px rgba(48,67,53,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #47692f;
  color: #fff;
  padding: 8px 18px 8px 18px;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #38526a;
  color: #fba815;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 32px;
}
.mobile-nav a {
  color: #314336;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  padding: 16px 10px 16px 0;
  border-radius: 22px;
  font-weight: 600;
  transition: background 0.17s, color 0.18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf3e2;
  color: #fba815;
}

/* Main & Sections */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 0;
}
@media (max-width: 850px) {
  main {
    gap: 28px;
  }
}

/* Hero, Features, Cards, Grids */
.feature-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 16px;
}
.feature-grid > div, .tips-grid > div {
  background: #f8f7f2;
  border-radius: 36px 16px 24px 28px/30px 38px 20px 24px;
  box-shadow: 0 2px 12px rgba(91,112,72,0.11);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover, .tips-grid > div:hover {
  box-shadow: 0 4px 20px rgba(91,112,72,0.18);
}
.feature-grid img, .tips-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}
.feature-grid h3, .tips-grid h3 {
  margin-bottom: 10px;
  color: #47692f;
}
.feature-grid p, .tips-grid p {
  margin-bottom: 0;
}

/* Card Structures */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 36px 16px 24px 28px/30px 38px 20px 24px;
  box-shadow: 0 2px 10px rgba(72, 91, 67, 0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Responsive Grids Patterns */
.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;
}
@media (max-width: 768px) {
  .feature-grid, .tips-grid, .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* Highlight Box for Tipps */
.highlight-box {
  background: #eaf3e2 url("data:image/svg+xml,%3Csvg width='160' height='48' viewBox='0 0 160 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='80' cy='24' rx='79' ry='23' fill='%23e7e4d1'/%3E%3C/svg%3E") center/cover no-repeat;
  border-radius: 20px 30px 18px 24px/24px 18px 28px 22px;
  padding: 18px 16px;
  margin-top: 14px;
  font-size: 1.06rem;
  color: #314336;
  box-shadow: 0 1px 6px rgba(72, 91, 67, 0.06);
}

/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
}

/* Testimonial Styles */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f6f8f6;
  border-radius: 34px 18px 22px 26px/24px 28px 24px 19px;
  box-shadow: 0 2px 10px rgba(63,87,67,0.07);
  color: #28411d;
  font-size: 1.125rem;
  transition: box-shadow 0.23s;
}
.testimonial-card strong {
  margin-left: 10px;
  color: #38526a;
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card p {
  color: #28411d;
  font-size: 1.0625rem;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Advantages & Icon lists */
.content-wrapper ul > li, .content-wrapper ul li, .content-wrapper ul > li > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.content-wrapper ul > li img {
  width: 26px;
  height: 26px;
}
/* Address Map */
.address-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f8f7f2;
  border-radius: 16px 30px 24px 14px/22px 28px 20px 12px;
  margin-top: 14px;
  padding: 18px;
}
.address-map img {
  width: 38px;
  height: 38px;
}

/* Footer Styles */
footer {
  background: #f2efe5;
  padding: 36px 0 24px 0;
  border-top: 1px solid #e1dbcd;
  font-size: 1rem;
  line-height: 1.7;
  color: #314336;
}
footer .container {
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
footer nav a {
  color: #38526a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 5px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #47692f;
}
footer address {
  font-style: normal;
  color: #314336;
  font-size: 0.99rem;
  margin-top: 5px;
}
@media (max-width: 870px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* Forms, Inputs (for contact) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 10px 16px;
  border: 1px solid #bfd3a6;
  border-radius: 20px 10px 18px 14px/14px 18px 22px 16px;
  font-size: 1rem;
  background: #f6f8f6;
  margin-bottom: 12px;
  transition: border 0.18s, box-shadow 0.14s;
  color: #38526a;
  outline: none;
  resize: vertical;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #47692f;
  box-shadow: 0 2px 8px rgba(105,120,40, 0.10);
}

/* FAQ (dt/dd) */
dl {
  margin-bottom: 18px;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 14px;
  color: #314336;
}
dd {
  margin-left: 12px;
  color: #47692f;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #314336;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px;
  z-index: 3010;
  box-shadow: 0 -2px 12px rgba(49,67,54,0.18);
  font-size: 1.02rem;
  animation: fadeInUp 0.6s;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6px;
    gap: 14px;
    font-size: 1rem;
  }
}
.cookie-btn {
  background: #e1dbcd;
  color: #384a25;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 22px;
  border-radius: 26px 14px 18px 24px/16px 18px 20px 14px;
  border: none;
  margin-right: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.13s, color 0.11s;
  box-shadow: 0 1px 6px rgba(49,67,54,0.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fba815;
  color: #fff;
}
.cookie-btn--settings {
  background: #fba815;
  color: #fff;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #47692f;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3250;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
.cookie-modal {
  background: #f6f8f6;
  color: #314336;
  border-radius: 36px 16px 24px 28px/30px 38px 20px 24px;
  box-shadow: 0 2px 18px rgba(49,67,54,0.20);
  max-width: 420px;
  width: 92vw;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: #47692f;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  color: #28411d;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #47692f;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #47692f;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.09s, color 0.09s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fba815;
  color: #fff;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animations, Hover, and Micro-interactions */
a, button, .cta.primary, .cookie-btn, .card, .feature-grid > div, .tips-grid > div {
  transition: all 0.18s cubic-bezier(0.33,0.55,0.67,1);
}
.feature-grid > div:hover, .tips-grid > div:hover, .card:hover {
  box-shadow: 0 8px 36px 0 rgba(72,91,67,0.17);
  transform: translateY(-2px) scale(1.03);
}

/* Organic divider (svg) */
.organic-divider {
  width: 100%;
  height: 40px;
  background: url('assets/bg-divider.svg') repeat-x center;
  margin: 40px 0;
}

/* Display proper color contrast for key sections */
.section, .card, .testimonial-card, .highlight-box, .cookie-banner, .cookie-modal {
  color-scheme: light;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 10px;
  background: #e1dbcd;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: #bfd3a6;
  border-radius: 8px;
}

/* Responsive Utilities */
@media (max-width: 500px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.04rem; }
  .container { padding: 0 2px; }
  .card, .feature-grid > div, .tips-grid > div { padding: 18px 10px 10px 10px; }
}

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