/* ==================================================  
   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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #FAFBFC;
  color: #1A3A5B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* =============================
   ROOT CUSTOM PROPERTIES 
============================= */
:root {
  --color-primary: #1A3A5B;
  --color-secondary: #D9E3EB;
  --color-accent: #F2B134;
  --color-bg: #FAFBFC;
  --color-error: #cb202d;
  --radius-large: 20px;
  --radius-medium: 14px;
  --radius-small: 7px;
  --shadow-card: 0 4px 24px 0 rgba(26,58,91, 0.11), 0 1.5px 3px 0 rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 36px 0 rgba(26,58,91, 0.20);
  --shadow-hover: 0 8px 24px 0 rgba(242,177,52, 0.23);
}

/* =============================
   TYPOGRAPHY
============================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900;700;400&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1, .hero h1, .bezirk-hero h1, .about-mission h1 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  margin-top: 0;
}
h3, h4 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  margin-top: 0;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.14;
}
p, .text-section p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.text-section {
  margin-bottom: 24px;
}
strong, b {
  color: var(--color-primary);
  font-weight: 700;
}

/* =============================
   LAYOUT CONTAINERS (FLEXBOX)
============================= */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow-card);
  /* Subtle artistic corner accent - optional */
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 320px;
}
.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 {
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 16px 0 rgba(26,58,91, 0.11);
  margin-bottom: 24px;
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
  padding: 22px;
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: linear-gradient(90deg, var(--color-accent) 8%, var(--color-secondary) 80%);
  box-shadow: 0 3px 24px 0 rgba(26,58,91, 0.06);
  z-index: 21;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.1em;
  transition: color 0.15s;
  padding: 4px 10px;
  border-radius: var(--radius-small);
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--color-accent);
  background: var(--color-primary);
  transition: background 0.18s, color 0.12s;
}
.main-nav img {
  height: 38px;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 7px;
}

/* =============================
   MOBILE NAVIGATION
============================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 2rem;
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 22;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(218, 227, 235, 0.97);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.82,.14,.36,1.08);
  box-shadow: -2px 1px 20px 0 rgba(26,58,91, 0.12);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 28px 12px 0;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 99;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 28px 40px 0 40px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.3rem;
  padding: 12px 4px;
  letter-spacing: 0.09em;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  border-radius: var(--radius-small);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 8px;
    font-size: 0.98em;
  }
  .main-nav img {
    height: 34px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   HERO & SECTION STYLES
============================= */
.hero, .bezirk-hero, .contact-hero, .thank-you {
  background: linear-gradient(105deg, var(--color-accent) 8%, var(--color-secondary) 96%);
  padding: 70px 0 48px 0;
  margin-bottom: 40px;
  border-bottom-right-radius: 70px 36px;
  border-bottom-left-radius: 90px 42px;
}
.hero h1, .bezirk-hero h1, .contact-hero h1, .thank-you h1 {
  color: var(--color-primary);
  text-shadow: 0 5px 24px rgba(26,58,91,0.08);
}
.hero .btn-primary,
.bezirk-hero .btn-primary,
.contact-hero .btn-primary {
  margin-top: 16px;
}
.bezirk-hero p {
  color: var(--color-primary);
  font-size: 1.18rem;
  font-style: italic;
  margin-bottom: 18px;
}

.section, .about-mission, .team, .benefits,
.services-overview, .pricing-table, .process-timeline, .cta-banner,
.privacy-policy, .gdpr-section, .cookie-policy-section, .terms-of-use {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
}
.cta-banner {
  background: linear-gradient(97deg, var(--color-accent) 36%, var(--color-secondary) 90%);
  padding: 36px 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-large);
}
.cta-banner a {
  font-size: 1.3rem;
  padding: 18px 52px;
  font-family: 'Lato', Arial, sans-serif;
}

