/* 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, 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;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  min-height: 100vh;
  background: #F9F7F2;
  color: #23395D;
  font-family: 'Roboto', serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}
li {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.1rem; letter-spacing: 0.5px; }

strong { font-weight: 700; }
a { color: #23395D; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F2B705; text-decoration: underline; outline: none; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 16px 16px 0;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #23395D;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f2eddf;
  color: #F2B705;
}
.cta-btn.primary {
  background: #23395D;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 11px 28px;
  margin-left: 12px;
  box-shadow: 0 3px 18px rgba(35,57,93,0.05);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  letter-spacing: 1px;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #F2B705;
  color: #23395D;
  box-shadow: 0 6px 28px rgba(242,183,5,0.12);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #23395D;
  font-size: 2.1rem;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f2eddf;
  outline: none;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EFEBE4;
  z-index: 105;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.79,-0.07,.31,1.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #23395D;
  padding: 7px 12px;
  cursor: pointer;
  border-radius: 50%;
  margin-bottom: 24px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #f2eddf;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #23395D;
  font-family: 'Montserrat', serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B705;
  color: #fff;
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .cta-btn.primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none!important; }
}

/* === SECTIONS & LAYOUTS === */
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35,57,93,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* CARDS & FLEXBOX GRIDS */
.card-container, .feature-grid, .area-cards, .problem-solution-grid, .testimonial-cards, .timeline, .resource-list, .faq-accordion, .area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 32px;
  margin-top: 10px;
}
.area-cards, .area-list {
  gap: 32px;
}
.card, .feature-item, .area-card, .area-block, .problem-item {
  background: #FCFAF5;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35,57,93,0.04);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-item img, .area-card img, .area-block img, .problem-item img {
  max-width: 52px;
  margin-bottom: 6px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-slider, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #FFFFFF;
  border-left: 5px solid #F2B705;
  border-radius: 12px;
  box-shadow: 0 1px 11px rgba(35,57,93,0.04);
  min-width: 225px;
  max-width: 375px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #1a2233;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #1a2233;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card span {
  color: #444;
  font-size: 0.97rem;
  font-family: 'Montserrat', serif;
}

/* Steps List, Timeline, Tips */
.steps-list, .tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.steps-list li, .tips-list li, .resource-list li {
  font-size: 1rem;
  padding-left: 6px;
  margin-bottom: 6px;
  color: #23395D;
}
.timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1.04rem;
  color: #F2B705;
  font-family: 'Montserrat', serif;
  letter-spacing: 1px;
}

.problem-solution-grid {
  gap: 32px;
  margin-top: 10px;
}
.problem-item h3 {
  color: #bc9730;
}

/* FOOTER */
footer {
  background: #23395D;
  color: #fff;
  padding: 48px 0 0 0;
  border-top: 5px solid #F2B705;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  padding: 5px 0;
  text-decoration: none;
  opacity: 0.95;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2B705;
  opacity: 1;
}
.contact-info {
  font-size: 0.97rem;
  color: #fbe7ad;
  font-family: 'Roboto', serif;
  line-height: 1.7;
}
.contact-info img {
  margin-bottom: 9px;
  vertical-align: middle;
  display: inline-block;
  height: 22px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100%;
  height: 34px;
  width: 34px;
  transition: background 0.22s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(35,57,93,.19);
}
.social-links a:hover, .social-links a:focus {
  background: #F2B705;
}

.legal-links {
  flex-basis: 100%;
  margin-top: 26px;
  text-align: center;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.7;
}

/* AREA CARDS, BLOCKS */
.area-cards, .area-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.area-card, .area-block {
  flex: 1 1 215px;
  max-width: 320px;
  background: #FCFAF5;
  box-shadow: 0 2px 8px rgba(35,57,93,0.06);
  border-radius: 14px;
  padding: 22px 16px;
}

.map-snippet {
  background: #FEF8E7;
  color: #23395D;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: 'Roboto', serif;
  font-size: 1.04rem;
  font-style: italic;
  margin: 20px 0 0 0;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.client-logos img {
  height: 38px;
  width: auto;
}

/* FAQ & ACCORDIONS */
.faq-accordion, .faq-item, .faq-shortlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f5f0e5;
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(35,57,93,0.03);
}
.faq-item h3 {
  color: #23395D;
  font-size: 1.1rem;
  font-weight: 600;
}
.faq-item p {
  color: #1a2233;
  font-size: 0.97rem;
  margin-top: 6px;
}
.faq-snippets dl {
  margin-bottom: 0;
}
.faq-snippets dt {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: 14px;
}
.faq-snippets dd {
  font-size: 1rem;
  margin-left: 0;
  margin-bottom: 8px;
}

/* LISTS, HIGHLIGHTS */
ul.resource-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
ul.resource-list li a {
  color: #23395D;
  background: #f5f0e5;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 7px rgba(35,57,93,0.04);
  transition: background 0.17s, color 0.17s;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
}
ul.resource-list li a:hover, ul.resource-list li a:focus {
  background: #F2B705;
  color: #fff;
}

.download-section {
  background: #f6f7fa;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 1.02rem;
}

/* CONTACT PAGE */
.address-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FCFAF5;
  padding: 18px 20px;
  border-radius: 10px;
  margin: 0 0 14px 0;
}
.phone-email-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-prompt {
  margin-top: 24px;
  gap: 12px;
}

