/* 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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: #37506a;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #7d9445;
  outline: none;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

strong, b {
  font-weight: 700;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #37506a;
  line-height: 1.15;
}
h1 { font-size: 2.625rem; margin-bottom: 24px; letter-spacing: -1.3px; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: -1px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.13rem; margin-bottom: 10px; }


/* CONTAINER & SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #222;
}

.quick-tips ul, .text-section ul, .text-section ol {
  margin-bottom: 8px;
  padding-left: 1.25em;
}


/* HEADER + NAVBAR (desktop/mobile) */
header {
  width: 100%;
  background: #e9e5df;
  border-bottom: 2px solid #37506a;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #37506a;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
  border-radius: 10px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #7d9445;
  color: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7d9445;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 28px;
  padding: 12px 34px;
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(55,80,106,0.09);
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #37506a;
  color: #fff;
  box-shadow: 0 8px 32px rgba(55,80,106,0.15);
}

.mobile-menu-toggle {
  display: none;
  background: #37506a;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  margin-left: 16px;
  z-index: 52;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #7d9445;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #37506a;
  box-shadow: 0 0 0 999vw rgba(34,34,34,0.2);
  z-index: 1002;
  padding: 22px 34px 64px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: #7d9445;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 30px;
  transition: background 0.2s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e9e5df;
  color: #37506a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 16px 0 16px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7d9445;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 11px 26px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  header .container {
    height: 58px;
  }
}


/* HERO SECTION */
.hero {
  background: #37506a;
  color: #fff;
  padding: 68px 0 54px 0;
  margin-bottom: 40px;
  border-radius: 0 0 64px 0;
  box-shadow: 0 8px 56px 0 rgba(55, 80, 106, 0.16);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero p {
  font-size: 1.21rem;
  color: #e9e5df;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.hero .cta-btn {
  background: #7d9445;
  color: #fff;
  font-size: 1.04rem;
  margin-top: 20px;
}
.hero .cta-btn:hover {
  background: #e9e5df;
  color: #37506a;
}


/* FEATURES GRID & CARDS */
.features-grid, .feature-card-row, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}

.feature-card, .leistungen-section .feature-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(55,80,106,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 22px 27px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid #e9e5df;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.feature-card img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 1.17rem;
  color: #37506a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.feature-card p, .feature-card span {
  color: #222;
  font-size: 1rem;
}
.feature-card strong, .feature-card span b {
  color: #7d9445;
  font-size: 1.1rem;
}
.feature-card:hover, .feature-card:focus {
  border-color: #7d9445;
  box-shadow: 0 12px 44px 0 rgba(125,148,69,0.14);
  transform: translateY(-4px) scale(1.019);
}

@media (max-width: 768px) {
  .features-grid, .feature-card-row, .feature-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 0;
  }
}


/* CARD CONTAINER (for custom layouts) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(55,80,106,0.08);
  padding: 24px;
  min-width: 220px;
  flex: 1 1 260px;
  border: 2px solid #e9e5df;
}

.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) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}


/* TESTIMONIALS */
.testimonials-section {
  background: #f7f8f6;
  padding: 52px 0 32px 0;
  border-radius: 36px 36px 0 0;
}
.testimonials-section h2 {
  color: #37506a;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 26px 20px 26px;
  border-radius: 19px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 5.5px 18px rgba(55,80,106,0.09);
  border: 2px solid #e9e5df;
  max-width: 760px;
  color: #1a2233;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: #7d9445;
  box-shadow: 0 0 0 2px #7d9445, 0 12px 32px 0 rgba(125,148,69,0.11);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #1a2233;
  margin-bottom: 2px;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #37506a;
  font-weight: 700;
  font-size: 1.04rem;
}
.testimonial-card .stars {
  font-size: 1.22rem;
  color: #7d9445;
  letter-spacing: 1px;
}

