/* =====================================================================
   CSS Reset & Normalize (Mobile-first, compatible, no grid or columns)
   ===================================================================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #2A4257;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2A4257;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 0.5em; }
h3 { font-size: 1.25rem; margin-bottom: 0.5em; }

/* Typography luxury premium scale */
p, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #2A4257;
}
strong { font-weight: bold; }

/* -----------------------------------------
   Brand Color Variables & Fallbacks
   ----------------------------------------- */
:root {
  --primary-color: #2A4257;
  --secondary-color: #FFFFFF;
  --surface-color: #E7E9EB;
  --accent-color: #B36616;
  --gold: #B36616;
  --gold-light: #EDC987;
  --grey-bg: #F7F7F8;
  --border-color: #E1E3EA;
  --box-shadow: rgba(42,66,87,0.07) 0 6px 36px 0;
}

/* -----------------------------------------
   Layout Containers & Spacing (Flexbox only)
   ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary-color);
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 60px 0 60px 0;
    margin-bottom: 80px;
  }
}

/* -----------------------------------------
   Main Navigation (Desktop & Mobile layout)
   ----------------------------------------- */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 16px rgba(42,66,87,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
  padding: 0 20px;
}
.main-nav > a img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  padding: 8px 4px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav ul a:hover, .main-nav ul a:focus {
  background: var(--surface-color);
  color: var(--accent-color);
}
.btn-primary {
  background: linear-gradient(90deg, var(--gold) 90%, var(--gold-light) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  margin-left: 10px;
  transition: box-shadow 0.23s, background 0.23s, transform 0.13s;
  box-shadow: 0 2px 16px rgba(179,102,22,0.11);
  cursor: pointer;
  outline: none;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-light);
  color: var(--primary-color);
  box-shadow: 0 5px 24px 0 rgba(179,102,22,0.16);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: var(--surface-color);
  color: var(--primary-color);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gold);
  border-radius: 30px;
  padding: 12px 32px;
  margin-top: 24px;
  transition: background 0.18s, color 0.18s, border 0.18s;
  box-shadow: 0 1px 12px rgba(42,66,87,0.06);
  cursor: pointer;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold-light);
}

/* Hide nav on mobile, show burger */
.mobile-menu-toggle {
  display: flex;
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  z-index: 101;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--gold-light);
  color: var(--primary-color);
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Burger opens mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(42, 66, 87, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(0.5,1,0.89,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2.2rem;
  margin: 24px 0 0 20px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  margin-left: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  padding: 14px;
  border-radius: 6px;
  width: fit-content;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold-light);
  color: var(--primary-color);
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 899px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
}

/* -----------------------------------------
   Section: Hero
   ----------------------------------------- */
.hero {
  background: var(--primary-color);
  color: #fff;
  position: relative;
  padding: 48px 0 32px 0;
}
.hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero p {
  color: #fff;
  margin-bottom: 36px;
  font-size: 1.15rem;
  max-width: 620px;
}
.hero .btn-primary {
  margin-top: 10px;
  font-size: 1.1rem;
}
@media (min-width: 900px) {
  .hero {
    padding: 94px 0 64px 0;
  }
  .hero h1 { font-size: 2.75rem; }
  .hero p { font-size: 1.25rem; }
}

/* -----------------------------------------
   Section: Features
   ----------------------------------------- */
.features {
  background: var(--grey-bg);
}
.features .content-wrapper {
  gap: 18px;
}
.features h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 18px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  padding-left: 6px;
  color: var(--primary-color);
  border-left: 3px solid var(--gold);
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 16px rgba(42,66,87,0.04);
  min-height: 48px;
  padding: 10px 16px;
}
.features ul li img {
  width: 30px;
  height: 30px;
}
@media (min-width: 700px) {
  .features ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  .features ul li {
    min-width: 290px;
    flex: 1 1 33%;
    max-width: 450px;
  }
}
.features .badges {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: 0 2px 18px rgba(42,66,87,0.08);
  border-left: 4px solid var(--gold);
  font-size: 1rem;
}
.badge img {
  width: 28px; height: 28px;
}
@media (max-width: 540px) {
  .features ul li {
    flex-direction: column;
    gap: 8px;
  }
}

/* -----------------------------------------
   Section Cards & Service Cards
   ----------------------------------------- */
