/* CSS RESET & NORMALIZATION */
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, 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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FDF6EA;
  color: #143731;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Raleway:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  color: #22594A;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
  color: #22594A;
}
h4 {
  font-size: 1.125rem;
}

p, li, a, small {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
p, li {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.125rem;
  color: #47605A;
  margin-bottom: 18px;
  font-weight: 500;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,89,74,0.07);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 16px 32px;
  box-shadow: 0 4px 18px rgba(34,89,74,0.05);
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 20;
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
.main-nav a {
  color: #22594A;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.primary-cta {
  background: #22594A;
  color: #FDF6EA;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 24px;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(34,89,74,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.primary-cta:hover,
.main-nav a.primary-cta:focus {
  background: #8BBF7A;
  color: #22594A;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2FAEE;
  color: #22594A;
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    padding: 14px 14px;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 5px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 18px;
    background: #22594A;
    color: #fff;
    font-size: 2rem;
    border: none;
    border-radius: 9px;
    padding: 8px 15px;
    z-index: 100;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 12px rgba(34,89,74,0.10);
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    background: #8BBF7A;
    color: #22594A;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,89,74,0.95);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.74,.18,.77,.67);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  padding: 6px 13px 8px 13px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #8BBF7A;
  color: #22594A;
}
.mobile-nav {
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 22px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #8BBF7A;
  color: #22594A;
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none;
  }
}

/* MAIN BUTTONS */
.primary-cta {
  display: inline-block;
  background: #22594A;
  color: #FDF6EA;
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,89,74,0.09);
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.primary-cta:hover,
.primary-cta:focus {
  background: #8BBF7A;
  color: #22594A;
  box-shadow: 0 4px 18px rgba(34,89,74,0.14);
  outline: none;
}

/* FEATURES / CARDS / FLEXBOX MANDATORY PATTERNS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F8FCF6;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(34,89,74,0.07);
  padding: 26px 20px 22px 20px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 calc(33% - 24px);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.feature-item .price {
  font-weight: 700;
  color: #22594A;
  font-size: 1.02rem;
  margin-top: 6px;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 8px 32px rgba(34,89,74,0.18);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 1024px) {
  .features-grid {
    gap: 16px;
  }
  .feature-item {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
    padding: 20px 10px 18px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(34,89,74,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
}

.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-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.blog-post {
  background: #F8FCF6;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(34,89,74,0.07);
  padding: 19px 18px 16px 18px;
  flex: 1 1 270px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-post h3 {
  font-size: 1.17rem;
  margin-bottom: 2px;
}
.blog-post .tag {
  display: inline-block;
  background: #E6EFE5;
  color: #22594A;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 20px;
  padding: 4px 14px 4px 14px;
  margin-top: 7px;
  margin-right: 7px;
}
.tag-filter {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 9px;
}
.tag-filter strong {
  color: #22594A;
}
.tag-filter .tag {
  cursor: pointer;
  background: #22594A;
  color: #fff;
  font-weight: 500;
  transition: background 0.18s;
}
.tag-filter .tag:hover,
.tag-filter .tag:focus {
  background: #8BBF7A;
  color: #22594A;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F7F8;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(34,89,74,0.10);
  min-width: 235px;
  margin-bottom: 20px;
  margin-top: 7px;
  color: #143731;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card strong {
  color: #22594A;
}
.testimonial-card p:last-child {
  color: #FFA500;
  font-size: 1.2rem;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 7px 26px rgba(34,89,74,0.22);
  background: #E6EEEE;
}

/* CALENDAR (termine) */
.calendar ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calendar li {
  background: #F8FCF6;
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 1.08rem;
  color: #22594A;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.calendar .availability {
  background: #8BBF7A;
  color: #22594A;
  padding: 2px 10px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.96rem;
  margin-right: 8px;
}
.calendar a {
  background: #22594A;
  color: #fff;
  border-radius: 16px;
  padding: 7px 18px;
  font-size: 1rem;
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.2s;
}
.calendar a:hover,
.calendar a:focus {
  background: #8BBF7A;
  color: #22594A;
}

/* FAQ Block */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #F8FCF6;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(34,89,74,0.04);
  padding: 18px 18px 14px 18px;
  margin-bottom: 15px;
}
.faq-item h3 {
  font-size: 1.01rem;
  margin-bottom: 6px;
}