/* =============================
   LISTS and TABLES
============================= */
ul, ol {
  margin: 0 0 24px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  position: relative;
  padding-left: 0;
  line-height: 1.8;
}
.features ul, .area-guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.features li, .area-guide li {
  background: var(--color-secondary);
  padding: 16px 20px 16px 54px;
  border-radius: var(--radius-small);
  min-width: 220px;
  font-weight: 500;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(26,58,91, 0.07);
}
.features li img, .area-guide li img {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  background: transparent;
}
.team ul, .benefits ul, .services-overview ul {
  gap: 10px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 34px;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 12px 0 rgba(26,58,91, 0.09);
  border-radius: var(--radius-medium);
  overflow: hidden;
  background: #fff;
}
thead {
  background: var(--color-primary);
  color: #fff;
}
thead th {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 14px 12px;
  letter-spacing: 0.08em;
  text-align: left;
}
tbody td {
  font-size: 1rem;
  padding: 14px 10px;
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-primary);
  vertical-align: top;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: var(--color-secondary);
  transition: background 0.14s;
}
table tr th:first-child, table tr td:first-child {
  border-top-left-radius: 11px;
}
table tr th:last-child, table tr td:last-child {
  border-top-right-radius: 11px;
}

/* =============================
   BUTTONS
============================= */
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 38px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 16px 0 rgba(26,58,91,0.07);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  min-width: 180px;
  transition: background 0.13s, color 0.12s, box-shadow 0.22s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 34px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: var(--radius-medium);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  min-width: 150px;
  box-shadow: 0 2px 12px 0 rgba(242,177,52,0.11);
  transition: background 0.15s, color 0.14s, box-shadow 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(26,58,91, 0.15);
}

/* =============================
   TESTIMONIALS & FAQ CARDS
============================= */
.testimonials {
  background: linear-gradient(85deg, var(--color-secondary) 20%, #fff 80%);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
  padding: 48px 20px;
}
.testimonial-card {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.13rem;
  border-left: 7px solid var(--color-accent);
  margin-bottom: 20px;
  padding: 24px 28px;
  box-shadow: 0 2px 16px 0 rgba(26,58,91,0.10);
  border-radius: var(--radius-medium);
  font-family: 'Lato', Arial, sans-serif;
  min-width: 0;
  max-width: 540px;
}
.testimonial-card p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.07rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #555;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-secondary);
  border-radius: var(--radius-medium);
  box-shadow: 0 2px 10px 0 rgba(26,58,91,0.10);
  padding: 24px;
  margin-bottom: 18px;
  font-size: 1.06rem;
  color: var(--color-primary);
}
.faq-item h2, .faq-item h3 {
  margin-bottom: 10px;
  color: var(--color-accent);
}
.faq-item p {
  color: var(--color-primary);
}

/* =============================
   FOOTER
============================= */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 34px 0 25px 0;
  border-top-right-radius: 50px 22px;
  border-top-left-radius: 50px 22px;
  box-shadow: 0 -3px 36px 0 rgba(26,58,91,0.10);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 4px 10px;
  transition: background 0.10s, color 0.12s;
  border-radius: var(--radius-small);
}
.footer-nav a:hover {
  color: var(--color-primary);
  background: var(--color-accent);
}

/* =============================
   DL - CONTACT PAGE INFO
============================= */
dt {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  margin-top: 12px;
  color: var(--color-accent);
}
dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* =============================
   FORM ELEMENTS (for future extendability)
============================= */
input, textarea, select {
  padding: 10px 12px;
  border-radius: var(--radius-small);
  border: 1px solid var(--color-secondary);
  background: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--color-primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(242,177,52,0.17);
  outline: none;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff7ea;
  color: var(--color-primary);
  box-shadow: 0 -4px 32px 0 rgba(242,177,52,0.12);
  justify-content: space-between;
  padding: 22px 29px;
  z-index: 110;
  font-size: 1rem;
  border-top: 2.5px solid var(--color-accent);
  transition: transform 0.32s;
}
.cookie-consent-banner.hidden {
  transform: translateY(100%);
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-accept,
.cookie-reject {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
  box-shadow: 0 2px 10px 0 rgba(26,58,91,0.09);
}
.cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}
.cookie-settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-small);
  padding: 10px 18px;
  font-weight: bold;
  font-family: 'Lato', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.11s, color 0.10s;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--color-primary);
  color: #fff;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26, 58, 91, 0.13);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 9px 38px 0 rgba(26,58,91,0.19);
  max-width: 410px;
  width: 90vw;
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 18px;
  background: none;
  color: var(--color-primary);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: var(--color-secondary);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
  margin-left: 12px;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--color-accent);
}
.cookie-toggle-thumb {
  content: '';
  display: block;
  position: absolute;
  top: 2.1px; left: 2.5px;
  width: 20px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  left: 18.5px;
}
.cookie-category[data-essential="true"] .cookie-toggle {
  background: #bbb;
  cursor: not-allowed;
}
.cookie-category[data-essential="true"] .cookie-toggle-thumb {
  background: #ddd;
}

