/* RESET & BASE ---------------------------------------------------- */
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;
}
body {
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #23395d;
  background: #fff;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}



:root {
  --primary: #23395d;
  --secondary: #e7e7e7;
  --accent: #f1b434;
  --success: #20994d;
  --error: #ce1515;
  --neutral: #fff;
  --radius-card: 16px;
  --shadow-card: 0 2px 12px 0 rgba(47,61,92,0.08);
}

/* TYPOGRAPHY ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Source+Sans+Pro:400,600,700&display=swap');
h1, .display {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.2;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
body, p {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #23395d;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.subheadline {
  color: var(--primary);
  font-size: 1.1rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  opacity: 0.85;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}

/* LAYOUT STRUCTURE ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--neutral);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  border-radius: 14px;
  background: #f7f7fa;
  box-shadow: 0 3px 16px 0 rgba(35,57,93,0.08);
  color: #23395d;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
  border-left: 5px solid var(--accent);
  min-width: 0;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.05rem;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #23395d;
}
.feature-list, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-list li {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 270px;
  background: var(--secondary);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 12px;
  border-top: 4px solid var(--accent);
}
.feature-list img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section:last-child {
  margin-bottom: 0;
}
.text-section {
  font-size: 1.13rem;
  color: #23395d;
  background: none;
  padding: 0;
  margin: 0;
  line-height: 1.7;
}
.text-section.mini {
  font-size: 0.97rem;
  background: none;
  padding: 0;
}
/* Spacing helpers, add to cards/sections if needed for extra separation */
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* NAVIGATION ---------------------------------------------------- */
header {
  background: var(--neutral);
  padding-top: 24px;
  padding-bottom: 24px;
  box-shadow: 0 2px 16px 0 rgba(35,57,93,0.065);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.cta-btn {
  background: var(--primary);
  color: var(--neutral);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  padding: 14px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(35,57,93,0.09);
  transition: background 0.22s, color 0.22s, transform 0.14s;
  outline: none;
  vertical-align: middle;
  margin-left: 24px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.035);
}

/* MOBILE NAVIGATION ---------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: 0;
  border-radius: 8px;
  padding: 4px 16px;
  position: relative;
  z-index: 54;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #23395dd9;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.47,1.64,.41,.8);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 32px 0 0;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 64;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  transition: background 0.18s, color 0.18s;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/* HERO/SECTION & CTA STYLES ---------------------------------------------------- */
.hero, .hero-germany, .hero-process, .berlin-districts-hero, .ratgeber-hero, .kontakt-hero, .thank-you, .legal-datenschutz, .legal-gdpr, .legal-cookie, .legal-nutzung {
  background: var(--secondary);
  border-radius: 0 0 48px 48px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 54px;
  box-shadow: 0px 8px 24px -10px #c0cadb44;
}
@media (max-width: 768px) {
  .hero, .hero-germany, .hero-process, .berlin-districts-hero, .ratgeber-hero, .kontakt-hero, .thank-you, .legal-datenschutz, .legal-gdpr, .legal-cookie, .legal-nutzung {
    border-radius: 0 0 26px 26px;
    min-height: 140px;
    padding: 30px 0;
    margin-bottom: 34px;
  }
}
.cta-home, .cta-team, .cta-germany, .cta-process, .cta-bezirke, .cta-contact {
  background: var(--primary);
  color: var(--neutral);
  border-radius: 28px;
  padding: 40px 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
}
.cta-home h2, .cta-team h2, .cta-germany h2, .cta-process h2, .cta-bezirke h2, .cta-contact h2 {
  color: var(--accent);
  margin-bottom: 20px;
}
.cta-home a, .cta-team a, .cta-germany a, .cta-process a, .cta-bezirke a, .cta-contact a {
  margin-bottom: 10px;
  margin-top: 10px;
}
.cta-home .mini, .cta-germany .mini {
  color: #f4f4f8;
}

/* PROCESS STEPS ---------------------------------------------------- */
.process-overview, .steps-germany, .process-details, .tips-process {
  background: #f3f3f9;
  border-radius: 24px;
  margin-bottom: 60px;
}
.process-steps, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
  counter-reset: stepnum;
}
.process-steps li, .step-list li {
  position: relative;
  padding-left: 54px;
  margin-right: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--primary);
  min-width: 175px;
}
.process-steps li::before, .step-list li::before {
  counter-increment: stepnum;
  content: counter(stepnum);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.34rem;
  font-weight: bold;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px 0 rgba(35,57,93,0.08);
}
.step-list li img {
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(35,57,93,0.05);
}
.timeline-visual ol {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.timeline-visual li {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  padding: 8px 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* FAQ, DL TABLES -------------------------------------------------- */
dt { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 600; margin-top: 12px; }
dd { padding-left: 24px; margin-bottom: 10px; color: #23395d; }
table {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(35,57,93,0.06);
  margin-top: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
thead tr {
  background: var(--primary);
  color: var(--neutral);
}
th, td {
  padding: 12px 20px;
  font-size: 1rem;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: var(--secondary);
}
tbody tr:nth-child(odd) {
  background: #f7f7fa;
}

/* INFOS, MAP, CONTACT DETAILS ------------------------------------- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 16px;
  align-items: flex-start;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  font-size: 1rem;
}
.contact-info img {
  width: 22px; height: 22px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.map-snippet {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.address, .phone, .email, .hours {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* NEWSLETTER ---------------------------------------------------------- */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--secondary);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 36px;
  box-shadow: var(--shadow-card);
  align-items: flex-start;
}
.newsletter-signup strong {
  color: var(--accent);
}
.newsletter-signup .cta-btn {
  margin-left: 0;
  margin-top: 6px;
}

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #232b3e;
  color: #fff;
  padding: 40px 0 28px 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -8px 32px -14px #23395d29;
  margin-top: 44px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.21s;
  opacity: 0.9;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  text-decoration: underline;
  opacity: 1;
}
footer .contact-info {
  color: #fff;
}
footer .newsletter-signup {
  background: #2b354c;
  color: #fff;
  box-shadow: none;
}

/* DISTRICT/BEZIRKE CARD STYLES ------------------------------------------ */
.district-list, .values-list, .guide-list, .resources ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.district-list li, .values-list li, .guide-list li, .resources ul li {
  font-size: 1.06rem;
  padding-left: 18px;
  position: relative;
}
.district-list li::before, .guide-list li::before, .resources ul li::before {
  content: '\25A0';
  color: var(--accent);
  position: absolute;
  left: 0; top: 4px;
  font-size: 0.78em;
}

/* FAQ (dl) for clarity */
dl {
  background: var(--secondary);
  border-radius: 12px;
  padding: 22px 20px 16px 22px;
  box-shadow: 0 2px 16px 0 rgba(35,57,93,0.06);
  margin-bottom: 24px;
}

/* INFOGRAPHIC (for Bezirke etc) */
.infographic {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal/cookie banner SUPPORT ---------------------------------------------- */
/* COOKIE BANNER --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23395d;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 32px -12px #1b2a4434;
  padding: 20px 24px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.4s, transform 0.37s;
}
.cookie-banner.active {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.cookie-banner .cookie-message {
  flex: 1 1 0%;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--accent);
  color: var(--primary);
  margin-right: 0;
  transition: background 0.22s, color 0.17s, box-shadow 0.16s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: var(--error);
  border: 1.5px solid #ce1515;
}
.cookie-banner button.cookie-settings {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-banner button:focus, .cookie-banner button:hover {
  filter: brightness(0.91);
  box-shadow: 0 2px 10px 0 rgba(35,57,93,0.12);
}

/* COOKIE MODAL --------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: rgba(32, 41, 60, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s;
}
.cookie-modal.active {
  opacity: 1; pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  max-width: 500px;
  width: 96%;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 32px 0 rgba(35,57,93,0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: auto;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  border: 0;
  color: var(--primary);
  cursor: pointer;
}
.cookie-categories {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
  background: var(--secondary);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 21px; height: 21px;
}
.cookie-category.essential {
  color: #aaa;
  font-weight: 600;
}
.cookie-category.essential input {
  display: none;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 11px 28px;
}

/* ANIMATIONS -------------------------------------------------- */
.cta-btn, .feature-list li, .card, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal-content, .faq dl, table, .newsletter-signup {
  transition: box-shadow 0.18s, background 0.22s, transform 0.16s, opacity 0.18s;
}
.feature-list li:hover, .card:hover, .testimonial-card:hover, .newsletter-signup:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 32px 0 rgba(35,57,93,0.10);
  z-index: 8;
}

/* INTERACTIVE STATE STYLES ---------------------------------------- */
a:focus, .cta-btn:focus, button:focus, [tabindex]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* MISC/ELEMENT STYLES --------------------------------------------------- */
ol, ul {
  margin-left: 0;
}
blockquote {
  quotes: "\201C" "\201D";
  font-style: italic;
  color: var(--primary);
}
blockquote:before {
  content: open-quote;
  font-size: 2.3em;
  vertical-align: -0.3em;
  color: var(--accent);
  opacity: 0.47;
}
blockquote:after {
  content: close-quote;
  font-size: 2.0em;
  vertical-align: -0.2em;
  color: var(--accent);
  opacity: 0.47;
}
hr {
  border: none;
  height: 2px;
  background: var(--accent);
  border-radius: 4px;
  margin: 38px 0;
}

/* RESPONSIVE ---------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .main-nav a {
    font-size: 0.99rem;
    gap: 20px;
  }
  .feature-list li {
    max-width: 44vw;
  }
}
@media (max-width: 860px) {
  header .container, .footer .container, .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .main-nav, .footer-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .feature-list {
    flex-direction: column;
    gap: 22px;
  }
  .feature-list li {
    min-width: 0; max-width: 100%; width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px; padding-right: 8px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
  /* Responsive content grid to stack */
  .content-grid, .feature-list, .card-container, .contact-info, .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .process-steps, .step-list, .timeline-visual ol {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .testimonial-card, .card {
    flex-direction: column;
    padding: 14px;
    gap: 13px;
  }
  .newsletter-signup {
    padding: 14px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 8px 18px 8px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-modal-content {
    padding: 16px 6px 14px 6px;
    max-width: 97vw;
  }
  footer {
    border-radius: 23px 23px 0 0;
  }
}
@media (max-width: 620px) {
  h1, .display { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .container { padding-left: 3px; padding-right: 3px; }
  .hero, .hero-germany, .hero-process, .berlin-districts-hero, .ratgeber-hero {
    padding-top: 14px; padding-bottom: 14px;
  }
}

/* VISUAL ELEMENTS: geometric_structured highlights --------------------- */
.feature-list li, .card, .testimonial-card, .district-list li, .values-list li, .newsletter-signup, .cookie-banner, .cookie-modal-content {
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(35,57,93,0.07);
  border: 2px solid transparent;
}
.feature-list li {
  border-radius: 16px 0 16px 0;
}
.card {
  border-radius: 0 14px 14px 0;
  border-left: 5px solid var(--primary);
}
.testimonial-card {
  border-radius: 0 0 16px 16px;
}
.district-list li {
  border-left: 4px solid var(--accent);
  background: #f7f7f8;
  padding: 13px 18px 13px 18px;
}
.values-list li {
  border-left: 4px solid #4575af;
  background: #f8f9fa;
  padding: 11px 17px;
}

/* TABLE ROWS: visual hierarchy */
tbody tr { border-bottom: 2px solid var(--secondary); }

/* BUTTONS --------------------------------------------------- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* LINKS --------------------------------------------------- */
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* ACCESSIBILITY ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation-duration: 0.01ms !important;
  }
}

/* END OF CSS */