/* MAP PLACEHOLDER (Kontakt) */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  background: #E6EFE5;
  border-radius: 10px;
  padding: 12px 14px;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
}
.map-placeholder span {
  color: #22594A;
  font-weight: 500;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #22594A;
  color: #fff;
  padding: 32px 0 13px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #8BBF7A;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 4px;
  border-radius: 6px;
  padding: 6px 8px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #8BBF7A;
  color: #22594A;
}
footer small {
  display: block;
  text-align: center;
  color: #BBCDC4;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* TEXT SECTIONS AND LISTS */
.text-section {
  background: #F8FCF6;
  border-radius: 12px;
  padding: 20px 20px 10px 20px;
  margin-bottom: 8px;
}
.text-section ul,
.text-section ol {
  margin-left: 25px;
  margin-bottom: 12px;
  padding-left: 0;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
  list-style-type: disc;
  color: #22594A;
}
.text-section a {
  color: #22594A;
  text-decoration: underline;
}
.text-section a:hover,
.text-section a:focus {
  background: #F2FAEE;
  color: #143731;
}

.contact-details {
  margin-top: 23px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F4F7F8;
  color: #143731;
  padding: 22px 30px 18px 30px;
  box-shadow: 0 -4px 21px rgba(34,89,74,0.13);
  z-index: 8000;
  gap: 24px;
  flex-wrap: wrap;
  animation: cookieBannerAppear 0.5s cubic-bezier(.5,.8,.5,1.3);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(110px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner-btn {
  background: #22594A;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 17px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-left: 2px;
}
.cookie-banner-btn.settings {
  background: #8BBF7A;
  color: #22594A;
}
.cookie-banner-btn:hover,
.cookie-banner-btn:focus {
  background: #8BBF7A;
  color: #22594A;
}
.cookie-banner-btn.settings:hover,
.cookie-banner-btn.settings:focus {
  background: #22594A;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 17px 10px;
    gap: 15px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 8100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -51%) scale(0.97);
  min-width: 330px;
  max-width: 94vw;
  background: #fff;
  color: #143731;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(34,89,74,0.16);
  padding: 32px 28px 24px 28px;
  animation: cookieModalAppear 0.45s cubic-bezier(.5,.8,.5,1.3);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalAppear {
  0% { transform: translate(-50%,30%) scale(0.85); opacity: 0; }
  100% { transform: translate(-50%,-51%) scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.cookie-modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #22594A;
  margin-bottom: 4px;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #22594A;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s;
  margin-left: 13px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #EFF8EC;
}
.cookie-modal-content {
  margin-top: 18px;
  font-size: 1rem;
}
.cookie-category {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 13px;
  background: #E6EFE5;
  position: relative;
  transition: background 0.2s;
  display: inline-flex;
  cursor: pointer;
  margin-left: 6px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  height: 20px;
  width: 20px;
  background: #8BBF7A;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #22594A;
  transform: translateX(22px);
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 19px;
}
.cookie-modal-footer button {
  background: #22594A;
  color: #fff;
  border-radius: 15px;
  border: none;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 18px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-footer button:hover,
.cookie-modal-footer button:focus {
  background: #8BBF7A;
  color: #22594A;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 96vw;
    padding: 18px 6px 14px 8px;
  }
}

/* RESPONSIVE TYPOGRAPHY & SPACING */
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
    margin-bottom: 11px;
  }
  h3 {
    font-size: 1.05rem;
  }
  .primary-cta {
    font-size: 1.0rem;
    padding: 10px 15px;
  }
  .footer-nav {
    gap: 11px;
    font-size: 0.98rem;
  }
}

/* MICROLEVEL - FORMAL ELEMENTS */
::selection {
  background: #8BBF7A;
  color: #fff;
}
a {
  color: #22594A;
  text-decoration: underline;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #8BBF7A;
}
strong, b {
  font-weight: 700;
}

/* UTILITIES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* ACCENT & COLOR CLASSES */
.accent { color: #8BBF7A !important; }
.bg-accent { background: #8BBF7A !important; }
.bg-primary { background: #22594A !important; color: #fff !important; }
.bg-secondary { background: #8BBF7A !important; color: #22594A !important; }
.bg-light { background: #FDF6EA !important; color: #22594A !important; }

/* Prevent overlapping, guarantee spacing between main blocks */
section, .section, .card, .feature-item, .testimonial-card, .faq-item, .blog-post {
  margin-bottom: 20px;
}

/* Hide outline only for mouse, not keyboard */
:focus:not(:focus-visible) { outline: none; }

/* Hide scrollbars on mobile menu overlay */
.mobile-menu {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* --- END OF PROFESSIONAL CORPORATE LAYOUT CSS --- */
