/* ===================================================
   CSS RESET & BASELINE
   =================================================== */
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, strong, sub, sup, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233524;
  background-color: #f7f5ef;
  min-height: 100vh;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #23496d;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover {
  color: #51a179;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
ul, ol {
  padding-left: 1.5em;
}

/* ===================================================
   BRAND COLORS & FONTS (Nature Organic Variant)
   =================================================== */
:root {
  --color-primary: #23496d;
  --color-secondary: #0e222f;
  --color-accent: #b7d7b0;
  --color-green: #51a179;
  --color-earth: #e8dbc6;
  --color-sand: #f7f5ef;
  --color-wood: #af895b;
  --color-leaf: #b7d7b0;
  --color-text: #233524;
  --color-dark-text: #102311;
  --color-white: #fff;
  --color-shadow: rgba(35, 73, 109, 0.07);
  --color-border: #e5e2d8;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Typography base scale */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -1px;
}
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.6rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  h2, .h2 { font-size: 2rem; }
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

p, li {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong { color: var(--color-primary); }
small { font-size: 0.95em; color: var(--color-dark-text); }

.text-section {
  max-width: 800px;
  margin: 0 auto 24px auto;
  text-align: left;
}

hr { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }

/* =========================================
   CONTAINERS & SECTIONS
   ========================================= */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-sand);
  border-radius: 32px;
  box-shadow: 0 6px 24px var(--color-shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    border-radius: 18px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
header {
  background: linear-gradient(120deg, #b7d7b0 80%, #e8dbc6 100%);
  border-bottom: 2px solid var(--color-accent);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px 16px 8px;
  gap: 16px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 23px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  background: transparent;
}
header nav a:hover, header nav a:focus {
  background: var(--color-green);
  color: var(--color-white);
}

@media (max-width: 900px) {
  header nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  header .container {
    padding: 14px 4px 14px 4px;
  }
  header img { height: 38px; }
}
@media (max-width: 768px) {
  header nav { display: none; }
  header img { height: 32px; }
}

/* =========================================
   MOBILE BURGER MENU
   ========================================= */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 120;
  width: 46px;
  height: 46px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 7px var(--color-shadow);
  transition: background 0.15s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 49, 32, 0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.7,0.2,0.2,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 20px 0 0;
  font-size: 2.1rem;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
  border: none;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-green);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 38px 0 0 26px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-family: var(--font-display);
  padding: 17px 0 4px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,220,180,0.11);
  transition: color 0.18s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* =========================================
   HERO & SECTION STYLING
   ========================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-earth);
  border-radius: 28px;
}
@media (max-width: 768px) {
  section { padding: 28px 8px; }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 240px;
  background: var(--color-white);
  box-shadow: 0 1px 10px var(--color-shadow);
  border-radius: 20px;
  padding: 28px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.23s, transform 0.19s;
  border: 1.5px solid var(--color-leaf);
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 3px 8px #b7d7b0);
  border-radius: 14px 14px 0 14px;
  background: linear-gradient(135deg,#caf6ba 60%,#e8dbc6 100%);
  padding: 8px;
}

/* Cards (if used in grid) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 24px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 29px var(--color-shadow);
  transform: scale(1.018);
}
.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, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================================
   TESTIMONIALS & CARDS
   ========================================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  box-shadow: 0 1px 12px var(--color-shadow);
  margin-bottom: 24px;
  border-radius: 18px;
  border-left: 6px solid var(--color-green);
  transition: box-shadow 0.16s;
  color: var(--color-dark-text);
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin: 0;
  line-height: 1.4;
}
.testimonial-card footer {
  color: var(--color-wood);
  font-size: 1rem;
  margin-left: 10px;
}

/* FAQ and Trustboxes */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 18px 0;
}
.faq-item {
  background: var(--color-leaf);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 200px;
  color: var(--color-dark-text);
  box-shadow: 0 1px 10px var(--color-shadow);
}
.trustbox {
  background: var(--color-accent);
  border-radius: 18px;
  color: var(--color-secondary);
  padding: 20px;
  margin: 24px 0 16px 0;
  font-weight: 500;
  box-shadow: 0 2px 14px var(--color-shadow);
}

/* Tip Links on Anleitungen */
.tip-link {
  background: var(--color-leaf);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: box-shadow 0.16s, background 0.16s;
}
.tip-link:hover {
  box-shadow: 0 6px 16px var(--color-shadow);
  background: var(--color-green);
  color: var(--color-white);
}
.tip-link h3 a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.14s;
}
.tip-link:hover h3 a { color: var(--color-white); }