/* EXPERIENCE HIGHLIGHTS (Über Uns) */
.experience-highlights dt {
  color: #23395D;
  font-weight: bold;
  margin-top: 12px;
}
.experience-highlights dd {
  color: #444;
  margin-left: 0;
  margin-bottom: 6px;
}

.team-intro ul {
  padding-left: 22px;
  margin-bottom: 0;
}

/* Z-INDEX LAYER FOR MOBILE MENU, COOKIE MODAL */
body.menu-open {
  overflow: hidden;
  position: relative;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 200;
  background: #fffbe8;
  color: #23395D;
  box-shadow: 0 -2px 14px rgba(35,57,93,0.09);
  border-top: 2.5px solid #F2B705;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 15px 18px 15px;
  gap: 32px;
  transition: transform 0.33s cubic-bezier(.79,-0.07,.31,1.15);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  font-family: 'Roboto', serif;
  color: #23395D;
  margin-right: 24px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cookie-btn {
  border: none;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 22px;
  box-shadow: 0 2px 9px rgba(35,57,93,0.04);
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #23395D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F2B705;
  color: #23395D;
}
.cookie-btn.reject {
  background: #f6f7fa;
  color: #23395D;
  border: 1px solid #D7D7D7;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #faf7ee;
  color: #F2B705;
  border-color: #F2B705;
}
.cookie-btn.settings {
  background: #F2B705;
  color: #1a2233;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23395D;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 300;
  background: rgba(55,47,20,0.30);
  align-items: center;
  justify-content: center;
  animation: fadeInCookieOverlay 0.22s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeInCookieOverlay {
  0% { opacity: 0.01; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 32px rgba(35,57,93,0.16);
  padding: 38px 28px 28px 28px;
  min-width: 300px;
  max-width: 99vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateY(-32px);
  animation: popInCookieModal 0.33s;
}
@keyframes popInCookieModal {
  0% { opacity: 0.01; transform: translateY(38px) scale(0.93); }
  100% { opacity: 1; transform: translateY(-32px) scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #23395D;
  cursor: pointer;
  position: absolute;
  top: 18px; right: 24px;
  border-radius: 50%;
  padding: 6px 10px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f2eddf;
  outline: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-switch {
  width: 44px;
  height: 26px;
  background: #ececec;
  border-radius: 13px;
  position: relative;
  margin-right: 8px;
  transition: background 0.17s;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  margin: 0;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #F2B705;
  transition: transform 0.17s, background 0.17s;
}
.cookie-switch input:checked ~ .slider {
  transform: translateX(18px);
  background: #23395D;
}
.cookie-category.essential .cookie-switch {
  background: #23395D;
}
.cookie-category.essential .slider {
  background: #1a2233;
}
.cookie-category.essential input:checked ~ .slider {
  background: #1a2233;
}

/* === BUTTONS === */
button {
  font-family: inherit;
  font-size: inherit;
}
button:focus {
  outline: 2px solid #F2B705;
}

/* === ANIMATIONS === */
.cta-btn, .cookie-btn {
  transition: background 0.22s, box-shadow 0.18s, color 0.18s, border 0.16s;
}
section, .card, .area-card, .feature-item, .testimonial-card {
  transition: box-shadow 0.20s, background 0.21s;
}
.card:hover, .feature-item:hover, .area-card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(242,183,5,0.07);
  background: #f6f7fa;
}

/* === MEDIA QUERIES RESPONSIVE === */
@media (max-width: 1023px) {
  section {
    margin-bottom: 40px;
    padding: 26px 8px;
  }
  .footer-nav, .contact-info, .legal-links {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .container {
    padding: 0 7px;
  }
  .main-nav { display: none; }
  .cta-btn.primary { display: none; }
}
@media (max-width: 900px) {
  .area-cards, .area-list, .feature-grid, .problem-solution-grid, .testimonial-cards {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    max-width: 98vw;
    padding: 0 5vw;
  }
  .main-nav { display: none !important; }
  section, .card, .area-card, .testimonial-card {
    margin-bottom: 32px;
    padding: 16px 4vw;
  }
  .content-wrapper {
    padding: 0;
  }
  .footer-nav, .contact-info, .legal-links {
    font-size: 0.98rem;
  }
  .area-cards, .area-list, .feature-grid, .testimonial-cards, .problem-solution-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card, .feature-item, .area-card, .area-block, .problem-item {
    padding: 16px 9px;
  }
  .testimonial-card {
    padding: 12px 11px;
    min-width: unset;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .steps-list, .tips-list {
    gap: 8px;
  }
  .footer-nav, .social-links, .contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 7px 8px 7px;
  }
}
@media (max-width: 600px) {
  .logo img { height: 36px; }
  .card, .feature-item, .area-card, .area-block, .problem-item {
    padding: 10px 7px;
  }
  .footer-nav, .contact-info, .legal-links {
    font-size: 0.92rem;
  }
  .cookie-modal {
    padding: 20px 7px 17px 7px;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  section, .content-wrapper {
    padding: 8px 1vw;
  }
  h1 { font-size: 1.38rem; }
  .footer-nav, .contact-info, .legal-links {
    font-size: 0.89rem;
  }
}

/* === UTILITY & OVERRIDES === */
[hidden] {
  display: none !important;
}
::-webkit-scrollbar { width: 8px; background: #F7F5EF; }
::-webkit-scrollbar-thumb { background: #e6e3d8; border-radius: 6px; }

/* === END === */
