/* ------------------ 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%;
  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;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #FAF8F5;
  color: #313523;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}

/* ------------------ BRAND COLORS & NATURE ORGANIC PALETTE ------------------ */
:root {
  --brand-primary: #1A237E;  /* blue - trust */
  --brand-secondary: #55C1D6; /* sky blue */
  --brand-accent: #FFFFFF;    /* white */
  --nature-green: #56A26F;    /* organic green */
  --earth-brown: #895B37;     /* earthy brown */
  --sand-beige: #EFE8DC;      /* soft background */
  --moss-green: #374B29;
  --leaf-light: #D6E5D8;
  --shadow: rgba(51, 60, 50, 0.06);
}

/* ------------------ TYPOGRAPHY ------------------ */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #313523;
  background: var(--sand-beige);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--moss-green);
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, li {
  font-size: 1rem;
  color: #313523;
  line-height: 1.7;
}
strong { color: var(--brand-primary); font-weight: 700;}

@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
}

/* ------------------ CONTAINER & CONTENT WRAPPER ------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ------------------ SECTIONS & PADDING ------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--leaf-light);
  border-radius: 1.5em 2em 1.2em 1.3em/1.4em 1.2em 2em 1.6em;
  box-shadow: 0 2px 20px var(--shadow);
}
.hero {
  padding: 60px 0 30px 0;
  background: linear-gradient(90deg, #D6E5D8 70%, #F3F0E8 100%);
  position: relative;
  border-radius: 0 0 44px 44px / 0 0 20px 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 16px 0;
    border-radius: 0 0 30px 30px / 0 0 8px 8px;
  }
}

.features, .about, .cta, .testimonials, .services, .pricing, .faq, .steps, .contact, .legal, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Spacing utility */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-32 { margin-top: 32px !important; }

/* ------------------ FLEXBOX LAYOUTS ------------------ */
.feature-grid, .features ul, .steps ol, .footer .content-wrapper, .card-container, .card-grid, .content-grid, .text-image-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container { gap:24px; margin-bottom:24px; }
.card {
  margin-bottom: 20px;
  background: var(--brand-accent);
  border-radius: 1.2em 1.5em 1.1em 1.2em/1.3em 1.1em 1.6em 1.8em;
  box-shadow: 0 2px 18px var(--shadow);
  padding: 24px 20px;
  flex: 1 1 320px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(72, 87, 51,0.18);
  transform: translateY(-4px) scale(1.015);
}
.content-grid {
  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, .features ul, .steps ol, .footer .content-wrapper, .card-container, .card-grid, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Feature Item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--brand-accent);
  border-radius: 1.1em 2em 1.2em 1.4em/1.2em 1.1em 2em 1.8em;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  max-width: 550px;
  color: #27412C;
}
.testimonial-card p {
  color: #214328;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--nature-green);
}
.testimonial-card span {
  color: #FEB85A;
  font-size: 1.1em;
  font-weight: bold;
  margin-left: 10px;
}

/* ------------------ BUTTONS ------------------ */
.cta-btn, .cookie-btn  {
  padding: 13px 26px;
  background: var(--nature-green);
  color: var(--brand-accent);
  border-radius: 30px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 8px var(--shadow);
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.16s;
  margin-top: 8px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-secondary);
  color: #20471E;
  box-shadow: 0 6px 20px rgba(81,117,80,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* Button for table, forms, banners */
.button-secondary {
  background: var(--earth-brown);
  color: var(--brand-accent);
  padding: 12px 23px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.15s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--nature-green);
  color: var(--brand-accent);
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  margin-top: 8px;
  background: #FFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 12px var(--shadow);
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #EEEEEE;
}
th {
  background: var(--nature-green);
  color: #FFF;
  font-weight: 700;
  font-size: 1em;
}
tr:last-child td { border-bottom: none; }