/* Features Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  padding: 18px 18px 18px 30px;
  border-radius: 16px;
  margin-bottom: 16px;
  border-left: 4px solid var(--color-green);
}

/* =========================================
   BUTTONS, CTA   & Links
   ========================================= */
.cta-button {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 29px;
  margin: 14px 0 8px 0;
  box-shadow: 0 2px 18px var(--color-shadow);
  border: none;
  cursor: pointer;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: background 0.23s, color 0.19s, transform 0.16s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
}

button, .button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 20px;
  padding: 10px 28px;
  transition: background 0.19s, color 0.19s;
  border: 2px solid var(--color-green);
  margin-bottom: 0;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* =========================================
   DETAILS & COLLAPSIBLE STEPS
   ========================================= */
details {
  background: var(--color-leaf);
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 12px 16px;
  transition: box-shadow 0.16s, background 0.14s;
}
details[open] {
  background: var(--color-sand);
  box-shadow: 0 2px 16px var(--color-shadow);
}
details summary {
  font-family: var(--font-display);
  color: var(--color-green);
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  margin-bottom: 3px;
  outline: none;
}
details summary:focus {
  outline: 2px solid var(--color-primary);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: linear-gradient(120deg, #e8dbc6 60%, #b7d7b0 100%);
  padding: 0;
  border-top: 2px solid var(--color-leaf);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 22px 8px 22px 8px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: var(--color-secondary);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  padding: 3px 0;
  border-radius: 0;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-green);
}
footer .text-section {
  font-size: 1rem;
  color: var(--color-dark-text);
}
footer small {
  color: var(--color-primary);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
   ========================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1999;
  background: var(--color-white);
  box-shadow: 0 -2px 32px var(--color-shadow), 0 -1px 0 var(--color-leaf);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 12px 12px 12px;
  gap: 22px;
  border-radius: 24px 24px 0 0;
  animation: slideUp 0.66s 1 cubic-bezier(0.7,0.1,0.2,1);
}
@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  text-align: center;
  color: var(--color-text);
  font-size: 1.07rem;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 26px;
  border-radius: 16px;
  border: 2px solid var(--color-green);
  background: var(--color-leaf);
  color: var(--color-primary);
  margin: 0;
  transition: background 0.19s, color 0.14s;
}
.cookie-accept {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.cookie-accept:hover { background: var(--color-primary); color: var(--color-accent); }
.cookie-reject {
  background: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-green);
}
.cookie-reject:hover {
  background: var(--color-green);
  color: var(--color-white);
}
.cookie-settings {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.cookie-settings:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,49,32,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.32s 1;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 32px var(--color-shadow);
  padding: 40px 32px;
  min-width: 280px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: slideDown 0.29s 1 cubic-bezier(0.7,0.1,0.2,1);
}
@keyframes slideDown {
  from { transform: translateY(-80px); opacity: 0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: var(--color-green);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 1.06rem;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-green);
  width: 20px;
  height: 20px;
}
.cookie-category .cookie-essential {
  color: var(--color-secondary);
  font-weight: 500;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

/* =========================================
   FORMS & INPUTS (if present in the future)
   ========================================= */
input, textarea, select {
  border: 1.5px solid var(--color-leaf);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  background: var(--color-sand);
  color: var(--color-text);
  width: 100%;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-green);
  box-shadow: 0 2px 7px var(--color-shadow);
}

/* =========================================
   HIGHLIGHT & INFO BOXES
   ========================================= */
.highlight-box {
  background: var(--color-accent);
  border-radius: 14px;
  color: var(--color-secondary);
  padding: 18px 22px;
  font-size: 1rem;
  margin: 18px 0;
  box-shadow: 0 1px 12px var(--color-shadow);
}

/* =========================================
   MISCELLANEOUS
   ========================================= */
ol, ul {
  margin-bottom: 16px;
}
li {
  padding-left: 0.3em;
  margin-bottom: 7px;
}
details ol, details ul {
  margin-top: 7px;
  margin-bottom: 0;
}

/* Spacing corrections for sections */
.section:not(:last-child),
section:not(:last-child) {
  margin-bottom: 60px !important;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 900px) {
  .feature-grid > div, .faq-item, .card {
    min-width: 180px;
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.45rem; margin-bottom: 16px; }
  h2, .h2 { font-size: 1.12rem; }
  .container { padding: 0 5px; }
  .feature-grid { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 15px; }
  .content-wrapper { gap: 16px; }
  .faq-list { flex-direction: column; gap: 10px; }
  .trustbox, .tip-link { padding: 13px 7px; }
  .footer .container { padding: 18px 0; }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* End */