.service-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 38px 0;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 40px 0 rgba(42,66,87,0.13);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 20px 20px 20px;
  min-width: 0;
  min-height: 170px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.18s, transform 0.12s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 32px rgba(179,102,22,0.19), 0 2px 28px rgba(42,66,87,0.13);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.012);
  z-index: 3;
}
.service-card h3 {
  font-size: 1.08rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 3px;
  letter-spacing: 0.03em;
}
@media (min-width: 700px) {
  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
  }
  .service-card {
    flex: 1 1 285px;
    max-width: 360px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(42,66,87,0.09);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  transition: box-shadow 0.16s, border 0.13s;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(179,102,22,0.10);
  z-index: 2;
}

/* -----------------------------------------
   Testimonials
   ----------------------------------------- */
.testimonials {
  background: var(--surface-color);
  padding-bottom: 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  color: var(--primary-color);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 26px rgba(42,66,87,0.15);
  margin-bottom: 20px;
  border-left: 6px solid var(--gold);
  transition: border 0.18s, box-shadow 0.15s;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 29px rgba(179,102,22,0.14);
  border-left-color: var(--gold-light);
}
.testimonial-card blockquote {
  font-size: 1.06rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--primary-color);
  font-style: italic;
}
@media (min-width: 700px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .testimonial-card {
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 300px;
    margin-right: 18px;
  }
}

/* -----------------------------------------
   Contact & Info Blocks
   ----------------------------------------- */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.address, .email, .hours {
  font-size: 1.05rem;
  color: var(--primary-color);
  background: var(--grey-bg);
  border-radius: 10px;
  padding: 13px 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 2px 12px rgba(42,66,87,0.05);
  border-left: 4px solid var(--gold);
}
.contact-info-block a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.17s;
}
.contact-info-block a:hover {
  color: var(--gold-light);
}
@media (min-width: 600px) {
  .contact-info-block {
    flex-direction: row;
    gap: 30px;
  }
  .address, .email, .hours { min-width: 235px; }
}

/* -----------------------------------------
   Legal/Confirmation/Text-section & CTA
   ----------------------------------------- */
.legal, .confirmation, .text-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 32px rgba(42,66,87,0.10);
  border: 1px solid var(--border-color);
  padding: 34px 20px 28px 20px;
  margin-bottom: 24px;
}
.legal h1, .confirmation h1, .text-section h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.legal h2, .confirmation h2, .text-section h2 {
  color: var(--primary-color);
  font-size: 1.22rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal ul, .confirmation ul,
.text-section ul {
  margin: 12px 0 0 14px;
  list-style-type: disc;
}
.legal li, .confirmation li, .text-section li {
  margin-bottom: 7px;
}

.cta {
  background: linear-gradient(to right, var(--primary-color), #3a556f);
  color: #fff;
  border-radius: 17px;
  text-align: center;
  padding: 48px 20px;
  margin: 22px 0;
  box-shadow: 0 3px 26px rgba(42,66,87,0.10);
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
}
.cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 24px;
}

.cta-telefon .hours {
  background: var(--grey-bg);
  color: var(--primary-color);
  border-radius: 8px;
  margin-top: 12px;
  padding: 10px 14px;
}

/* -----------------------------------------
   Stepper Timeline (Ablauf Steps)
   ----------------------------------------- */
.steps .content-wrapper {
  gap: 24px;
}
.stepper-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
  counter-reset: stepnr;
}
.stepper-timeline li {
  background: #fff;
  border-radius: 11px;
  border-left: 5px solid var(--gold);
  padding: 24px 18px 16px 22px;
  box-shadow: 0 2px 20px rgba(42,66,87,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  min-height: 70px;
}
.stepper-timeline li img {
  position: absolute;
  left: -32px; top: 20px;
  width: 32px; height: 32px;
}
.stepper-timeline li span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 7px;
  font-size: 1.12rem;
}
@media (min-width: 700px) {
  .stepper-timeline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 26px;
  }
  .stepper-timeline li {
    flex: 1 1 280px;
    max-width: 380px;
    min-width: 200px;
  }
  .stepper-timeline li img {
    left: 18px; top: 20px;
    position: static;
    margin-bottom: 10px;
  }
}

/* -----------------------------------------
   FAQ Accordion
   ----------------------------------------- */
