/* 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;
  background: transparent;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

body {
  min-height: 100vh;
  background: #F7F4EA;
  color: #1F2A36;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  color: #1F2A36;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p {
  margin-bottom: 18px;
  color: #1F2A36;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #1F2A36;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 10px;
}
dl {
  margin: 0 0 24px 0;
}
dt {
  font-weight: 600;
  margin-top: 14px;
}
dd {
  margin-bottom: 12px;
  margin-left: 20px;
  color: #44494e;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(30,40,50,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
}
header img {
  height: 40px;
  margin-right: 26px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  color: #1F2A36;
  opacity: 0.96;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.22s, color 0.22s;
}
header nav a:hover, header nav a:focus {
  color: #E77C3A;
  border-bottom: 2px solid #E77C3A;
  opacity: 1;
}
header .cta-button {
  margin-left: 32px;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  border-radius: 28px;
  background: #E77C3A;
  color: #fff;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(230,92,34,0.09);
  border: none;
  gap: 6px;
  cursor: pointer;
  transition: background 0.22s, transform 0.16s, box-shadow 0.22s;
  min-width: 152px;
  text-align: center;
}
.cta-button.primary {
  background: #E77C3A;
}
.cta-button.secondary {
  background: #1F2A36;
}
.cta-button:hover, .cta-button:focus {
  background: #dd6e23;
  transform: translateY(-2px) scale(1.028);
  box-shadow: 0 4px 18px rgba(230,92,34,0.21);
}
.cta-button:active {
  transform: none;
}

/* HERO SECTION */
.hero {
  background: #F7F4EA;
  padding: 80px 0 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 660px;
  align-items: flex-start;
}
.hero p {
  font-size: 1.18rem;
  color: #44494e;
  margin-bottom: 24px;
}

/* FEATURES & ABOUT LISTS */
.features ul, .about ul, .contact ul, .legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.features li, .about li, .contact li, .legal li {
  display: flex;
  align-items: center;
  gap:12px;
  font-size: 1rem;
  color: #222;
  background: none;
}
.features img, .about img, .legal img {
  width: 26px;
  height: 26px;
  margin-right: 2px;
}

/* TEAM GRID & MEMBERS */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,50,0.08);
  padding: 28px 24px 20px 24px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.team-member img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

/* CARD & CARD CONTAINER (SERVICE CARDS, GENERIC CARDS) */
.card-container, .team-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.card, .service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(40,42,53,0.08);
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus, .service-card:hover, .service-card:focus {
  box-shadow: 0 8px 24px rgba(30,42,53,0.17);
  transform: translateY(-4px) scale(1.015);
}
.service-card .price {
  align-self: flex-end;
  font-size: 1.06rem;
  color: #E77C3A;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 0.01em;
}

/* TESTIMONIAL CARDS */
.testimonials .content-wrapper, .testimonials .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(40,42,53,0.09);
  padding: 24px 24px 20px 24px;
  min-width: 240px;
  max-width: 390px;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card p {
  color: #1F2A36;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #1F2A36;
  opacity: 0.78;
  font-style: normal;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 28px rgba(30,42,53,0.15);
  transform: translateY(-3px) scale(1.01);
}

