/* =============================================================
   CSS RESET & BASE NORMALIZATION
   ============================================================= */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
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 {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height:100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF8F4;
  color: #2D2A26;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.03em;
}
img {
  max-width:100%;
  height:auto;
  display:block;
}
a {
  color: #D16900;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EF7E1A;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}


/* =============================================================
   BRAND FONTS   (Montserrat Display, Roboto Body)
   ============================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1A3755;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

p, ul, ol, li, table, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: 700; color:#D16900; }


/* =============================================================
   LAYOUT CONTAINERS & SPACING
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Card container, Card, Grid, Section: FLEXBOX! */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 28px 0 rgba(196,143,76,0.08), 0 1.5px 0px 0px #F7D1B3;
  padding: 32px 24px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(228, 125, 59, 0.18), 0 3px 0px 0px #EF7E1A;
  transform: translateY(-4px) scale(1.02);
}

.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;
}

.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
}
.feature-grid li, .service-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(196,143,76,0.09);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-grid li:hover, .service-grid li:hover {
  box-shadow: 0 8px 36px 0 rgba(228, 125, 59, 0.16);
  transform: translateY(-4px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* For structured lists (benefits, process, legal) */
.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}
.step-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(196,143,76,0.10);
  padding: 20px 18px 16px;
  min-width: 180px;
  flex: 1 1 180px;
  align-items: center;
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: #1A3755;
}


/* =============================================================
   HEADER & MAIN NAV
   ============================================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 22px 0 rgba(219,162,99,0.06);
  padding: 0;
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 10px 20px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #1A3755;
  font-size: 1rem;
  padding: 12px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.2;
  text-align: center;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5E9EC;
  color: #D16900;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 14px;
}

.cta-main {
  margin-left: 8px;
  background: #D16900;
  color: #fff !important;
  border-radius: 32px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight:700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px 0 rgba(209,105,0,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
}
.cta-main:hover, .cta-main:focus {
  background: #EF7E1A;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(239,126,26,0.14);
}

.cta-secondary {
  background: #fff;
  color: #D16900;
  border: 2px solid #D16900;
  border-radius: 32px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #D16900;
  color: #fff;
}

/* Mobile Menu (Burger) & Overlay */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
  background: #D16900;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1.8rem;
  z-index: 1200;
  box-shadow: 0 1px 5px 0 rgba(209,105,0,0.10);
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #EF7E1A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 248, 244, 0.97);
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #fff;
  color: #D16900;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2010;
  box-shadow: 0 2px 8px 0 rgba(209,105,0,0.14);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #EF7E1A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 70px;
  margin-left: 28px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #1A3755;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 10px 12px 4px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5E9EC;
  color: #D16900;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 880px) {
  .main-nav a:not(:first-child):not(.cta-main) {
    display: none;
  }
  .main-nav .cta-main {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}


/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  background: linear-gradient(120deg, #FFF8F4 70%, #F9E2D3 100%);
}
.hero .container {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px; padding-bottom: 36px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  color: #D16900;
  line-height: 1.15;
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.14rem;
  max-width: 540px;
}


/* =============================================================
   TESTIMONIALS & REVIEW CARDS
   ============================================================= */
.testimonials {
  background: #FFF;
  padding-top: 30px; padding-bottom: 38px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  background: #FFF8F4;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(209,105,0,0.12);
  padding: 24px 26px 22px 26px;
  color: #1A3755;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(239,126,26,0.12);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.10rem;
  margin-bottom: 8px;
  color: #1A3755;
}
.testimonial-card span {
  display: block;
  font-size: 1rem;
  color: #D16900;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  display: flex;
  gap: 1px;
}
.star-rating img {
  width: 22px;
  height: auto;
  display: inline-block;
}

/* Distinctive testimonials (from .references.html) */
@media (min-width: 769px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }
  .testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    min-width: 280px;
  }
}

/* =============================================================
   ABOUT/LEGAL/SECTION-TEXT CONTENT
   ============================================================= */
.text-section, .text-image-section {
  font-size: 1.07rem;
  line-height: 1.78;
  color: #2D2A26;
}
.text-section {
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
  margin-top: 4px;
  padding-left: 1.3em;
}
.legal h1, .legal h2 {
  color: #D16900;
}
.legal .text-section {
  background: #FFF;
  border-radius: 16px;
  padding: 22px 24px 18px 24px;
  box-shadow: 0 1px 6px #F3DFD0;
  margin-bottom: 28px;
}

/* =============================================================
   FAQ STYLING (Preise)
   ============================================================= */
.faq ul {
  list-style: none;
  padding: 0;
}
.faq ul li {
  background: #FFF8F4;
  border-radius: 14px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px #F6E3D8;
}


/* =============================================================
   CONTACT & MAP SECTION
   ============================================================= */
.contact-info-list,.contact-details-list {
  list-style: none;
  gap: 12px;
  display: flex;
  flex-direction: column;
  margin: 0 0 16px 0;
  padding: 0;
}
.contact-info-list li,.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  color: #1A3755;
}
.contact-info-list a, .contact-details-list a {
  color:#D16900;
  font-weight:500;
}
.map-snippet {
  width:100%;
  padding: 18px 12px;
  border-radius: 12px;
  background: #E5E9EC;
  color: #1A3755;
  margin-top: 10px;
  text-align: center;
}


/* =============================================================
   TABLE STYLING (Preise)
   ============================================================= */
