@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #0f0a1e;
  --color-bg-secondary: #1a1035;
  --color-bg-tertiary: #251848;
  --color-bg-card: rgba(26, 16, 53, 0.6);

  --color-text-primary: #ffffff;
  --color-text-secondary: #a5b4fc;
  --color-text-muted: #8b7fa0;

  --color-accent: #8b5cf6;
  --color-accent-hover: #a78bfa;
  --color-accent-light: #c4b5fd;
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);

  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button,
input[type="button"],
input[type="submit"] {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: var(--font-size-base);
}

button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-bg-tertiary);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-text-muted);
}

.btn-outline:hover {
  background: rgba(165, 180, 252, 0.05);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-sm);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-lg);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(165, 180, 252, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-elevated {
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-md);
}

.card-accent {
  border-left: 4px solid var(--color-accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-accent-light);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning);
  border-color: rgba(245, 158, 11, 0.3);
}

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
  border-color: rgba(239, 68, 68, 0.3);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.px-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-accent {
  color: var(--color-accent);
}

.text-small {
  font-size: var(--font-size-sm);
}

.text-large {
  font-size: var(--font-size-lg);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.875rem;
    --font-size-3xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header-whistleblow-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-whistleblow-portal-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
}

.header-whistleblow-portal-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.header-whistleblow-portal-brand:hover {
  opacity: 0.85;
}

.header-whistleblow-portal-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-whistleblow-portal-logo-text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.header-whistleblow-portal-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
}

.header-whistleblow-portal-nav-link {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-base);
  white-space: nowrap;
}

.header-whistleblow-portal-nav-link:hover {
  color: var(--color-accent);
}

.header-whistleblow-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-whistleblow-portal-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.header-whistleblow-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-whistleblow-portal-hamburger {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.header-whistleblow-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  padding-top: 70px;
  border-left: 1px solid var(--color-border);
}

.header-whistleblow-portal-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-whistleblow-portal-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

.header-whistleblow-portal-mobile-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
}

.header-whistleblow-portal-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.header-whistleblow-portal-mobile-close:hover {
  color: var(--color-accent);
}

.header-whistleblow-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
  overflow-y: auto;
}

.header-whistleblow-portal-mobile-link {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-base);
}

.header-whistleblow-portal-mobile-link:hover {
  color: var(--color-accent);
  background: var(--color-bg-secondary);
}

.header-whistleblow-portal-mobile-cta {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-base);
  margin: 1rem clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.header-whistleblow-portal-mobile-cta:hover {
  background: var(--color-accent-hover);
}