/* ------------------ HEADER & NAVIGATION ------------------ */
header {
  background: var(--brand-accent);
  box-shadow: 0 2px 16px var(--shadow);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 20px 14px 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 15px;
  transition: background 0.14s, color 0.14s;
}
nav a:hover, nav a:focus {
  background: var(--leaf-light);
  color: var(--nature-green);
}
nav a.cta-btn {
  margin-left: 20px;
  color: #FFF;
  background: var(--nature-green);
  border-radius: 22px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 10px 22px;
  transition: background 0.18s, color 0.16s;
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: var(--brand-secondary);
  color: #20471E;
}

.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 2.0rem;
  box-shadow: 0 1px 7px var(--shadow);
  transition: background 0.14s, color 0.14s, transform 0.1s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
@media (max-width: 1024px) {
  nav { gap: 16px; }
  header .container { gap: 18px; padding: 16px 10px; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ------------------ MOBILE MENU OVERLAY ------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(165, 202, 170, 0.96);
  backdrop-filter: blur(3.5px);
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, visibility 0.28s, transform 0.32s cubic-bezier(.86,0,.07,1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 22px;
  background: var(--earth-brown);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 2rem;
  z-index: 1002;
  transition: background 0.14s, color 0.15s, transform 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  background: var(--brand-accent);
  padding: 52px 40px 32px 34px;
  box-shadow: -3px 0 20px var(--shadow);
  width: 85vw;
  max-width: 340px;
  min-height: 100vh;
  border-radius: 2em 0 0 2.7em;
  z-index: 1001;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--moss-green);
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-radius: 10px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--leaf-light);
  color: var(--nature-green);
}

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

/* ----------- MAIN, SECTION TYPOGRAPHY/LAYOUT ----------- */
main { min-height: 520px; }
section:not(.hero) + section,
.section + .section {
  margin-top: 32px;
}

/* -------------- ABOUT, LEGAL, CONTACT, ETC. -------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section img {
  width: 22px; height: 22px; vertical-align: middle; margin-right: 8px;
}


/* Quick Links / Links Section */
.quick-links {
  margin-top: 24px;
  font-size: 1em;
}
.quick-links a {
  color: var(--nature-green);
  text-decoration: underline;
}
.quick-links a:hover { color: var(--brand-secondary); }

/* FAQ Accordion (simple) */
.faq-accordion > div {
  background: var(--brand-accent);
  border-radius: 1.4em 2em 1.1em 1.3em/1.2em 2em 1.6em 1.8em;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 20px 18px 16px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.faq-accordion h3 {
  color: var(--nature-green);
  font-size: 1.07em;
  margin-bottom: 6px;
}


/* ------------------ FOOTER ------------------ */
footer {
  background: #F5F3ED;
  border-top: 4px solid var(--nature-green);
  padding: 0 0 0 0;
}
footer .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 42px 18px 26px 18px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .content-wrapper > div {
  flex: 1 1 220px;
  min-width: 182px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer img[alt="BlitzKurrier"],
footer img[alt="BlitzKurrier"] + .text-section {
  flex: 0 0 auto;
  max-width: 160px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer nav a {
  color: var(--brand-primary);
  font-size: 1em;
  padding: 2px 0;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--nature-green);
}
footer h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--earth-brown);
  font-size: 1.05em;
  margin-bottom: 5px;
}
footer a img {
  margin-right: 9px;
  margin-top: 0;
  width: 28px; height: 28px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  footer .content-wrapper > div { min-width: 0; max-width: 100%; }
}
@media (max-width: 600px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 26px 7px 15px 7px;
  }
}

