/* RESET & BASELINE STYLES */
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, main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #ECF5F1;
  background: linear-gradient(135deg, #143225 0%, #225A44 100%);
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F9BE1B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #fff;
}
ul, ol {
  padding-left: 1.3em;
}
li + li {
  margin-top: 8px;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #F9BE1B;
  letter-spacing: .02em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #ECF5F1;
}
small {
  font-size: .88rem;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(19,47,33, .6);
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(34,90,68,.10);
}

/* FLEX PATTERNS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #172D22;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #0a1511b3;
  padding: 24px 24px 18px 24px;
  flex: 1 1 290px;
  min-width: 240px;
  transition: box-shadow .2s, transform .2s;
  border: 1.5px solid #225A44;
}
.card:hover {
  box-shadow: 0 6px 28px 0 #F9BE1B33, 0 2px 18px 0 #0a1511b3;
  transform: translateY(-4px) scale(1.025);
  border: 1.5px solid #F9BE1B;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ECF5F1;
  color: #143225;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,90,68,.07);
  padding: 20px;
  margin-bottom: 20px;
}
.testimonial-meta {
  font-size: .98rem;
  font-weight: 600;
  color: #225A44;
  margin-left: 10px;
}
/* Feature List and Items */
.features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #182f23;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px 0 #225A4433;
  border: 1.5px solid #225A44;
  padding: 24px;
  min-width: 220px;
  flex: 1 1 260px;
  position: relative;
  transition: border .2s, box-shadow .2s, transform .2s;
}
.feature:hover {
  border-color: #F9BE1B;
  box-shadow: 0 6px 24px 0 #F9BE1B22, 0 1.5px 10px 0 #225A4433;
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(1.15) drop-shadow(0 0 5px #F9BE1B);
}
.features ul {
  list-style: disc inside;
  color: #ECF5F1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Brand Values (ul.brand-values) */
.brand-values {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.brand-values li {
  background: #225A44;
  color: #F9BE1B;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: .99rem;
  letter-spacing: .03em;
  box-shadow: 0 1px 6px 0 #F9BE1B55;
  margin: 0;
}

/**************************************************/
/* HEADER/NAVIGATION */
header {
  background: transparent;
  margin-bottom: 20px;
  z-index: 41;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 46px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #ECF5F1;
  padding: 6px 8px;
  border-radius: 9px;
  position: relative;
  transition: background .18s, color .16s, box-shadow .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #225A44;
  color: #F9BE1B;
  box-shadow: 0 0 0 2px #F9BE1B66;
}
.cta-btn {
  background: #F9BE1B;
  color: #143225;
  border: none;
  outline: none;
  border-radius: 22px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 9px 28px;
  margin-left: 22px;
  box-shadow: 0 2px 14px 0 #F9BE1B55;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .2s, transform .2s;
  letter-spacing: .02em;
  display: inline-block;
}
.cta-btn.primary {
  background: #225A44;
  color: #F9BE1B;
  box-shadow: 0 0 0 2px #F9BE1B99, 0 2px 12px 0 #225A4466;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9BE1B;
  color: #143225;
  box-shadow: 0 4px 28px 0 #F9BE1B66, 0 2px 12px 0 #225A4466;
  transform: translateY(-2px) scale(1.035);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #F9BE1B;
  color: #225A44;
}

/**************************************************/
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #F9BE1B;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 8px;
  transition: color .18s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  color: #ECF5F1;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,50,37,.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  pointer-events: none;
  transition: transform .35s cubic-bezier(.87,.03,.2,1), opacity .25s;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #F9BE1B;
  border: none;
  font-size: 2.2rem;
  margin: 18px 22px 0 0;
  cursor: pointer;
  z-index: 1001;
  transition: color .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  margin-top: 48px;
  margin-right: 44px;
}
.mobile-nav a {
  color: #ECF5F1;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 13px 32px 13px 20px;
  width: 240px;
  border-radius: 14px;
  text-align: right;
  transition: background .18s, color .15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9BE1B;
  color: #225A44;
}

/**************************************************/
/* FOOTER */
footer {
  background: #182F23;
  padding: 40px 0 0 0;
  border-top: 2px solid #225A44;
  font-size: 1rem;
  color: #F9BE1B;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 10px;
  filter: brightness(1.12) drop-shadow(0 0 4px #F9BE1B99);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.footer-nav a {
  color: #F9BE1B;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  color: #ECF5F1;
  font-size: .98rem;
  margin-bottom: 3px;
}

/*******************************************/
/* HERO */
.hero {
  background: linear-gradient(115deg, #1c372a 70%, #225A44 100%);
  margin-bottom: 60px;
  border-radius: 24px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 200px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #F9BE1B;
  text-shadow: 0 2px 18px #F9BE1B33;
}
.hero p {
  color: #ECF5F1;
  font-size: 1.11rem;
}
.hero .cta-btn {
  margin-top: 8px;
}

/*******************************************/
/* TEAM PAGE - about.html */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.team-member {
  background: #192F24;
  color: #ECF5F1;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 #172D22CC;
  padding: 18px 24px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 12px;
  transition: box-shadow .16s, transform .16s;
}
.team-member:hover {
  box-shadow: 0 8px 26px 0 #F9BE1B22, 0 2px 10px 0 #172D22B3;
  transform: translateY(-3px) scale(1.015);
}
.qualifications {
  margin-top: 24px;
}
.qualifications ul {
  list-style: disc inside;
}

/*******************************************/
/* TIPS PAGE (ernaehrungstipps) & FEATURES */
.tips ul,
.features ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.tips ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #17462F;
  color: #F9BE1B;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px 0 #225A4422;
}
.tips ul li img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px #F9BE1B99);
}

/*******************************************/
/* SERVICES SECTIONS (Preise/Aktionen) */
.services {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #1D372B;
  border-radius: 22px;
  margin-bottom: 30px;
  padding: 32px 24px;
  box-shadow: 0 6px 22px 0 #225A4444;
}
.service-detail strong {
  color: #F9BE1B;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}

/*******************************************/
/* CONTACT & FORM SECTIONS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #143225;
  color: #F9BE1B;
  border-radius: 13px;
  padding: 32px;
  font-size: 1.09rem;
  width: 100%;
  margin-top: 10px;
  min-height: 75px;
}
.form .privacy-note {
  margin-top: 11px;
  background: #225A44;
  border-radius: 8px;
  padding: 8px 14px;
  color: #F9BE1B;
}
.privacy-note a {
  color: #F9BE1B;
  text-decoration: underline;
  transition: color .14s;
}
.privacy-note a:hover, .privacy-note a:focus {
  color: #fff;
}

/*******************************************/
/* CTA SECTIONS */
.cta {
  background: linear-gradient(90deg, #225A44 70%, #143225 100%);
  color: #F9BE1B;
  border-radius: 20px;
  box-shadow: 0 6px 28px 0 #F9BE1B11;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}
.cta h2 {
  margin-bottom: 8px;
}
.cta .cta-btn {
  margin-top: 12px;
}
.confirmation {
  background: #182F23;
  color: #F9BE1B;
  border-radius: 22px;
  padding: 44px 0;
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}
.confirmation h1 {
  color: #F9BE1B;
}
.confirmation p {
  color: #ECF5F1;
  font-size: 1.15rem;
  margin-bottom: 22px;
}

/*******************************************/
/* POLICY/PRIVACY/TERMS PAGES */
.privacy, .terms {
  background: #192F24;
  border-radius: 18px;
  padding: 40px 18px;
  box-shadow: 0 3px 16px 0 #225A4410;
  color: #ECF5F1;
}
.privacy h1, .terms h1 {
  color: #F9BE1B;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.privacy h2, .terms h2 {
  color: #F9BE1B;
  font-size: 1.15rem;
  margin-top: 22px;
}
.privacy ul, .terms ul {
  margin-bottom: 12px;
}
.privacy li, .terms li {
  margin-bottom: 10px;
}

/*******************************************/
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #225A44;
  color: #F9BE1B;
  width: 100vw;
  z-index: 9999;
  box-shadow: 0 -4px 22px 0 #143225AA;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: transform .34s, opacity .28s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  color: #F9BE1B;
  font-size: 1rem;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: #F9BE1B;
  color: #143225;
  border: none;
  border-radius: 14px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: .97rem;
  font-weight: 700;
  padding: 7px 22px;
  cursor: pointer;
  transition: background .13s, color .13s;
  margin: 0 0 0 2px;
}
.cookie-btn.settings {
  background: #ECF5F1;
  color: #225A44;
}
.cookie-btn.reject {
  background: #143225;
  color: #ECF5F1;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff29c;
  color: #225A44;
}

/*******************************************/
/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 50, 37, .87);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .24s;
}
.cookie-modal {
  background: #ECF5F1;
  color: #225A44;
  border-radius: 17px;
  box-shadow: 0 8px 42px 0 #225A4433;
  padding: 40px 28px 28px 28px;
  max-width: 340px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal h2 {
  color: #225A44;
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #2c6148;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background-color: #CDE4D9;
  border-radius: 22px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #F9BE1B;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #225A44;
  border-radius: 50%;
  transition: transform .23s cubic-bezier(.9,.12,.65,1.3), background .13s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
  background: #fff;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  color: #225A44;
  font-size: 1.45rem;
  cursor: pointer;
}

/*******************************************/
/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero .content-wrapper, .card, .feature, .testimonial-card, .cta, .confirmation {
  animation: fadeInUp .7s cubic-bezier(.95,.01,.25,1.1);
}

/*******************************************/
/* RESPONSIVE STYLES (MOBILE-FIRST) */
@media (max-width: 1020px) {
  .container {
    max-width: 94vw;
  }
  .main-nav {
    gap: 12px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 990px) {
  .content-grid, .card-container {
    flex-direction: column;
  }
  .feature-grid {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero .container {
    min-height: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .section, .cta {
    padding: 23px 8px;
    margin-bottom: 35px;
  }
  .feature {
    min-width: 0;
    width: 100%;
    padding: 16px 11px;
  }
  .feature img {
    width: 38px; height: 38px;
    margin-bottom: 8px;
  }
  .feature-grid, .feature-item {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 10px;
  }
  .about .brand-values {
    flex-direction: column;
    gap: 7px;
  }
  .team-members {
    flex-direction: column;
    gap: 12px;
  }
  .card {
    padding: 16px 10px 11px 13px;
    min-width: 0;
  }
  .services {
    padding: 18px 8px;
  }
  .contact-info, .map-placeholder {
    padding: 10px 6px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .brand-values li {
    font-size: .92rem;
    padding: 5px 10px;
  }
  .footer-nav, .footer-contact {
    font-size: .93rem;
  }
}

/*******************************************/
/* ENSURE PROPER SPACING, NO OVERLAP */
.section:not(:last-child), .card:not(:last-child), .feature:not(:last-child), .testimonial-card:not(:last-child), .team-member:not(:last-child), .about:not(:last-child), .cta:not(:last-child) {
  margin-bottom: 24px;
}

/*******************************************/
/* UTILITY */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

/*******************************************/
/* SCROLLBAR (A BIT FUTURISTIC) */
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: #192F24;
}
body::-webkit-scrollbar-thumb {
  background: #225A44;
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #F9BE1B;
}