@media (min-width: 768px) {
  .header-whistleblow-portal-desktop-nav {
    display: flex;
  }

  .header-whistleblow-portal-cta-button {
    display: block;
  }

  .header-whistleblow-portal-mobile-toggle {
    display: none;
  }

  .header-whistleblow-portal-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-whistleblow-portal-container {
    padding: 0 1rem;
  }

  .header-whistleblow-portal-logo-text {
    font-size: 1.1rem;
  }

  .header-whistleblow-portal-mobile-menu {
    right: 0;
    left: auto;
  }
}

    

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  line-height: var(--line-height-normal, 1.5);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.compliance-hub {
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(30, 64, 175, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-section-index {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.hero-content-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-text-block-index {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary-index,
.btn-secondary-index {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-index {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-primary-index:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(30, 64, 175, 0.25);
}

.btn-secondary-index {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary-index:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-card-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
}

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-block-index {
  flex: 1 1 50%;
  min-height: 300px;
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }

  .hero-text-block-index,
  .hero-image-block-index {
    flex: 1 1 100%;
  }

  .hero-image-block-index {
    min-height: 250px;
  }

  .hero-cta-group-index {
    flex-direction: column;
  }

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }

  .hero-stats-index {
    gap: 1.5rem;
    justify-content: space-between;
  }
}

.about-section-index {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.about-content-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-text-block-index {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.about-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.about-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.about-feature-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature-item-index i {
  font-size: 1.75rem;
  color: var(--color-accent);
  width: 40px;
}

.feature-title-index {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.feature-text-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.about-image-block-index {
  flex: 1 1 50%;
  min-height: 350px;
}

.about-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .about-content-index {
    flex-direction: column;
  }

  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }

  .about-image-block-index {
    min-height: 250px;
  }
}

.how-it-works-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.how-it-works-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-it-works-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item-index {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.step-title-index {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-index {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-index {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-index {
    width: auto;
  }
}

.features-section-index {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.features-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.features-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-index {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  border-color: var(--color-accent-light);
}

.card-icon-index {
  font-size: 2.5rem;
  color: var(--color-accent);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 10px;
}

.card-title-index {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.posts-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.posts-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.posts-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.post-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.post-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-title-index {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.post-excerpt-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.post-link-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-link-index:hover {
  color: var(--color-accent-hover);
}

.posts-cta-index {
  text-align: center;
  margin-top: 1rem;
}

.testimonials-section-index {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.testimonials-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.testimonials-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-text-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.author-name-index {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.author-role-index {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.faq-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.faq-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question-index {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.faq-answer-index {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-section-index {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.cta-box-index {
  flex: 1 1 45%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  color: #ffffff;
}

.cta-title-index {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.cta-text-index {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: var(--color-accent);
  width: fit-content;
}

.cta-box-index .btn-primary-index:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
}

.cta-info-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block-index {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-title-index {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.info-text-index {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.info-link-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.info-link-index:hover {
  color: var(--color-accent-light);
}

@media (max-width: 768px) {
  .cta-content-index {
    flex-direction: column;
  }

  .cta-box-index,
  .cta-info-index {
    flex: 1 1 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn-accept-index {
  background: var(--color-accent);
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: var(--color-accent-hover);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-banner-text-index {
    width: 100%;
    order: 1;
  }

  .cookie-banner-buttons-index {
    width: 100%;
    order: 2;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 45%;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .features-cards-index {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .posts-cards-index,
  .testimonials-cards-index {
    flex-direction: column;
    align-items: stretch;
  }

  .post-card-index,
  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .faq-items-index {
    max-width: 100%;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer-about {
  display: block;
}

.footer-about h3,
.footer-nav-section h3,
.footer-contact h3,
.footer-legal-section h3 {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
}

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-section,
.footer-contact,
.footer-legal-section {
  display: block;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  flex-direction: row;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base);
  display: inline-block;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--color-accent);
  transform: translateX(2px);
}

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-copyright {
  display: block;
  border-top: 1px solid var(--color-border);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
    padding-top: clamp(2rem, 3vw, 3rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 3.5rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-nav-section {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal-section {
    grid-column: 4 / 5;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
    padding-top: clamp(2rem, 3vw, 3rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-nav,
  .footer-legal {
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.125rem);
  }

  .footer-link {
    display: block;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .footer-content {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-nav,
  .footer-legal {
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-direction: column;
  }

  .footer-link {
    display: block;
    white-space: normal;
  }
}
    

.category-page-whistleblower-protection-germany {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.hero-section-whistleblower-protection-germany {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-content-whistleblower-protection-germany {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-whistleblower-protection-germany {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-block-whistleblower-protection-germany {
  flex: 1 1 45%;
  min-width: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image-whistleblower-protection-germany {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-title-whistleblower-protection-germany {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-whistleblower-protection-germany {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-accent);
  font-weight: 600;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-whistleblower-protection-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.posts-section-whistleblower-protection-germany {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.posts-content-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.posts-header-whistleblower-protection-germany {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.posts-title-whistleblower-protection-germany {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-whistleblower-protection-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-whistleblower-protection-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.card-whistleblower-protection-germany:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image-whistleblower-protection-germany {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-whistleblower-protection-germany {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-whistleblower-protection-germany {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
}

.card-meta-whistleblower-protection-germany {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.7rem, 0.9vw + 0.4rem, 0.85rem);
  color: var(--color-text-secondary);
}

.card-reading-time-whistleblower-protection-germany,
.card-level-whistleblower-protection-germany,
.card-date-whistleblower-protection-germany {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-text-secondary);
}

.card-reading-time-whistleblower-protection-germany i,
.card-level-whistleblower-protection-germany i,
.card-date-whistleblower-protection-germany i {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 1rem);
}

.card-link-whistleblower-protection-germany {
  display: inline-block;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  font-weight: 600;
  transition: all var(--transition-base);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-whistleblower-protection-germany:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

.insights-section-whistleblower-protection-germany {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.insights-content-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.insights-quote-block-whistleblower-protection-germany {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.insights-blockquote-whistleblower-protection-germany {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-quote-text-whistleblower-protection-germany {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-style: italic;
}

.insights-attribution-whistleblower-protection-germany {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  text-align: right;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-context-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-title-whistleblower-protection-germany {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-whistleblower-protection-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-section-whistleblower-protection-germany {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.checklist-content-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.checklist-header-whistleblower-protection-germany {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.checklist-title-whistleblower-protection-germany {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-subtitle-whistleblower-protection-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-items-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.checklist-item-whistleblower-protection-germany {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.checklist-item-whistleblower-protection-germany:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.checklist-icon-whistleblower-protection-germany {
  flex: 0 0 auto;
  width: clamp(2rem, 4vw, 3rem);
  height: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-accent);
  flex-shrink: 0;
}

.checklist-text-whistleblower-protection-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1;
}

.checklist-item-title-whistleblower-protection-germany {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-item-description-whistleblower-protection-germany {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-content-whistleblower-protection-germany {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-text-block-whistleblower-protection-germany {
    flex: 1 1 100%;
  }

  .hero-image-block-whistleblower-protection-germany {
    flex: 1 1 100%;
    max-height: 350px;
  }

  .card-whistleblower-protection-germany {
    flex: 1 1 100%;
    max-width: none;
  }

  .checklist-item-whistleblower-protection-germany {
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .checklist-icon-whistleblower-protection-germany {
    width: clamp(1.75rem, 3vw, 2.5rem);
    height: clamp(1.75rem, 3vw, 2.5rem);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-whistleblower-protection-germany {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .card-whistleblower-protection-germany {
    flex: 1 1 45%;
    max-width: 380px;
  }

  .hero-content-whistleblower-protection-germany {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-whistleblower-protection-germany {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-whistleblower-protection-germany {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insights-section-whistleblower-protection-germany {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .checklist-section-whistleblower-protection-germany {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-grid-whistleblower-protection-germany {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-whistleblower-protection-germany {
    flex: 1 1 280px;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

.hero-meta-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-anonyme-meldestellen-aufbau {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-divider-anonyme-meldestellen-aufbau {
  color: var(--color-border);
}

.hero-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-anonyme-meldestellen-aufbau a {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-anonyme-meldestellen-aufbau a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-anonyme-meldestellen-aufbau span {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .hero-content-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .hero-text-anonyme-meldestellen-aufbau,
  .hero-image-wrapper-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-anonyme-meldestellen-aufbau {
    max-height: 300px;
  }
}

.intro-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.25rem 0;
}

.intro-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .intro-text-wrapper-anonyme-meldestellen-aufbau,
  .intro-image-wrapper-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-anonyme-meldestellen-aufbau {
    max-height: 300px;
  }
}

.overview-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.overview-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.overview-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.overview-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-cards-anonyme-meldestellen-aufbau {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.requirement-card-anonyme-meldestellen-aufbau {
  flex: 1 1 280px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.requirement-card-anonyme-meldestellen-aufbau:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-anonyme-meldestellen-aufbau {
  font-size: 2rem;
  color: var(--color-accent);
}

.card-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.implementation-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impl-text-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-image-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impl-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.25rem 0;
}

.impl-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .implementation-content-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .impl-text-wrapper-anonyme-meldestellen-aufbau,
  .impl-image-wrapper-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .impl-image-anonyme-meldestellen-aufbau {
    max-height: 300px;
  }
}

.process-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps-anonyme-meldestellen-aufbau {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.process-step-anonyme-meldestellen-aufbau {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-anonyme-meldestellen-aufbau {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-anonyme-meldestellen-aufbau {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.training-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.training-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.training-text-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-image-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.training-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.25rem 0;
}

.training-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .training-content-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .training-text-wrapper-anonyme-meldestellen-aufbau,
  .training-image-wrapper-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .training-image-anonyme-meldestellen-aufbau {
    max-height: 300px;
  }
}

.highlight-section-anonyme-meldestellen-aufbau {
  background: var(--color-accent);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.highlight-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.featured-quote-anonyme-meldestellen-aufbau {
  border-left: 4px solid #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  font-style: italic;
}

.quote-text-anonyme-meldestellen-aufbau {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technical-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.technical-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technical-text-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.technical-image-wrapper-anonyme-meldestellen-aufbau {
  flex: 1 1 50%;
  max-width: 50%;
}

.technical-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technical-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.25rem 0;
}

.technical-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .technical-content-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .technical-text-wrapper-anonyme-meldestellen-aufbau,
  .technical-image-wrapper-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technical-image-anonyme-meldestellen-aufbau {
    max-height: 300px;
  }
}

.monitoring-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.monitoring-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.monitoring-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.monitoring-subtitle-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.monitoring-items-anonyme-meldestellen-aufbau {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.monitoring-item-anonyme-meldestellen-aufbau {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.item-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.item-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.disclaimer-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-info);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.related-section-anonyme-meldestellen-aufbau {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-anonyme-meldestellen-aufbau {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-anonyme-meldestellen-aufbau {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-anonyme-meldestellen-aufbau {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-anonyme-meldestellen-aufbau:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-wrapper-anonyme-meldestellen-aufbau {
  width: 100%;
  overflow: hidden;
  height: 220px;
}

.related-image-anonyme-meldestellen-aufbau {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-anonyme-meldestellen-aufbau {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-anonyme-meldestellen-aufbau {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-anonyme-meldestellen-aufbau {
  font-size: clamp(0.825rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.related-link-anonyme-meldestellen-aufbau {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-link-anonyme-meldestellen-aufbau:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .process-step-anonyme-meldestellen-aufbau {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-anonyme-meldestellen-aufbau {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .monitoring-items-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .monitoring-item-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-anonyme-meldestellen-aufbau {
    flex-direction: column;
  }

  .related-card-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .requirements-cards-anonyme-meldestellen-aufbau {
    flex-direction: row;
  }

  .requirement-card-anonyme-meldestellen-aufbau {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .requirement-card-anonyme-meldestellen-aufbau {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-hinschg-anforderungen-unternehmen {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.breadcrumbs-hinschg-anforderungen-unternehmen a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-hinschg-anforderungen-unternehmen a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-hinschg-anforderungen-unternehmen span {
  color: var(--color-text-secondary);
}

.hero-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

.hero-meta-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-hinschg-anforderungen-unternehmen i {
  color: var(--color-accent);
}

.hero-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-hinschg-anforderungen-unternehmen {
    flex-direction: column;
  }
  
  .hero-text-hinschg-anforderungen-unternehmen,
  .hero-image-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.intro-text-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.intro-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-text-hinschg-anforderungen-unternehmen,
  .intro-image-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.requirements-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.requirements-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.requirements-text-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-image-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.requirements-paragraph-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.requirements-highlight-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
}

.highlight-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.highlight-list-hinschg-anforderungen-unternehmen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list-hinschg-anforderungen-unternehmen li {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list-hinschg-anforderungen-unternehmen li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.requirements-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .requirements-content-hinschg-anforderungen-unternehmen {
    flex-direction: column;
  }
  
  .requirements-text-hinschg-anforderungen-unternehmen,
  .requirements-image-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.implementation-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-grid-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.implementation-step-hinschg-anforderungen-unternehmen {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.implementation-step-hinschg-anforderungen-unternehmen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number-hinschg-anforderungen-unternehmen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.step-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
}

.step-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .implementation-step-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.protection-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.protection-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.protection-text-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-image-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.protection-paragraph-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.protection-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .protection-content-hinschg-anforderungen-unternehmen {
    flex-direction: column;
  }
  
  .protection-text-hinschg-anforderungen-unternehmen,
  .protection-image-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.common-mistakes-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-mistakes-intro-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

.mistakes-cards-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.mistake-card-hinschg-anforderungen-unternehmen {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.mistake-card-hinschg-anforderungen-unternehmen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mistake-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
}

.mistake-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .mistake-card-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.action-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.action-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.action-text-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-image-hinschg-anforderungen-unternehmen {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.action-paragraph-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.action-checklist-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.checklist-item-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-icon-hinschg-anforderungen-unternehmen {
  color: var(--color-success);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.action-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .action-content-hinschg-anforderungen-unternehmen {
    flex-direction: column;
  }
  
  .action-text-hinschg-anforderungen-unternehmen,
  .action-image-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-cta-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.btn-primary-hinschg-anforderungen-unternehmen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-hinschg-anforderungen-unternehmen:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.disclaimer-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-info);
  border-radius: var(--radius-md);
}

.disclaimer-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
}

.disclaimer-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.related-section-hinschg-anforderungen-unternehmen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-hinschg-anforderungen-unternehmen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-hinschg-anforderungen-unternehmen {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.related-card-hinschg-anforderungen-unternehmen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-hinschg-anforderungen-unternehmen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-hinschg-anforderungen-unternehmen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-hinschg-anforderungen-unternehmen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.related-card-text-hinschg-anforderungen-unternehmen {
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.related-link-hinschg-anforderungen-unternehmen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.1vw, 1.125rem);
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-link-hinschg-anforderungen-unternehmen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-hinschg-anforderungen-unternehmen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-hinschg-anforderungen-unternehmen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

.main-fallverwaltung-untersuchungsprozesse {
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-fallverwaltung-untersuchungsprozesse a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-fallverwaltung-untersuchungsprozesse a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-fallverwaltung-untersuchungsprozesse span {
  color: var(--color-text-secondary);
}

.hero-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 800;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-subtitle-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: var(--line-height-relaxed);
}

.hero-meta-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-fallverwaltung-untersuchungsprozesse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-fallverwaltung-untersuchungsprozesse i {
  color: var(--color-accent);
  font-size: 1.1em;
}

.hero-image-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-fallverwaltung-untersuchungsprozesse {
    flex-direction: column;
  }

  .hero-text-block-fallverwaltung-untersuchungsprozesse,
  .hero-image-block-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.intro-paragraph-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.intro-image-tag-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-fallverwaltung-untersuchungsprozesse {
    flex-direction: column;
  }

  .intro-text-fallverwaltung-untersuchungsprozesse,
  .intro-image-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-header-fallverwaltung-untersuchungsprozesse {
  text-align: center;
}

.process-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.process-subtitle-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.process-steps-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.process-step-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.step-details-fallverwaltung-untersuchungsprozesse {
  flex: 1;
}

.step-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.documentation-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documentation-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.documentation-text-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-image-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.documentation-paragraph-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.documentation-image-tag-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .documentation-content-fallverwaltung-untersuchungsprozesse {
    flex-direction: column;
  }

  .documentation-text-fallverwaltung-untersuchungsprozesse,
  .documentation-image-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.protection-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.protection-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.protection-image-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-text-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.protection-paragraph-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.protection-image-tag-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .protection-content-fallverwaltung-untersuchungsprozesse {
    flex-direction: column-reverse;
  }

  .protection-image-fallverwaltung-untersuchungsprozesse,
  .protection-text-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.challenges-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.challenges-grid-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.challenge-card-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.challenge-card-fallverwaltung-untersuchungsprozesse:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.challenge-card-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.challenge-card-text-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .challenge-card-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-text-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-tight);
}

.practices-list-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-item-fallverwaltung-untersuchungsprozesse {
  padding: 0;
  margin-bottom: 0;
}

.practice-item-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.practice-item-text-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.best-practices-image-tag-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .best-practices-content-fallverwaltung-untersuchungsprozesse {
    flex-direction: column;
  }

  .best-practices-text-fallverwaltung-untersuchungsprozesse,
  .best-practices-image-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.conclusion-text-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-cta-fallverwaltung-untersuchungsprozesse {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1vw + 0.5rem, 1rem) clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.disclaimer-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.disclaimer-icon-fallverwaltung-untersuchungsprozesse {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-accent);
}

.disclaimer-text-fallverwaltung-untersuchungsprozesse {
  flex: 1;
}

.disclaimer-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-body-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.825rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-section-fallverwaltung-untersuchungsprozesse {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
}

.related-cards-fallverwaltung-untersuchungsprozesse {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-fallverwaltung-untersuchungsprozesse {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-fallverwaltung-untersuchungsprozesse:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-primary);
}

.related-card-img-tag-fallverwaltung-untersuchungsprozesse {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-fallverwaltung-untersuchungsprozesse {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.related-card-text-fallverwaltung-untersuchungsprozesse {
  font-size: clamp(0.825rem, 1vw + 0.5rem, 0.975rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

@media (max-width: 1024px) {
  .related-card-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-fallverwaltung-untersuchungsprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .process-step-fallverwaltung-untersuchungsprozesse {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .step-number-fallverwaltung-untersuchungsprozesse {
    min-width: auto;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.main-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  overflow: hidden;
}

.hero-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-rechtlicher-schutz-hinweisgeber {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-rechtlicher-schutz-hinweisgeber i {
  color: var(--color-accent);
  font-size: 1.1em;
}

.hero-image-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 2vw, 1rem);
  display: block;
}

.breadcrumbs-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-rechtlicher-schutz-hinweisgeber a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-rechtlicher-schutz-hinweisgeber a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.intro-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-paragraph-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 2vw, 1rem);
  display: block;
}

.protections-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.protections-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.section-header-rechtlicher-schutz-hinweisgeber {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-rechtlicher-schutz-hinweisgeber {
  display: inline-block;
  padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.protections-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.protections-cards-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.protection-card-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 calc(50% - 1.25rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.protection-card-rechtlicher-schutz-hinweisgeber:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent-light);
}

.card-number-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
}

.card-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-subtitle-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.process-step-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  width: clamp(4rem, 8vw, 5rem);
}

.step-content-rechtlicher-schutz-hinweisgeber {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.step-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-image-rechtlicher-schutz-hinweisgeber {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.process-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

.scenarios-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.scenarios-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.scenarios-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.scenario-wrapper-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.scenario-wrapper-rechtlicher-schutz-hinweisgeber:nth-child(even) {
  flex-direction: row-reverse;
}

.scenario-text-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-heading-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.scenario-paragraph-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.scenario-image-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

.requirements-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.requirements-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.requirements-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.requirements-text-rechtlicher-schutz-hinweisgeber {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.requirements-paragraph-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.requirements-list-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.requirement-item-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 calc(50% - 1.25rem);
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.requirement-icon-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-accent);
}

.requirement-heading-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.requirement-description-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.requirements-image-rechtlicher-schutz-hinweisgeber {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.requirements-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
}

.faq-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.faq-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.faq-items-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  overflow: hidden;
}

.faq-question-rechtlicher-schutz-hinweisgeber {
  display: block;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question-rechtlicher-schutz-hinweisgeber:hover {
  background: var(--color-bg-secondary);
}

.faq-question-rechtlicher-schutz-hinweisgeber::marker {
  color: var(--color-accent);
}

.faq-answer-rechtlicher-schutz-hinweisgeber {
  padding: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.cta-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-box-rechtlicher-schutz-hinweisgeber {
  background: linear-gradient(135deg, var(--color-accent), #3b82f6);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.cta-text-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.btn-primary-rechtlicher-schutz-hinweisgeber {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-accent);
  text-decoration: none;
  border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.btn-primary-rechtlicher-schutz-hinweisgeber:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.disclaimer-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-info);
  border-radius: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-rechtlicher-schutz-hinweisgeber i {
  color: var(--color-info);
  font-size: 1.3em;
}

.disclaimer-text-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.related-section-rechtlicher-schutz-hinweisgeber {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-cards-rechtlicher-schutz-hinweisgeber {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-rechtlicher-schutz-hinweisgeber {
  flex: 1 1 calc(33.333% - 1.67rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-rechtlicher-schutz-hinweisgeber:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent-light);
}

.related-image-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.related-card-img-rechtlicher-schutz-hinweisgeber {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-rechtlicher-schutz-hinweisgeber {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-card-title-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.related-card-description-rechtlicher-schutz-hinweisgeber {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-rechtlicher-schutz-hinweisgeber {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-rechtlicher-schutz-hinweisgeber:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-rechtlicher-schutz-hinweisgeber,
  .intro-content-rechtlicher-schutz-hinweisgeber,
  .scenario-wrapper-rechtlicher-schutz-hinweisgeber {
    flex-direction: column;
  }

  .hero-text-rechtlicher-schutz-hinweisgeber,
  .hero-image-rechtlicher-schutz-hinweisgeber,
  .intro-text-rechtlicher-schutz-hinweisgeber,
  .intro-image-rechtlicher-schutz-hinweisgeber,
  .scenario-text-rechtlicher-schutz-hinweisgeber,
  .scenario-image-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .scenario-wrapper-rechtlicher-schutz-hinweisgeber:nth-child(even) {
    flex-direction: column;
  }

  .protection-card-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .requirement-item-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-rechtlicher-schutz-hinweisgeber {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-rechtlicher-schutz-hinweisgeber {
    width: auto;
  }

  .related-card-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .protection-card-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }

  .requirement-item-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }

  .related-card-rechtlicher-schutz-hinweisgeber {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.whistleblower-compliance-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-header-about {
  text-align: center;
  max-width: 900px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-visual-about {
  width: 100%;
  max-width: 950px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.mission-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mission-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.mission-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-tag-about {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.mission-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.mission-text-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.mission-text-about p {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
}

.mission-text-about p:last-child {
  margin-bottom: 0;
}

.approach-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.approach-intro-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.approach-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.approach-card-about {
  flex: 1 1 clamp(250px, 100%, 320px);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-base);
}

.approach-card-about:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
}

.card-icon-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-accent);
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.expertise-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.expertise-text-about {
  flex: 1 1 45%;
}

.expertise-image-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.expertise-text-about p {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-text-about p:last-child {
  margin-bottom: 0;
}

.hinscg-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hinscg-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hinscg-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hinscg-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hinscg-intro-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.hinscg-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 750px;
  margin: 0 auto;
}

.list-item-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.list-icon-about {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2rem, 3vw, 2.5rem);
  height: clamp(2rem, 3vw, 2.5rem);
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-top: 2px;
}

.list-text-about {
  flex: 1;
  padding-top: clamp(0.25rem, 0.5vw, 0.5rem);
}

.list-title-about {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.15rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
}

.list-desc-about {
  font-size: clamp(0.85rem, 0.9vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.quote-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.featured-quote-about {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.quote-author-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
}

.disclaimer-icon-about {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.75rem, 3vw, 2.25rem);
  height: clamp(1.75rem, 3vw, 2.25rem);
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  margin-top: 2px;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 0.9vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.disclaimer-text-about p {
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-about p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-about {
    padding: 0;
  }

  .expertise-split-about {
    flex-direction: column;
  }

  .expertise-text-about {
    flex: 1 1 100%;
  }

  .expertise-image-about {
    flex: 1 1 100%;
    max-height: 300px;
  }

  .approach-cards-about {
    flex-direction: column;
  }

  .approach-card-about {
    flex: 1 1 100%;
  }

  .hero-visual-about,
  .expertise-image-about {
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-title-about {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .mission-title-about,
  .approach-title-about,
  .expertise-title-about,
  .hinscg-title-about {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .approach-cards-about {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .list-item-about {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .featured-quote-about {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .quote-text-about {
    font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.125rem);
  }
}

* {
  box-sizing: border-box;
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  text-align: center;
  overflow: hidden;
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border, var(--color-bg-tertiary));
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-item__trigger:hover {
  color: var(--color-accent);
  background-color: var(--color-bg-tertiary);
}

.faq-item__trigger:active {
  transform: scale(0.98);
}

.faq-item__question {
  flex: 1;
  line-height: var(--line-height-normal);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: var(--space-md);
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active .faq-item__answer {
  display: block;
  max-height: 1000px;
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.faq-cta {
  background-color: var(--color-bg-tertiary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.faq-cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.faq-cta__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  width: fit-content;
}

.faq-cta__button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-cta__button:active {
  transform: translateY(0);
}

.faq-cta__image {
  display: none;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-cta__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .faq-hero {
    padding: 4rem var(--space-lg);
  }

  .faq-content {
    padding: 5rem var(--space-lg);
  }

  .faq-cta {
    padding: 5rem var(--space-lg);
  }
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 5rem var(--space-xl);
  }

  .faq-content {
    padding: 6rem var(--space-xl);
  }

  .faq-cta {
    padding: 6rem var(--space-xl);
  }

  .faq-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .faq-cta__image {
    display: block;
  }

  .faq-item__trigger {
    padding: var(--space-xl);
  }

  .faq-item__answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 6rem var(--space-2xl);
  }

  .faq-content {
    padding: 7rem var(--space-2xl);
  }

  .faq-cta {
    padding: 7rem var(--space-2xl);
  }

  .faq-accordion {
    gap: var(--space-lg);
  }

  .faq-item:hover {
    border-color: var(--color-accent);
  }
}

@media (max-width: 639px) {
  .faq-item__question {
    padding-right: var(--space-md);
  }

  .faq-item__icon {
    width: 24px;
    height: 24px;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.services-hero {
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-hero-content {
  max-width: 600px;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.services-hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: none;
}

.services-cards-section {
  padding: var(--space-3xl) var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  flex-direction: column !important;
}

.services-card {
  background-color: var(--color-bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-accent);
}

.services-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.services-card-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-lg) 0;
}

.services-card-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services-card-details li {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.services-card-details li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.services-cta-section {
  padding: var(--space-3xl) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta-content {
  max-width: 600px;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  border: 2px solid var(--color-accent);
}

.services-cta-button:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.services-cta-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: none;
}

@media (min-width: 640px) {
  .services-hero {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-3xl);
  }

  .services-hero-image {
    display: block;
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-cta-section {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-3xl);
  }

  .services-cta-image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-2xl);
    gap: var(--space-4xl);
  }

  .services-hero-image {
    height: 400px;
  }

  .services-cards-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .services-card {
    padding: var(--space-2xl) var(--space-xl);
  }

  .services-cta-section {
    padding: var(--space-4xl) var(--space-2xl);
    gap: var(--space-4xl);
  }

  .services-cta-image {
    height: 400px;
  }
}

@media (min-width: 1280px) {
  .services-cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.compliance-hub {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.compliance-hub main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.compliance-hub .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 var(--space-md);
  margin: 0 auto;
}

.compliance-hub .privacy-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.compliance-hub h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.compliance-hub .update-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.compliance-hub h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-normal);
}

.compliance-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  text-align: justify;
}

.compliance-hub .intro-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.compliance-hub .policy-section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.compliance-hub .policy-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.compliance-hub .policy-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.compliance-hub ul {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.compliance-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.compliance-hub .contact-section {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.compliance-hub .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.compliance-hub .contact-section p {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.compliance-hub .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.compliance-hub .footer-note {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-bg-tertiary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .compliance-hub .privacy-content {
    padding: var(--space-3xl) 0;
  }

  .compliance-hub .policy-section {
    padding: var(--space-xl);
  }

  .compliance-hub .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .compliance-hub .privacy-content {
    padding: var(--space-4xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  color: var(--color-success);
  margin-bottom: var(--space-md);
  animation: scaleInIcon 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  letter-spacing: -0.5px;
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
  line-height: var(--line-height-normal);
}

.thank-content .description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 650px;
}

.thank-content .next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 650px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: var(--space-md);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .thank-page {
    padding: var(--space-lg);
  }
  
  .thank-section {
    padding: var(--space-4xl) 0;
  }
  
  .thank-content {
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--space-xl);
  }
  
  .thank-section {
    padding: var(--space-4xl) 0;
  }
  
  .thank-content {
    gap: var(--space-3xl);
  }
}

@keyframes scaleInIcon {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: var(--space-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 2;
}

.error-accent {
  position: absolute;
  width: clamp(150px, 40vw, 350px);
  height: clamp(150px, 40vw, 350px);
  background-color: var(--color-accent-light);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: var(--space-xl) 0 var(--space-lg) 0;
  line-height: var(--line-height-tight);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-lg) 0 var(--space-md) 0;
  letter-spacing: 0.3px;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: var(--space-lg) 0 var(--space-2xl) 0;
  font-style: italic;
  letter-spacing: 0.3px;
}

.error-actions {
  display: flex;
  justify-content: center;
  margin: var(--space-2xl) 0 var(--space-3xl) 0;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.error-footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.error-footer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 500;
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: 0.3px;
}

.error-footer-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
  letter-spacing: 0.3px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-code-wrapper {
    min-height: 240px;
  }

  .error-wrapper {
    animation: fadeInUp 1s ease-out;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .error-code-wrapper {
    min-height: 280px;
  }

  .btn {
    padding: var(--space-lg) var(--space-3xl);
  }

  .btn:hover {
    box-shadow: var(--shadow-lg);
  }
}

@media (max-width: 480px) {
  .error-code-wrapper {
    min-height: 160px;
  }

  .error-footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
  }
}

.contact-page-connect {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.contact-page-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 4rem 1rem;
  }

  .contact-page-hero-content {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 6rem 1rem;
  }

  .contact-page-hero-content {
    padding: 0 4rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 4rem 1rem;
  }

  .contact-page-main-content {
    padding: 0 3rem;
  }

  .contact-page-grid {
    gap: 3rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 6rem 1rem;
  }

  .contact-page-main-content {
    padding: 0 4rem;
  }

  .contact-page-grid {
    gap: 4rem;
  }
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-page-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-input,
.contact-page-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-page-input::placeholder,
.contact-page-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.1);
}

.contact-page-input:invalid:not(:placeholder-shown),
.contact-page-textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-error {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-error);
  display: none;
  margin-top: -0.25rem;
}

.contact-page-input.error ~ .contact-page-error,
.contact-page-textarea.error ~ .contact-page-error {
  display: block;
}

.contact-page-form-consent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-page-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.contact-page-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: var(--color-accent);
}

.contact-page-checkbox-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-page-link {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-page-link:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.contact-page-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-page-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.contact-page-submit:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-page-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-page-submit:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.contact-page-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-page-info-header {
  margin-bottom: 2rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-page-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.contact-page-info-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.contact-page-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
  min-width: 0;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
  line-height: var(--line-height-normal);
  word-break: break-word;
}

.contact-page-info-item-meta {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-page-info-cta {
  padding: 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.contact-page-info-cta-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-info-cta-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-page-support {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-support-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-page-support-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 2.5rem 0;
  line-height: var(--line-height-tight);
  text-align: center;
}

.contact-page-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-page-faq-card {
  padding: 1.75rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.contact-page-faq-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.contact-page-faq-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  line-height: var(--line-height-tight);
}

.contact-page-faq-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-page-support {
    padding: 4rem 1rem;
  }

  .contact-page-support-content {
    padding: 0 3rem;
  }

  .contact-page-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-support {
    padding: 6rem 1rem;
  }

  .contact-page-support-content {
    padding: 0 4rem;
  }

  .contact-page-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .contact-page-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-page-form,
  .contact-page-info-block {
    gap: 1.25rem;
  }

  .contact-page-submit {
    padding: 0.875rem 1.5rem;
  }
}