/* ------------------ COOKIE BANNER & MODAL ------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #F3F0E8;
  color: #2F381F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -2px 20px var(--shadow);
  padding: 22px 20px 22px 28px;
  border-radius: 22px 22px 0 0/36px 36px 0 0;
  animation: cookiefadein 0.42s cubic-bezier(.76,0,.24,1);
}
@keyframes cookiefadein {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1em;
  margin-right: 16px;
}
.cookie-banner .cookie-btn {
  margin: 0 7px;
  padding: 9px 22px;
  font-size: 1em;
  border-radius: 15px;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--brand-secondary);
  color: var(--moss-green);
}
.cookie-banner .cookie-btn.cookie-reject {
  background: var(--earth-brown);
  color: #FFF;
}
@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 12px 12px 14px;
  }
  .cookie-banner p { margin-right: 0; }
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1203;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(86, 162, 111, 0.22);
  backdrop-filter: blur(2.5px);
  animation: cookiemodalfade 0.25s;
}
.cookie-modal-overlay.open { display: flex; justify-content: center; align-items: center; }
@keyframes cookiemodalfade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FAF8F5;
  border-radius: 2em 1.4em 2em 1.7em / 1.6em 2em 1.3em 1.4em;
  box-shadow: 0 1px 40px var(--shadow);
  min-width: 320px;
  max-width: 98vw;
  min-height: 0;
  padding: 34px 26px 30px 26px;
  position: relative;
  z-index: 1300;
  animation: modalbounce 0.35s;
}
@keyframes modalbounce {
  0% {transform: scale(0.93);} 70% {transform: scale(1.03);} 100% {transform: scale(1);}
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--nature-green);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.2rem;
  z-index: 100;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--earth-brown);
  color: #FFD;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--nature-green);
  margin-bottom: 16px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1em;
}
.cookie-option label {
  font-weight: 600;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--nature-green);
  width: 18px;
  height: 18px;
}
.cookie-option input[disabled], .cookie-option input[readonly] {
  filter: grayscale(70%) opacity(0.55);
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 24px;
}
.cookie-modal .cookie-btn { padding: 10px 26px; }

/* Hide scrollbar on mobile */
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    padding: 22px 6vw 22px 6vw;
  }
}

/* ------------------ RESPONSIVE/MOBILE LAYOUTS ------------------ */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .content-wrapper, .footer .content-wrapper {
    gap: 14px;
  }
  .card-container, .content-grid, .feature-grid {
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .section, .about, .cta, .testimonials, .services, .pricing, .faq, .steps, .contact, .legal, .thankyou {
    padding: 20px 8px;
    margin-bottom: 36px;
    border-radius: 1.1em 1.7em 1.4em 1.2em/1.5em 1.1em 1.6em 1.4em;
  }
  h1, h2, h3 { margin-bottom: 12px;}
}


/* ------------------ ORGANIC/NATURE DECORATIVE ELEMENTS ------------------ */
.hero:after {
  content: '';
  display: block;
  position: absolute;
  right: -160px;
  top: 12px;
  width: 320px;
  height: 140px;
  background: rgba(86,162,111, 0.13);
  border-radius: 67% 89% 70% 85% / 80% 90% 70% 91%;
  z-index: 2;
  pointer-events: none;
  filter: blur(4px);
}
.hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -110px;
  bottom: -70px;
  width: 215px; height: 110px;
  background: rgba(137,91,55,0.10);
  border-radius: 83% 96% 77% 87% / 84% 90% 77% 86%;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}
.section, .card, .testimonial-card, .faq-accordion > div, .cookie-modal {
  /* Mimic organic uneven border radius */
  border-radius: 1.4em 2em 1.3em 1.7em/1.9em 1.2em 2.1em 1.5em;
}

/* Outline accent for focus states */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px dashed var(--brand-secondary);
  outline-offset: 2px;
}

/* ------------------ ANIMATIONS & MICRO-INTERACTIONS ------------------ */
a, button, .cta-btn, .cookie-btn {
  transition: color 0.16s, background 0.14s, box-shadow 0.16s, transform 0.13s;
}
.card, .testimonial-card, .faq-accordion > div, .cookie-modal {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 8px 30px rgba(120,148,110,0.16);
  transform: translateY(-2px) scale(1.01);
}

/* ------------------ Z-INDEX CONTROL ------------------ */
.header, header { z-index: 100; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay, .cookie-modal { z-index: 1300; }


/* ------------------ UTILITIES & MISC FIXES ------------------ */
.hide { display: none!important; }

/* ------------- Ensure No Overlapping on Small Screens ------------- */
@media (max-width: 480px) {
  h1, h2 { font-size: 1.05rem; }
  .card, .testimonial-card, .faq-accordion > div, .cookie-modal {
    padding: 14px 6px;
  }
  nav a, nav .cta-btn { font-size: 0.95em; padding: 8px 4px; }
}