/* =============================
   RESPONSIVENESS (Mobile-first)
============================= */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
    padding: 0 8vw;
  }
  .features ul, .area-guide ul {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding: 0 12px;
  }
  .hero, .bezirk-hero, .contact-hero, .thank-you {
    padding: 38px 0 22px 0;
  }
  .section, .about-mission, .team, .services-overview, .privacy-policy, .gdpr-section, .cookie-policy-section, .terms-of-use {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .card {
    padding: 16px 10px;
    min-width: 98vw;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .features ul, .area-guide ul {
    flex-direction: column;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 16px 10px;
    min-width: 0;
    max-width: 100vw;
    margin-bottom: 16px;
  }
  .footer-nav {
    gap: 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 20px;
    padding: 16px 8px 14px 8px;
    font-size: 0.95rem;
    align-items: flex-start;
  }
  .cta-banner, .privacy-policy, .gdpr-section, .cookie-policy-section, .terms-of-use {
    padding: 22px 6px;
  }
  table thead th, table tbody td {
    font-size: 0.97rem;
    padding: 8px 5px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.46rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    font-size: 1.6rem;
    right: 10px;
    top: 10px;
    padding: 4px 6px;
  }
  .mobile-menu-close {
    font-size: 1.2rem;
    margin: 14px 13px 6px 0;
  }
  .mobile-nav {
    padding: 22px 16px 0 16px;
    gap: 15px;
  }
  .testimonial-card {
    font-size: 0.98rem;
  }
}

/* =============================
   MISCELLANEOUS & ARTISTIC FLAIR
============================= */
.section, .hero, .cta-banner, .bezirk-hero, .team, .testimonials {
  /* Artistic colored, rough shapes in the corner for creative feel */
}
.section:before, .hero:before, .testimonials:before, .bezirk-hero:before {
  content: '';
  position: absolute;
  top: -18px;
  right: -16px;
  width: 83px;
  height: 63px;
  background: var(--color-accent);
  opacity: 0.10;
  border-radius: 18px 32px 12px 42px;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero:before { opacity: 0.22; top: -27px; right: -22px; width: 100px; height: 74px; }
.testimonials:before { left: -27px; right: unset; border-radius: 80px 12px 21px 46px; width: 65px; height: 51px; opacity: 0.15; }
.bezirk-hero:before { opacity: 0.15; }

/* Neumorphic-like shadow for major containers */
.section, .hero, .testimonials, .cta-banner {
  box-shadow: var(--shadow-card);
}

/***** Artistic font headings (using Lato bold, some uppercase for visual interest) *****/
h1, h2 {
  text-transform: none;
  letter-spacing: -0.2px;
  font-family: 'Lato', Arial, sans-serif;
}
.cta-banner a {
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Spacing consistency for all cards, sections, wrappers */
.card, .testimonial-card, .faq-item, .feature-item {
  margin-bottom: 20px;
}
.section, .feature-item, .card-container, .content-grid, .text-image-section, .testimonial-card {
  gap: 20px;
}

/* Buttons micro-interactions */
.btn-primary, .btn-secondary, .cookie-accept, .cookie-reject, .cookie-settings {
  transition: background 0.13s, color 0.12s, box-shadow 0.11s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active,
.cookie-accept:active, .cookie-reject:active, .cookie-settings:active {
  transform: translateY(2px) scale(0.98);
}

/***** Card hover pop & highlight *****/
.card:hover, .testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  background: var(--color-secondary);
  transition: box-shadow 0.11s, background 0.13s;
}

/* =========================
   SPECIAL: Loader shimmer (for extra FLAIR)
========================= */
.loading-shimmer {
  background: linear-gradient(90deg,#e2e4e6 25%,#edeef0 50%,#e2e4e6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* =========================
   ACCESSIBILITY
========================= */
:focus {
  outline: 2.5px dashed var(--color-accent);
  outline-offset: 0; /* Avoid rounding clash */
}
[tabindex="0"]:focus {
  box-shadow: 0 0 0 2.5px var(--color-accent);
}

/* =============================
   END OF STYLE SHEET
============================= */
