/* CSS RESET & BASE ------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #F6EDE2;
  color: #2c3c22;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style-position: inside;
  margin: 0 0 16px 0;
}
li + li {
  margin-top: 8px;
}
a {
  color: #469A5D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19324C;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #19324C;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 1.2em;
  font-size: 1rem;
}
strong {
  color: #19324C;
  font-weight: 700;
}

/* CONTAINER & LAYOUT ------------------ */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 26px;
  box-shadow: none;
}
@media (min-width: 769px) {
  .section {
    padding: 60px 0;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 32px;
  }
}
.text-section {
  background: rgba(246,237,226,0.88);
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(25,50,76,0.06);
  padding: 30px 18px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .text-section {
    padding: 40px 35px;
  }
}

/* FEATURE GRID, ICON GRID ------------------ */
.feature-grid, .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .icon-grid li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(70,154,93, 0.13);
  padding: 26px 22px 20px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-grid > div:hover, .icon-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(70,154,93,0.14);
  transform: translateY(-2px) scale(1.01);
}
.icon-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.icon-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.feature-grid img, .icon-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: saturate(0.7) contrast(1.1) drop-shadow(0 2px 7px #e9e2d7);
}
.feature-grid h3, .icon-grid h3 {
  font-size: 1.15rem;
}

/* CARD STYLES & FLEX WRAPPERS ------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffaf5;
  border-radius: 20px;
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  box-shadow: 0 2px 14px 0 rgba(31, 70, 53, 0.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(70,154,93,0.13);
  transform: translateY(-2px) scale(1.01);
}
.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;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(31,70,53,.09);
}

/* TABLE STYLING -------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px 0 rgba(70,154,93,0.07);
}
thead th {
  background: #469A5D;
  color: #fff;
  padding: 14px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  text-align: left;
}
tbody td {
  padding: 13px 10px;
  border-top: 1px solid #e2e7de;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* BUTTONS ------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #469A5D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 32px;
  padding: 14px 34px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(70,154,93,0.13);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.21s;
  outline: none;
  margin-top: 10px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #19324C;
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(70,154,93,0.16);
  transform: scale(1.02);
  text-decoration: none;
}

/* HEADER & NAVIGATION -------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(70,154,93,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 12px 16px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 14px;
  transition: background 0.18s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  color: #469A5D;
  background: #f0f7f2;
  text-decoration: none;
}
header .btn-primary {
  margin-left: 16px;
  font-size: 1rem;
  padding: 12px 26px;
}

/* MOBILE MENU ---------------------- */
.mobile-menu-toggle {
  display: none;
  background: #F6EDE2;
  border: none;
  margin-left: 16px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  color: #19324C;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s, color 0.21s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #dde6d7;
  color: #469A5D;
}
@media (max-width: 1020px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
.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: #19324C;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.4,.21,.39,1.03);
  z-index: 150;
  padding: 24px 30px 0 26px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  top: 24px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s, color 0.19s;
  z-index: 161;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #285538;
  color: #F6EDE2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 80px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 16px 14px 10px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  width: 95%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #469A5D;
  color: #fff;
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER --------------------------- */
footer {
  background: #e3e5dd;
  margin-top: 90px;
  color: #19324C;
  font-size: 1rem;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(70,154,93,0.07);
}
footer .container {
  padding: 38px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-top nav a {
  color: #19324C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.17s, color 0.19s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: #469A5D;
  color: #fff;
}
.contact-mini p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-mini img {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  width: 100%;
  text-align: left;
  padding-top: 16px;
  color: #546255;
  font-size: 0.98rem;
  opacity: 0.8;
}
@media (min-width: 769px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
  }
  .footer-bottom {
    text-align: right;
  }
}

/* TESTIMONIALS --------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 23px;
  box-shadow: 0 2px 16px 0 rgba(25,50,76,0.10);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow 0.21s, transform 0.24s;
}
.testimonial-card p {
  color: #2d431f;
  font-size: 1.12rem;
}
.testimonial-card strong {
  color: #469A5D;
  font-size: 1rem;
}
.testimonial-card img[alt*="Stern"],
.testimonial-card img[alt*="Star"] {
  width: 24px;
  height: 24px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(70,154,93,0.11);
  transform: scale(1.015);
}

/* FAQ & ACCORDION ------------------ */
.faq-list > div, .faq-accordion > div {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(70,154,93,0.07);
  margin-bottom: 20px;
  padding: 24px 18px;
  font-size: 1rem;
  transition: box-shadow 0.18s, background 0.19s;
}
.faq-list > div strong, .faq-accordion > div strong,
.faq-list > div h3, .faq-accordion > div h3 {
  display: block;
  color: #19324C;
  font-size: 1.08rem;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list > div:hover, .faq-accordion > div:hover {
  box-shadow: 0 8px 23px 0 rgba(70,154,93,0.09);
  background: #f0f6ed;
}

/* ADDRESS LIST & OPENING HOURS ----- */
.address-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.address-list p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.opening-hours {
  background: #fff;
  border-radius: 15px;
  padding: 21px 18px;
  box-shadow: 0 2px 10px 0 rgba(70,154,93,0.07);
  color: #23531f;
}
.opening-hours h3 {
  font-size: 1.11rem;
}

/* ULTRAWIDE - MAX WIDTH ----------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1290px;
  }
}

/* RESPONSIVE (MOBILE FIRST) --------- */
@media (max-width: 868px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  .feature-grid > div, .icon-grid li {
    min-width: 160px;
    max-width: 100%;
    padding: 16px 9px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .section {
    padding: 27px 6px;
  }
  .content-wrapper, .content-grid {
    gap: 13px;
  }
  .card {
    padding: 14px 8px;
    min-width: unset;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 5px;
  }
  .section {
    padding: 13px 3px;
  }
}

/* MICRO-INTERACTIONS ----------------- */
.btn-primary, .footer-top nav a, header nav a, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.13s;
}
[tabindex]:focus, button:focus, a:focus {
  outline: 2px dotted #469A5D;
  outline-offset: 2px;
}

/* ORGANIC/NATURAL DECORATIVE SHAPES -- */
/* Example for organic background elements – can be used with absolute positioning decorations if needed */
.organic-deco {
  position: absolute;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

/* COOKIE BANNER --------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F6EDE2;
  color: #2c3c22;
  box-shadow: 0 -2px 14px 0 rgba(25,50,76,0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 26px 12px 18px 12px;
  z-index: 220;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.4,.2,.35,1), opacity 0.28s;
  border-radius: 22px 22px 0 0;
}
#cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  background: #469A5D;
  color: #fff;
  border-radius: 16px;
  padding: 9px 17px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.21s, color 0.17s, transform 0.19s;
  margin-right: 4px;
  cursor: pointer;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #19324C;
  color: #fff;
}
.cookie-btn.secondary {
  background: #e3e5dd;
  color: #19324C;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #469A5D;
  color: #fff;
}

/* COOKIE MODAL ---------------------- */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,50,76,0.33);
  z-index: 300;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
#cookie-modal-overlay.open {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 440px;
  width: 92vw;
  box-shadow: 0 8px 44px rgba(25,50,76,0.11);
  padding: 32px 20px 26px 22px;
  z-index: 350;
  animation: slideModalIn 0.33s cubic-bezier(.5,1.23,.3,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes slideModalIn {
  from { transform: translateY(80px) scale(0.94); opacity: 0; }
  to { transform: none; opacity: 1; }
}
#cookie-modal h2 {
  font-size: 1.28rem;
  color: #19324C;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
input[type="checkbox"].cookie-toggle,
input[type="checkbox"].cookie-toggle:focus {
  accent-color: #469A5D;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 13px;
  background: none;
  border: none;
  color: #19324C;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 3px 4px;
  border-radius: 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e3e5dd;
  color: #469A5D;
}

/* SELECTION & SCROLLBAR ------------- */
::selection {
  background: #469A5D;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #E3E5DD;
}
::-webkit-scrollbar-thumb {
  background: #B5D3AB;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #469A5D;
}

/* TYPOGRAPHY SCALE ------------------ */
@media (min-width: 540px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}
@media (min-width: 1020px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.4rem; }
}

/* ORGANIC-SHAPE VISUAL ELEMENTS ----- */
.feature-grid > div, .icon-grid li, .testimonial-card, .card, .faq-list > div, .cookie-btn, .btn-primary, .footer-top nav a, header nav a, .mobile-nav a {
  border-radius: 22px;
}

/* ACCESSIBILILTY --------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { transition: none !important; animation-duration: 0s !important; }
}

/* END OF CSS */