table {
  width:100%;
  border-collapse: separate;
  border-spacing:0;
  margin-bottom: 28px;
  background: #fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 2px 18px 0 rgba(228, 125, 59, 0.07);
}
thead tr {
  background: #D16900;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight:700;
}
td, th {
  padding: 16px 12px;
  text-align:left;
  font-size: 1rem;
}
tbody tr {
  border-bottom: 1px solid #F3DDC7;
  background: #FFF8F4;
  color: #2D2A26;
}
tbody tr:last-child { border-bottom:none; }
tbody td {
  font-family: 'Roboto', Arial, sans-serif;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  width: 100%;
  background: #1A3755;
  color: #fff;
  padding: 34px 0 18px 0;
  margin-top: 38px;
  margin-bottom:0;
}
footer .container {
  padding: 0 20px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrapper > a img {
  height: 44px; width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #FFDDBD;
  font-size: 1rem;
  text-decoration:none;
  padding: 6px 0;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #EF7E1A;
}
.footer-contact {
  font-size: 0.98rem;
  color: #FFE0C2;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
}


/* =============================================================
   COOKIE CONSENT BANNER/BUTTONS/STATES & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom:0; left:0; width:100vw;
  background: #fff;
  color: #1A3755;
  box-shadow: 0 -2px 16px rgba(228, 125, 59, 0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 22px 20px 22px;
  z-index: 5000;
  border-radius: 0 0 18px 18px;
  animation: cookiefadein 0.5s;
}
@keyframes cookiefadein {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-size: 1.03rem;
  margin-right: 18px;
  flex: 1;
}
.cookie-banner .cookie-btn {
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight:600;
  margin-left: 8px;
  cursor:pointer;
  border:none;
  outline:none;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .accept {
  background: #D16900;
  color: #fff;
  box-shadow: 0 1.5px 8px #E5CCC1;
}
.cookie-banner .accept:hover {
  background: #EF7E1A;
}
.cookie-banner .reject {
  background: #E5E9EC;
  color: #1A3755;
}
.cookie-banner .reject:hover {
  background: #FFD5AC;
  color: #D16900;
}
.cookie-banner .settings {
  background: none;
  color: #1A3755;
  text-decoration: underline;
  font-weight: 500;
  margin-right: 4px;
}
.cookie-banner .settings:hover { color: #EF7E1A; }

.cookie-modal {
  position:fixed; left: 50%; top:50%;
  transform: translate(-50%, -50%) scale(0.93);
  background:#fff;
  z-index:6000;
  border-radius:20px;
  box-shadow: 0 8px 48px 0 rgba(209,105,0,0.16);
  padding:38px 38px 32px 32px;
  min-width: 320px;
  max-width: 96vw;
  display:flex; flex-direction:column;
  gap:22px;
  opacity:0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  margin-bottom:6px; color: #1A3755;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 14px;
}
.cookie-modal .category label {
  font-size: 1.06rem;
  color: #1A3755;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}
.cookie-modal .switch input {
  opacity: 0; width:0; height:0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E5E9EC;
  border-radius: 16px;
  transition: background 0.22s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: #D16900;
}
.cookie-modal .slider:before {
  position: absolute; content: "";
  height: 18px; width: 18px;
  left: 4px; bottom: 4px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px #E5CCC1;
  transition: transform 0.23s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .buttons {
  margin-top:10px;
  display:flex; gap:10px;
  flex-wrap:wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width:110px;
}
.cookie-modal .close-btn {
  position: absolute; top:10px; right:14px;
  background: none; border:none; color:#D16900; font-size:1.7rem;
  cursor:pointer; border-radius:50%; padding: 2px 6px 2px 8px;
}
.cookie-modal .close-btn:hover { background: #FFE3C7; }


/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 1080px) {
  .feature-grid li, .service-grid li, .step-list li, .card {
    min-width: 170px;
    flex: 1 1 170px;
  }
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .section, .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .service-grid, .step-list {
    gap: 14px;
  }
  .footer-contact { font-size: 0.93rem; }
  .card, .feature-grid li, .service-grid li {
    padding: 22px 12px 18px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 38px;
  }
  .hero .container {
    min-height: 200px;
    padding-top: 18px; padding-bottom: 22px;
  }
  .testimonials .content-wrapper {
    flex-direction: column !important;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}
@media (max-width:600px) {
  h1 { font-size:1.6rem; }
  h2 { font-size:1.23rem; }
  .card, .feature-grid li, .service-grid li, .testimonial-card {
    min-width: 120px;
    padding: 18px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 14px 8px 12px 8px;
  }
  .cookie-banner .cookie-btn { width: 100%; margin: 4px 0 0 0;}
  .hero h1 { font-size:1.18rem; }
}

/* Hide default scroll on mobile menu under iOS/Android */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
}

/* Utility: hide visually, accessible only to screen-readers */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ===================
   ANIMATIONS/MICRO-INTERACTIONS
   =================== */
button, .cta-main, .cta-secondary, .cookie-btn {
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.15s, color 0.16s, transform 0.13s;
}
button:active, .cta-main:active, .cta-secondary:active {
  transform: scale(0.96);
}
.card, .feature-grid li, .service-grid li, .testimonial-card {
  transition: box-shadow 0.14s, transform 0.12s;
}

/* Scrollbar styling for warm/friendly (for desktop): */
::-webkit-scrollbar {
  width: 8px;
  background: #F6ECE2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #FFE0C4;
  border-radius: 8px;
}

/* ================
   END OF CSS
   ================