/* CSS RESET & NORMALIZING */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #ECECEC;
  color: #304232;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #155263;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #19716a;
  outline: none;
  text-decoration: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #155263;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px;}
h2 { font-size: 2rem; margin-bottom: 14px;}
h3 { font-size: 1.4rem; margin-bottom: 10px;}
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, dl, blockquote, small {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 28px;
}
li {
  margin-bottom: 8px;
}
strong {
  color: #19716a;
}
blockquote {
  font-style: italic;
  background: #f6f7f2;
  padding: 16px 22px;
  border-left: 4px solid #19716a;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #304232;
}

/* LAYOUT STRUCTURE */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 6px 24px 0 rgba(44, 64, 44, 0.06);
}
@media (max-width: 900px) {
  .section { padding: 30px 10px; }
}
@media (max-width: 600px) {
  .section { padding: 18px 2px; margin-bottom: 36px; }
}

/* FLEXBOX BASED LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  background: #f4f1ed;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(44,64,44,0.05);
  padding: 22px 18px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(44,64,44,0.10);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-wrapper {gap: 15px;}
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6f7f2;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(44, 64, 44, 0.06);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px 0 rgba(44,64,44,0.07);
  padding: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 18px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: #155263;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.16s, color .14s;
}
nav a:hover, nav a:focus {
  background: #ECF7EA;
  color: #19716a;
}
.btn-primary {
  background: #19716a;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 11px 29px;
  border: none;
  border-radius: 34px;
  box-shadow: 0 2px 10px 0 rgba(30, 50, 30, 0.08);
  letter-spacing: 0.04em;
  transition: background 0.23s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  margin-left: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #155263;
  box-shadow: 0 6px 20px 0 rgba(44, 64, 44, 0.16);
  transform: translateY(-2px) scale(1.04);
}

/* HEADER MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #19716a;
  cursor: pointer;
  z-index: 1002;
  line-height: 1;
}
.mobile-menu {
  display: none;
}
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 23px;
  }
  header nav,
  header .btn-primary {
    display: none !important;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(236, 236, 236, 0.98);
    z-index: 1009;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.74,.17,.38,.97);
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    margin: 36px 24px 8px 0;
    font-size: 2.1rem;
    border: none;
    background: none;
    color: #19716a;
    cursor: pointer;
    z-index: 1010;
    transition: color 0.18s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #155263;
  }
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 44px 0;
}
.mobile-nav a {
  color: #155263;
  background: #fff;
  padding: 12px 45px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(30,50,30,0.04);
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eaf7e9;
  color: #19716a;
}

@media (max-width: 580px) {
  .mobile-nav a {
    font-size: 1rem;
    padding: 13px 18px;
  }
}

/* HERO / SECTION ARTISTIC ORGANIC BACKGROUNDS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 4px 20px 0 rgba(30,50,30,.09);
  position: relative;
}
section:first-of-type {
  margin-top: 22px;
  background: #F6F7F2;
  box-shadow: 0 10px 40px 0 rgba(44,80,44,0.07);
}
@media (max-width: 900px) {
  section {
    padding: 28px 3%;
  }
}
@media (max-width: 600px) {
  section {
    padding: 14px 0.7%;
    margin-bottom: 36px;
  }
  .container {padding: 0 3px;}
}

/* ORGANIC & NATURE ACCENTS */
section:before, section:after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
section:before {
  width: 120px; height: 68px;
  left: -34px; top: -28px;
  background: #eaf7e9;
  border-radius: 75% 45% 40% 60% / 60% 70% 40% 60%;
  opacity: 0.33;
}
section:after {
  width: 65px; height: 65px;
  right: -19px; bottom: -18px;
  background: #e9e2d0;
  border-radius: 70% 35% 70% 50% / 50% 60% 60% 40%;
  opacity: 0.19;
}

/* DETAILS - ICONS IN LI */
li img {
  width: 1.7em;
  height: 1.7em;
  margin-right: 10px;
  vertical-align: middle;
  display: inline;
  border-radius: 6px;
  background: transparent;
}

