/* ---------------- 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F4F6F8;
  color: #2E4761;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2E4761;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #7BA954;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 600;
}

/* ---------------- TYPOGRAPHY & BRAND FONTS ---------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2E4761;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #2E4761;
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
}

/* ---------------- CONTAINER & LAYOUT ---------------- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ------------------ SPACING PATTERNS ------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(46, 71, 97, 0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(46, 71, 97, 0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F4F6F8;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(46, 71, 97, 0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(46,71,97,.06);
  padding: 24px;
  flex: 1 1 250px;
  min-width: 220px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature-item img {
  width: 40px; height: 40px; margin-bottom: 4px;
  filter: grayscale(15%);
}
.feature-item:hover, .feature-item:focus {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 4px 20px rgba(123, 169, 84, 0.12);
}

@media (max-width: 900px) {
  .content-wrapper, .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
  .card-container, .content-grid,.feature-grid { flex-direction: column; gap: 16px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ------------ HEADER / NAVIGATION ------------ */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(46,71,97,0.07);
  padding: 0;
  z-index: 1001;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  height: 70px;
  gap: 30px;
}
.logo img {
  height: 42px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2E4761;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
.main-nav a.cta.primary {
  background: #2E4761;
  color: #fff;
  font-weight: 600;
  margin-left: 20px;
  letter-spacing: 0.03em;
  border-radius: 7px;
  padding: 8px 22px;
  box-shadow: 0 2px 6px rgba(46, 71, 97, 0.13);
  transition: background 0.18s, color 0.16s, box-shadow 0.2s;
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: #7BA954;
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 169, 84, 0.19);
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F6F8;
  color: #7BA954;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2E4761;
  padding: 4px 10px;
  line-height: 1;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.17s;
  z-index: 1101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
  outline: none;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 15px;
    height: 62px;
    min-height: 62px;
  }
}
@media (max-width: 830px) {
  .main-nav { gap: 8px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------ MOBILE MENU ------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(46, 71, 97, 0.82);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.71, 0.12, 0.3, 1), opacity 0.21s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 18px 18px 0 0;
  cursor: pointer;
  line-height: 1;
  margin-right: 8px;
  margin-top: 8px;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #7BA954;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 40px 0 0 0;
  width: 100vw;
  padding-left: 30px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 9px 0;
  font-weight: 500;
  border-radius: 8px;
  width: 90vw;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #7BA954; color: #fff; }
@media (min-width: 769px) {
  .mobile-menu { display: none!important; }
}

/* ---------------- HERO SECTIONS ---------------- */
.hero {
  background: #2E4761;
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 9px 32px rgba(46,71,97,.11);
  margin-bottom: 60px;
  padding: 58px 0 48px 0;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  margin-bottom: 20px;
}
.hero p {
  color: #E0E6ED;
  font-size: 1.2rem;
}
.hero .cta.primary {
  background: #7BA954;
  color: #fff;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(123,169,84,0.15);
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 16px 16px;
    padding: 34px 0 22px 0;
    margin-bottom: 38px;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
}

/* ---------------- CTA BUTTONS ---------------- */
.cta.primary, a.cta.primary, button.cta.primary {
  display: inline-block;
  background: #2E4761;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(46,71,97,0.07);
  transition: background 0.17s, color 0.13s, box-shadow 0.17s;
  margin-bottom: 0; /* remove margin for grid layouts */
}
.cta.primary:hover, .cta.primary:focus {
  background: #7BA954;
  color: #fff;
  box-shadow: 0 4px 16px rgba(123,169,84,0.13);
  outline: none;
}

/* --------------- FEATURE GRID --------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
}

/* ------------- SERVICES & LISTS ------------- */
.services .service-list, .services .service-highlights, .services .service-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.services .service-list li, .services .service-preview li {
  background: #F4F6F8;
  border-radius: 10px;
  padding: 18px 18px 10px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 5px rgba(46,71,97,0.04);
  margin-bottom: 0;
  transition: box-shadow 0.17s;
}
.services .service-list li:hover,
.services .service-preview li:hover {
  box-shadow: 0 4px 20px rgba(123, 169, 84, 0.07);
}
.services .service-list h3 {
  font-size: 1.09rem;
  color: #2E4761;
  margin-bottom: 7px;
  font-weight: 600;
  margin-top: 0;
  display: inline-block;
}
.services .service-list .preis {
  font-size: 1rem;
  font-weight: 500;
  color: #7BA954;
  margin-left: 8px;
}
.services .service-pricing p {
  margin-top: 6px;
  margin-bottom: 12px;
  color: #2E4761;
  font-weight: 600;
}
.services .service-highlights li {
  padding: 8px 0 4px 20px;
  list-style: disc inside;
  background: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .services .service-list li, .services .service-preview li {
    padding: 13px 12px 7px 13px;
  }
}

/* --------------- TESTIMONIALS --------------- */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  background: #fff;
  color: #2E4761;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 14px rgba(46, 71, 97, 0.10);
  border: 1px solid #E2E8F0;
  padding: 28px 20px 18px 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  transition: box-shadow 0.15s, border 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 24px rgba(123, 169, 84, 0.13);
  border: 1px solid #7BA954;
}
.testimonial-card p {
  color: #2E4761;
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-meta {
  font-size: 0.94rem;
  color: #454E5C;
  margin-top: 3px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ------------- THEMATISCHE TAGS ------------- */
.thematic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 0 0;
}
.thematic-tags span {
  background: #E0E6ED;
  color: #2E4761;
  font-size: 0.98rem;
  padding: 6px 18px;
  border-radius: 18px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ----------- REGION & FAQ / LEGAL LISTS ----------- */
.region-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.region-list li,
.faq-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(46,71,97,0.06);
  padding: 16px 18px;
  margin-bottom: 0;
}
.region-list li strong {
  color: #2E4761;
}
.faq-list h3 {
  font-size: 1.09rem;
  font-weight: 600;
  color: #2E4761;
  margin-bottom: 6px;
}
.contact-prompt {
  margin-top: 12px;
  font-size: 1rem;
}
.contact-prompt a {
  color: #7BA954;
  font-weight: 500;
}

/* --------------- LEGAL & TEXT SECTION --------------- */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(46,71,97,0.07);
  padding: 36px 20px;
  margin-bottom: 60px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  padding-left: 22px;
  margin: 10px 0;
  list-style: disc inside;
}
.text-section li {
  padding-left: 0;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* --------------- FOOTER --------------- */
footer {
  background: #2E4761;
  color: #fff;
  padding: 38px 0;
  border-radius: 36px 36px 0 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E0E6ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
  margin-right: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7BA954;
}
.contact-info {
  color: #E0E6ED;
  line-height: 1.6;
}
.contact-info a {
  color: #7BA954;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  padding-top: 10px;
}
.footer-branding img {
  height: 40px;
  width: auto;
}
.footer-branding span {
  color: #D6DEE9;
  font-size: 0.94rem;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------------- ABOUT/TEAM BIO ------------ */
.team-bio {
  margin-top: 18px;
  background: #F4F6F8;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(46,71,97,0.04);
  padding: 20px 18px;
}

/* -------------- CONFIRMATION PAGE -------------- */
.confirmation-message {
  background: #E0E6ED;
  color: #2E4761;
  padding: 16px 18px;
  border-radius: 13px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 500;
}
.next-steps-info ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 15px;
  list-style: disc inside;
}
.next-steps-info li {
  margin-bottom: 6px;
}

/* ----------- CONTACT PAGE DETAILS ------------ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #E0E6ED;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.email-phone-snippet a, .contact-details a {
  color: #7BA954;
  text-decoration: underline;
}
.map-location {
  margin-top: 14px;
  font-size: 0.97rem;
  color: #6C7D93;
  font-style: italic;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
}

/* -------- ACCESSIBILITY STYLE FOCUS -------- */
:focus {
  outline: 2px solid #7BA954;
  outline-offset: 2px;
}

/* ------------ MICRO-INTERACTIONS ------------ */
.card, .testimonial-card, .feature-item, .services .service-list li {
  transition: box-shadow 0.14s, transform 0.12s;
}
.card:hover, .card:focus, .services .service-list li:hover, .feature-item:hover {
  box-shadow: 0 4px 22px rgba(123, 169, 84, 0.15);
  transform: translateY(-2px) scale(1.012);
}

/* -------------- RESPONSIVE BREAKPOINTS -------------- */
@media (max-width: 1100px){
  .content-wrapper, .card-container, .feature-grid, .content-grid, .section {max-width: 100%;}
}
@media (max-width: 700px) {
  .footer-branding {flex-direction: column; gap: 3px;}
  .feature-item {min-width: 170px; padding: 14px;}
}

/* ------------ COOKIE CONSENT BANNER -------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 4000;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(46,71,97,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 34px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2E4761;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(0.71, 0.12, 0.3, 1), opacity 0.18s;
  border-radius: 16px 16px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1.05rem;
  background: #F4F6F8;
  color: #2E4761;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.17s, color 0.13s;
}
.cookie-banner .cookie-btn.accept {
  background: #7BA954;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #8192A8;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #2E4761;
  color: #fff;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #2E4761;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:focus,
.cookie-banner .cookie-btn.accept:hover {
  background: #53793c;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:focus,
.cookie-banner .cookie-btn.reject:hover {
  background: #2E4761;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner .banner-buttons {
    gap: 8px;
    flex-direction: row;
  }
}

/* -------- COOKIE PREFERENCES MODAL ---------- */
.cookie-modal-overlay {
  position: fixed; top:0; left:0; width:100vw; height:100vh;
  z-index:5000;
  background: rgba(46,71,97,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #2E4761;
  padding: 32px 28px 22px 28px;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(46,71,97,0.25);
  max-width: 420px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #2E4761;
  margin-bottom: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2E4761;
  cursor: pointer;
  transition: color 0.1s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #7BA954;
  outline: none;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  min-width: 140px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #7BA954;
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-category.essential label {
  color: #7BA954;
}
.cookie-modal .cookie-category.essential input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 18px;
  border: none;
  background: #2E4761;
  color: #fff;
  font-weight: 600;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-modal .cookie-btn.settings {
  background: #7BA954;
  color: #fff;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: #7BA954;
  color: #fff;
}

/* --------------- PRINT OVERRIDE -------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000;
    font-size: 12pt;
  }
}