/* LEGAL SECTIONS (FOR Datenschutz, GDPR, Cookie, Nutzungsbedingungen ETC.) */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,50,0.07);
}
.legal h1 { margin-bottom: 20px; }
.legal h2 { color: #E77C3A; font-size: 1.3rem; margin-bottom: 14px; }
.legal p, .legal li { color: #1F2A36; }
.legal ul { margin-bottom: 18px; gap: 10px; }

/* MAP PLACEHOLDER */
.map-placeholder {
  min-width: 180px;
  min-height: 120px;
  background: #F7F4EA;
  border-radius: 9px;
  box-shadow: 0 2px 9px rgba(40,42,53,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.map-placeholder img {
  width: 80px;
  height: 80px;
  opacity: 0.7;
}

/* FAQ STYLES */
.faq dl {
  width: 100%;
  max-width: 800px;
}
.faq dt {
  font-weight: 700;
  color: #E77C3A;
  background: none;
  margin-top: 26px;
  font-size: 1.08rem;
}
.faq dd {
  color: #1F2A36;
  margin-left: 12px;
  margin-bottom: 8px;
}

/* CONFIRMATION PAGE */
.confirmation .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
.confirmation ul {
  list-style: disc inside;
  padding-left: 22px;
}

/* CALL TO ACTION SECTION */
.cta {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,40,50,0.07);
  margin-bottom: 60px;
  padding: 38px 20px 38px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}

/* FOOTER */
footer {
  background: #faf9f7;
  padding: 32px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-bottom: 4px;
}
footer nav a {
  font-size: 1rem;
  color: #44494e;
  opacity: 0.8;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.22s, color 0.22s;
}
footer nav a:hover, footer nav a:focus {
  color: #E77C3A;
  border-bottom: 2px solid #E77C3A;
  opacity: 1;
}
.brand-footer span {
  color: #AAA;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* --- FLEXBOX LAYOUT PATTERNS FOR CONTENT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- MOBILE NAV/BURGER MENU --- */
.mobile-menu-toggle {
  position: fixed;
  right: 22px;
  top: 20px;
  width: 46px;
  height: 46px;
  background: #FFF;
  color: #1F2A36;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 10px rgba(40,42,53,0.08);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E77C3A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F7F4EA;
  z-index: 120;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.59,1.46,.56,1);
  box-shadow: 0 2px 32px rgba(30,42,53,0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  background: none;
  color: #1F2A36;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  z-index: 125;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E77C3A;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 40px;
  margin-left: 28px;
}
.mobile-nav a {
  font-size: 1.45rem;
  color: #1F2A36;
  padding: 10px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-color 0.22s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E77C3A;
  border-bottom: 2px solid #E77C3A;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  color: #1F2A36;
  box-shadow: 0 -2px 16px rgba(30,40,50,0.10);
  padding: 22px 18px 18px 18px;
  z-index: 9999;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.66,1.21,.48,1);
  transform: translateY(110%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 2;
  color: #1F2A36;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #E77C3A;
  color: #fff;
  transition: background 0.19s, color 0.19s, transform 0.14s;
  box-shadow: 0 2px 8px rgba(230,92,34,0.10);
}
.cookie-banner button.reject {
  background: #fff;
  color: #E77C3A;
  border: 1.2px solid #E77C3A;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #ffe8d5;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #dd6e23;
  color: #fff;
  transform: scale(1.035);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.86);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(30,42,53,0.17);
  z-index: 99999;
  min-width: 310px;
  max-width: 95vw;
  width: 370px;
  padding: 36px 26px 30px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.2s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: #E77C3A;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-top: 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #1F2A36;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"]:disabled + span {
  color: #CA9200;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 7px 20px;
  border-radius: 18px;
  background: #E77C3A;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(230,92,34,0.08);
  transition: background 0.19s, color 0.19s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #dd6e23;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  font-size: 1.5rem;
  border: none;
  color: #1F2A36;
  cursor: pointer;
  transition: color 0.17s, background 0.18s;
  border-radius: 32px;
  padding: 2px 8px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F7F4EA;
  color: #E77C3A;
}

/* --- GENERAL INTERACTIONS --- */
a, button {
  outline: none;
}
a:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2px #E77C3A33;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1070px) {
  .container { max-width: 980px; }
  .team-grid, .card-container, .content-grid, .testimonials .content-wrapper {
    gap: 16px;
  }
  .service-card, .testimonial-card, .team-member {
    max-width: 99vw;
    min-width: 220px;
    padding-left: 12px; padding-right: 12px;
  }
}
@media (max-width: 900px) {
  header nav { gap: 14px; }
  header .cta-button { margin-left: 8px; }
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle { display: flex; }
  header nav,
  header .cta-button {
    display: none!important;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    min-height: 48px;
    padding: 14px 12px;
  }
  .section, .legal, .cta {
    padding: 26px 6px 28px 6px;
    margin-bottom: 40px;
  }
  .hero {
    padding: 38px 0 32px 0;
    min-height: 180px;
  }
  .hero .container {
    padding: 0 5px;
  }
  .team-grid, .card-container, .content-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .content-wrapper, .cta .content-wrapper {
    gap: 14px;
    align-items: flex-start;
  }
  .features ul, .about ul, .contact ul, .legal ul {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .team-member {
    min-width: unset;
    max-width: 99vw;
    padding: 16px 8px 14px 8px;
  }
  .service-card, .testimonial-card, .card {
    min-width: unset;
    max-width: 99vw;
    padding: 15px 8px 15px 10px;
  }
  .cta-button {
    min-width: 95px;
    padding: 10px 16px;
    font-size: 0.98rem;
  }
  footer .brand-footer {
    text-align: center;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.02rem; }
  .hero {
    padding: 22px 0 18px;
  }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .cookie-modal { width: 97vw; min-width: 0; padding: 24px 6vw; }
  .cookie-banner { flex-direction: column; gap:12px; padding-left: 7vw; padding-right:7vw; }
}

/* ACCESSIBILITY: HIDE ELEMENTS UTILITY CLASS */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* GLOBAL UTILITIES */
.mt-2 { margin-top: 8px!important; }
.mt-3 { margin-top: 16px!important; }
.mt-4 { margin-top: 24px!important; }
.mb-2 { margin-bottom: 8px!important; }
.mb-3 { margin-bottom: 16px!important; }
.mb-4 { margin-bottom: 24px!important; }
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.testimonial-cards {
    display: flex;
    gap: 10px;
}