/* TESTIMONIALS ACCESSIBLE CONTRAST */
.testimonial-card {
  color: #193029;
  background: #f6f7f2;
  border: 1px solid #e9e2d0;
  box-shadow: 0 2px 12px 0 rgba(20, 40, 20, 0.07);
  font-size: 1.16rem;
  margin-bottom: 20px;
  transition: box-shadow .16s;
}
.testimonial-card strong {
  color: #155263;
}

/* CTA BUTTONS */
.btn-primary:active {
  background: #23a490;
  box-shadow: none;
}

/* TABLE STYLE */
table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: separate;
  border-spacing: 0;
  background: #f6f7f2;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(44, 64, 44, 0.04);
}
th, td {
  padding: 15px 14px;
  text-align: left;
}
th {
  background: #19716a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
td {
  color: #304232;
}
tr {
  border-bottom: 1px solid #EAEADA;
}
tr:last-child {border-bottom: none;}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
}
.social-links a img {
  width: 2.1em;
  height: 2.1em;
  filter: grayscale(.15);
  border-radius: 50%;
  transition: filter 0.19s, box-shadow 0.19s;
}
.social-links a:hover img {
  filter: grayscale(0.0) brightness(0.95) drop-shadow(0 1px 5px #19716a44);
}

/* FAQ/ACCORDION (DL STYLES) */
dl {
  margin-bottom: 16px;
  width: 100%;
}
dt {
  font-weight: 700;
  color: #155263;
  margin-bottom: 4px;
  margin-top: 10px;
}
dd {
  margin-bottom: 14px;
  margin-left: 10px;
  color: #2d392d;
}

/* FOOTER */
footer {
  background: #f6f7f2;
  color: #304232;
  padding: 36px 0 18px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 14px 0 rgba(44,64,44,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer nav {
  font-size: 1.03rem;
  align-items: center;
}
footer nav a {
  color: #19716a;
  margin: 0 2px;
  display: inline;
  background: none;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
  padding: 3px 6px;
}
.footer-contact {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-top: 10px;
  font-size: .98rem;
}
.footer-contact img {
  width: 56px;
  height: 56px;
  min-width: 40px;
  background: #eaf7e9;
  border-radius: 16px;
}
.copyright {
  font-size: .93rem;
  color: #758175;
  margin-top: 12px;
}

@media (max-width: 768px) {
  footer .container {padding: 0 5px;}
  .footer-contact {flex-direction: column; gap: 7px;}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1700;
  background: #fffbe7;
  color: #304232;
  box-shadow: 0 0 28px rgba(20,50,20,0.10), 0 -2px 12px rgba(44,64,44,.07);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 36px;
  font-size: 1.04rem;
  transition: transform 0.31s cubic-bezier(.65,.08,.54,.86);
  transform: translateY(0);
  animation: cookieSlideIn 0.8s;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  min-width: 180px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}
.cookie-banner button {
  border-radius: 18px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 3px;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background .18s, color .18s;
}
.cookie-banner .accept-all {
  background: #19716a;
  color: #fff;
}
.cookie-banner .accept-all:hover,
.cookie-banner .accept-all:focus {
  background: #155263;
}
.cookie-banner .reject-all {
  background: #ECECEC;
  color: #155263;
}
.cookie-banner .reject-all:hover,
.cookie-banner .reject-all:focus {
  background: #e9e2d0;
}
.cookie-banner .cookie-settings {
  background: #fffbe7;
  color: #19716a;
  border: 1.5px solid #19716a;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #e9e2d0;
  color: #155263;
}

@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 16px;
  }
  .cookie-banner .cookie-actions {gap: 8px;}
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 1750;
  background: rgba(21,82,99,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 380px;
  width: 92vw;
  padding: 34px 26px 20px 26px;
  box-shadow: 0 8px 40px 0 rgba(44, 80, 66, .18);
  font-size: 1.07rem;
  color: #304232;
  z-index: 1751;
  animation: modalIn 0.2s cubic-bezier(.62,.08,.40,.98);
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.96) rotateZ(-2deg); opacity: 0; }
  to {transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #155263;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #304232;
  font-weight: 500;
}
.cookie-modal .essential {
  font-weight: 700;
  color: #19716a;
}
.cookie-modal-toggle {
  width: 38px;
  height: 20px;
  border-radius: 16px;
  background: #ececec;
  position: relative;
  margin-right: 6px;
  transition: background .13s;
  flex-shrink: 0;
  border: none;
  outline: none;
}
.cookie-modal-toggle input {
  opacity: 0;
  width: 38px;
  height: 20px;
  position: absolute;
  z-index: 2;
}
.cookie-modal-toggle span {
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(44,80,44,0.09);
  transition: left 0.16s, background 0.12s;
}
.cookie-modal-toggle input:checked + span {
  left: 20px;
  background: #19716a;
}
.cookie-modal-toggle input:checked {
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal .modal-actions button {
  padding: 7px 19px;
  border-radius: 13px;
  border: none;
  background: #19716a;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s;
}
.cookie-modal .modal-actions .cancel {
  background: #ececec;
  color: #19716a;
}
.cookie-modal .modal-actions .cancel:hover,
.cookie-modal .modal-actions .cancel:focus {
  background: #e9e2d0;
  color: #155263;
}
.cookie-modal .modal-actions .save:hover,
.cookie-modal .modal-actions .save:focus {
  background: #155263;
}

/* FORMS (Contact & so on) */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #e9e2d0;
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 13px;
  background: #f6f7f2;
  transition: border .16s, box-shadow .12s;
  outline: none;
  color: #304232;
}
input:focus, textarea:focus, select:focus {
  border-color: #19716a;
  box-shadow: 0 0 6px #19716a44;
}
button, input[type="submit"] {
  cursor: pointer;
}

/* UTILITY CLASSES */
.text-section {
  max-width: 720px;
}
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mx-auto { margin-left: auto; margin-right: auto;}
.no-select { user-select: none; }

/* ORGANIC SHAPE SEPARATORS FOR NATURE DESIGN */
.organic-separator {
  display: block;
  width: 100%;
  height: 52px;
  background: #eaf7e9;
  border-radius: 0 0 100% 100% / 0 0 90% 80%;
  margin-bottom: -10px;
}

/* SERVICE GRID (LEISTUNGEN) */
.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-grid > div {
  background: #f6f7f2;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 rgba(44,64,44,0.04);
  padding: 20px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 845px) {
  .service-grid { flex-direction: column; gap: 16px;}
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .section {margin-bottom: 34px;}
}
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.08rem; }
  .footer-contact img {width: 37px; height: 37px;}
}

/* OVERRIDE unwanted absolute for cards - only allow on section bg decorations */
.card, .testimonial-card, .service-grid > div {
  position: relative;
}

/* PREVENT ANY OVERLAPPING */
.card, .testimonial-card, .service-grid > div, section, .section {
  margin-bottom: 20px;
}

/* ANIMATIONS / MICRO-INTERACTIONS */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a, .cookie-banner button, .cookie-modal .modal-actions button {
  transition: background .18s, color .18s, box-shadow .19s, transform .13s;
}
.btn-primary:active, .mobile-nav a:active, .cookie-banner button:active, .cookie-modal .modal-actions button:active {
  transform: scale(.96);
}

/* BOX SHADOWS & ROUNDED CORNERS are naturally supplied above for all main blocks */

/* FOCUS STATES (ACCESSIBILITY) */
a:focus, .btn-primary:focus, button:focus {
  outline: 2px solid #19716a;
  outline-offset: 3px;
}

/* Hide nav on print */
@media print {
  header, footer, nav, .mobile-menu, .cookie-banner { display: none !important; }
}

/* END CSS file */