.faq {
  background: var(--grey-bg);
  border-radius: 14px;
  padding: 40px 16px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(42,66,87,0.09);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow 0.13s, border 0.13s, background 0.24s;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.08rem;
  color: var(--primary-color);
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--surface-color);
  margin: 0;
  padding: 18px 24px 16px 24px;
  transition: background 0.15s;
}
.faq-item h3:hover, .faq-item h3:focus {
  background: var(--gold-light);
}
.faq-answer {
  padding: 14px 28px 18px 28px;
  font-size: 1rem;
  display: none;
  animation: fadeIn 0.4s;
}
.faq-item.open .faq-answer {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* -----------------------------------------
   Pricing Table (Services)
   ----------------------------------------- */
.service-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 12px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(42,66,87,0.09);
}
.service-pricing-table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  padding: 17px 0 14px 0;
  font-size: 1.1rem;
}
.service-pricing-table th, .service-pricing-table td {
  padding: 15px 18px;
  text-align: left;
  font-size: 1rem;
}
.service-pricing-table th {
  background: var(--surface-color);
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
  color: var(--primary-color);
}
.service-pricing-table td {
  border-bottom: 1px solid #f3f3f3;
  color: var(--primary-color);
}
.service-pricing-table tr:last-of-type td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .service-pricing-table td, .service-pricing-table th {
    padding: 10px 8px;
  }
}

/* -----------------------------------------
   Footer Styles
   ----------------------------------------- */
footer {
  background: var(--primary-color);
  color: #fff;
  padding: 32px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
  color: #fff;
}
.footer-menu a {
  font-size: 1rem;
  color: #fff;
  opacity: 0.92;
  transition: color 0.17s, opacity 0.13s;
}
.footer-menu a:hover {
  color: var(--gold-light);
  opacity: 1;
}
.legal-notice {
  text-align: center;
  color: #dfdfdf;
  font-size: 0.95em;
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-links a {
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
  padding: 9px;
  font-size: 1.22rem;
  transition: background 0.16s, color 0.16s;
}
.social-links a:hover { background: var(--gold-light); color: var(--primary-color); }

/* -----------------------------------------
   Cookie Consent Banner
   ----------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(42,66,87,0.965);
  color: #fff;
  padding: 22px 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 -2px 20px rgba(42,66,87,0.11);
  z-index: 3000;
  border-top: 3px solid var(--gold);
  animation: slideup-cookie 0.7s;
}
@keyframes slideup-cookie {
  from {transform: translateY(110px); opacity: 0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner h5 {
  color: var(--gold-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 4px;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  border: 0;
  padding: 10px 30px;
  margin-top: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 13px 0 rgba(179,102,22,0.11);
}
.cookie-btn-accept:hover { background: var(--gold-light); color: var(--primary-color); }
.cookie-btn-reject {
  background: #fff;
  color: var(--primary-color);
  border: 1.5px solid var(--gold);
}
.cookie-btn-reject:hover { background: var(--surface-color); color: var(--gold); }
.cookie-btn-settings {
  background: none;
  color: var(--gold-light);
  border: 0;
  text-decoration: underline;
  padding: 0 14px;
}
.cookie-btn-settings:hover { color: var(--gold);}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(42,66,87,0.60);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.46s;
}
.cookie-modal {
  background: #fff;
  color: var(--primary-color);
  border-radius: 18px;
  max-width: 410px;
  width: 95%;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 5px 38px rgba(42,66,87,0.17);
  position: relative;
  text-align: left;
  animation: modalpop 0.48s;
}
@keyframes modalpop {
  from { transform: scale(0.89); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface-color);
  padding: 12px 10px;
  border-radius: 7px;
  margin-bottom: 13px;
}
.cookie-modal .category label {
  font-size: 1.03rem;
  color: var(--primary-color);
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 25px;
  height: 25px;
  border-radius: 6px;
}
.cookie-modal .category input[disabled] {
  filter: grayscale(1.0);
  opacity: 0.7;
}
.cookie-close-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  position: absolute;
  top: 15px; right: 16px;
  cursor: pointer;
  z-index: 4000;
  transition: color 0.13s;
}
.cookie-close-btn:hover { color: var(--primary-color); }
.cookie-modal .cookie-actions {
  gap: 16px;
  margin-top: 22px;
}

/* -----------------------------------------
   Responsive Flex Patterns & Mobile Adapt
   ----------------------------------------- */
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
}

/* -----------------------------------------
   Micro Interactions & Transitions
   ----------------------------------------- */
*:focus {
  outline: 2.5px solid var(--gold-light);
  outline-offset: 1.5px;
}
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
button:focus {
  outline: 2px solid var(--gold-light);
}

/* -----------------------------------------
   Utility: Hide/Show
   ----------------------------------------- */
.d-none {
  display: none !important;
}

/* -----------------------------------------
   Print Styles
   ----------------------------------------- */
@media print {
  header, footer, .btn-primary, .btn-secondary, .cookie-banner, .mobile-menu { display: none !important; }
}

/* -----------------------------------------
   Fontface Fallback (hosted on Google Fonts)
   ----------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,800|Open+Sans:400,700&display=swap');

/*
  End Luxury_Premium CSS for DischCasse Autoexperten
*/