/* DISTINCT TESTIMONIALS IN DARK SECTIONS (if needed) */
.testimonials-section .testimonial-card p,
.testimonials-section .testimonial-card strong {
  color: #222 !important;
}

@media (max-width: 710px) {
  .testimonial-card {
    padding: 18px 9px 16px 14px;
  }
}


/* FOOTER */
footer {
  background: #e9e5df;
  border-top: 2.5px solid #7d9445;
  padding: 36px 0 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-menu a {
  color: #37506a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.2s;
  font-size: 0.96rem;
}
.footer-menu a:hover {
  color: #7d9445;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #37506a;
  font-size: 1.02rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
}


/* TAGS & SMALL LABELS */
.tag {
  color: #fff;
  background: #7d9445;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

.quick-tips {
  background: #e9e5df;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 20px;
}
.quick-tips h3 {
  margin-bottom: 8px;
}


/* ADDRESS & CONTACT */
address {
  font-style: normal;
  color: #37506a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 10px 0;
}
address a {
  color: #7d9445;
  font-weight: 800;
}


/* BUTTONS, INTERACTIONS & TRANSITIONS */
button, .cta-btn {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border .17s;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #37506a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1050;
  padding: 22px 10px 22px 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -6px 32px 0 rgba(55,80,106,0.12);
  animation: cookiebanner-in 0.5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 10px 28px;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
}
.cookie-banner .accept {
  background: #7d9445;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #e9e5df;
  color: #37506a;
}
.cookie-banner .reject {
  background: #e03232;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #cb1919;
}
.cookie-banner .settings {
  background: #fff;
  color: #37506a;
  border: 2px solid #7d9445;
}
.cookie-banner .settings:hover {
  background: #e9e5df;
  color: #7d9445;
}
@keyframes cookiebanner-in {
  from { transform: translateY(60%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; width:100vw; height:100vh;
  background: rgba(55,80,106,0.30);
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(55,80,106,0.19);
  padding: 36px 30px 28px 30px;
  max-width: 380px;
  color: #222;
  animation: cookiemodal-in 0.6s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes cookiemodal-in {
  from { transform: scale(0.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #37506a;
  margin-bottom: 3px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 17px;
  background: #e9e5df;
  color: #37506a;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.24rem;
  border: none;
  cursor: pointer;
  z-index: 11;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #7d9445;
  color: #fff;
}
.cookie-category {
  border-bottom: 1.2px solid #e9e5df;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
  color: #37506a;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #7d9445;
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #9a9a9a;
}
.cookie-category .desc {
  font-size: 0.92rem;
  color: #666;
  margin-top: 1px;
}
.cookie-modal .cookie-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 8px;
}


/* MISC VISUALS & EFFECTS */
::-webkit-scrollbar {
  width: 12px;
  background: #e9e5df;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #37506a;
  border-radius: 12px;
}


/* GENERAL SPACING & FLEX UTILS */
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-20 { gap: 20px !important; }
.gap-32 { gap: 32px !important; }


/* RESPONSIVE LAYOUTS & TYPOGRAPHY */
@media (max-width: 1024px) {
  html { font-size: 15px; }
  .container { max-width: 100vw; }
  .hero { padding: 48px 0 35px 0; }
  .section { padding: 28px 6px; }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
  .hero { padding: 32px 0 22px 0; border-radius: 0 0 32px 0; }
  .footer-brand img { height: 28px; }
  .footer-brand { font-size: 0.95rem; }
}
@media (max-width: 580px) {
  .hero h1 { font-size: 1.44rem; }
  .hero p { font-size: 1rem; }
  .feature-card, .card { padding: 18px 10px 16px 10px; }
  .section { margin-bottom: 35px; padding: 16px 2px; }
  .footer-menu { gap: 8px; }
  .footer-brand img { height: 22px; }
}

/* PRINT STYLES (BRIEF) */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main { margin: 0; padding: 0; }
  .container { padding: 0 10px !important; }
}

/* END OF STYLE.CSS */
