
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #0066cc;
  --color-primary-hover: #0052a3;
  --color-primary-light: #e6f0ff;
  --color-secondary: #00a86b;
  --color-secondary-hover: #008552;
  --color-accent-warm: #ff6b35;
  --color-accent-warm-hover: #e55a2b;
  
  
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-success: #10b981;
  --color-info: #3b82f6;
  
  
  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --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.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-hide: -1;
  --z-auto: auto;
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: var(--lh-normal);
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

h4 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

h5 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

h6 {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: 1rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

small {
  font-size: 0.875rem;
  line-height: var(--lh-normal);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background: rgba(0, 102, 204, 0.08);
}

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

.btn-small {
  padding: 0.5rem var(--space-md);
  font-size: 0.875rem;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #ffffff;
}

.section-dark p,
.section-dark li,
.section-dark label {
  color: var(--color-text-secondary-dark);
}

.section-dark a {
  color: #ffffff;
}

.section-dark a:hover {
  color: var(--color-primary-light);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-primary-light);
}

.section-light p,
.section-light li,
.section-light label {
  color: var(--color-text-secondary-light);
}

.section-light a {
  color: var(--color-primary);
}

.section-soft {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
}

.section-soft h1,
.section-soft h2,
.section-soft h3,
.section-soft h4,
.section-soft h5,
.section-soft h6 {
  color: var(--color-text-primary-light);
}

.section-soft p,
.section-soft li,
.section-soft label {
  color: var(--color-text-secondary-light);
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

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

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

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

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

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

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

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

.card {
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary-dark);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-dark h3,
.card-dark h4,
.card-dark h5 {
  color: #ffffff;
}

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  color: var(--color-text-primary-light);
  box-shadow: var(--shadow-sm);
}

.card-light:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-light h3,
.card-light h4,
.card-light h5 {
  color: var(--color-text-primary-light);
}

.badge {
  display: inline-block;
  padding: 0.25rem var(--space-sm);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

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

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

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

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

.section-dark .divider {
  background: rgba(255, 255, 255, 0.1);
}

ul,
ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-relaxed);
}

blockquote {
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-secondary-light);
  margin: var(--space-lg) 0;
}

.section-dark blockquote {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-text-secondary-dark);
}

code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  padding: 0.125rem 0.375rem;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  color: #e74c3c;
}

.section-dark code {
  background: rgba(255, 255, 255, 0.1);
  color: #fbbf24;
}

pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-sm { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.my-md { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.my-lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }

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

.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: 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-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.font-light { font-weight: var(--fw-regular); }
.font-medium { font-weight: var(--fw-medium); }
.font-semibold { font-weight: var(--fw-semibold); }
.font-bold { font-weight: var(--fw-bold); }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

.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: 768px) {
  .hide-mobile { display: none; }
}

@media (min-width: 769px) {
  .show-mobile { display: none; }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-base) ease-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-base) ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-base) ease-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-base) ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

.border {
  border: 1px solid #e2e8f0;
}

.border-t {
  border-top: 1px solid #e2e8f0;
}

.border-b {
  border-bottom: 1px solid #e2e8f0;
}

.border-l {
  border-left: 1px solid #e2e8f0;
}

.border-r {
  border-right: 1px solid #e2e8f0;
}

.border-primary {
  border-color: var(--color-primary);
}

.section-dark .border {
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .border-t,
.section-dark .border-b,
.section-dark .border-l,
.section-dark .border-r {
  border-color: rgba(255, 255, 255, 0.1);
}

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: 9999px; }

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .no-print {
    display: none;
  }
}

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

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}
.header-buchhalter-hub {
  background: var(--color-bg-primary);
  padding: var(--space-md) 0;
  position: static;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: var(--z-sticky);
}

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

.header-buchhalter-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-buchhalter-hub-brand:hover {
  opacity: 0.85;
}

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

.header-buchhalter-hub-logo-text {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
}

.header-buchhalter-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
}

.header-buchhalter-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.header-buchhalter-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-buchhalter-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.header-buchhalter-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-buchhalter-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
}

.header-buchhalter-hub-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-buchhalter-hub-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-buchhalter-hub-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-buchhalter-hub-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-buchhalter-hub-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 var(--transition-base);
  z-index: var(--z-modal);
  padding-top: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-buchhalter-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-buchhalter-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-buchhalter-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  flex: 1;
  overflow-y: auto;
}

.header-buchhalter-hub-mobile-link {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-buchhalter-hub-mobile-link:hover {
  color: var(--color-primary);
}

.header-buchhalter-hub-mobile-cta {
  display: block;
  margin: auto var(--space-lg) var(--space-lg);
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
}

.header-buchhalter-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-buchhalter-hub {
    padding: var(--space-lg) 0;
  }

  .header-buchhalter-hub-desktop-nav {
    display: flex;
  }

  .header-buchhalter-hub-cta-button {
    display: block;
  }

  .header-buchhalter-hub-mobile-toggle {
    display: none;
  }

  .header-buchhalter-hub-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-buchhalter-hub-container {
    padding: 0 clamp(2rem, 5vw, 3rem);
  }

  .header-buchhalter-hub-nav-link {
    font-size: 1rem;
  }
}

    .ecommerce-accounting-hub {
  width: 100%;
  overflow-x: hidden;
}

.ecommerce-accounting-hub * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2847 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  color: #ffffff;
}

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

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

.hero-title-index {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 400;
}

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

.hero-cta-group-index .btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta-group-index .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-cta-group-index .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e0e7ff;
  color: #e0e7ff;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #60a5fa;
  line-height: 1;
}

.stat-label-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-weight: 500;
}

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.benefits-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: center;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.benefits-subtitle-index {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

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

.benefit-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #0066cc;
}

.card-icon-index {
  font-size: 2.5rem;
  color: #0066cc;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 204, 0.08);
  border-radius: 10px;
}

.card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.card-text-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.about-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.about-description-index {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

.feature-list-item-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 500;
}

.feature-list-item-index i {
  color: #0066cc;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

.partners-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.partners-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partners-title-index {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.partners-subtitle-index {
  font-size: 1rem;
  color: #475569;
}

.partners-logos-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.partner-logo-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  min-width: 130px;
  transition: all 0.3s ease;
}

.partner-logo-item-index:hover {
  border-color: #0066cc;
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.08);
}

.partner-logo-item-index i {
  font-size: 2rem;
  color: #0066cc;
}

.partner-logo-item-index span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

.testimonials-section-index {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

.testimonial-card-index {
  flex: 1 1 320px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote-index i {
  font-size: 1.5rem;
  color: #60a5fa;
  opacity: 0.6;
}

.testimonial-quote-index p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

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

.author-name-index {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.author-role-index {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}

.how-it-works-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.how-it-works-subtitle-index {
  font-size: 1rem;
  color: #475569;
}

.how-it-works-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 1rem;
}

.process-step-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
}

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

.step-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.step-text-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.featured-posts-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.featured-posts-subtitle-index {
  font-size: 1rem;
  color: #475569;
}

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.featured-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #0066cc;
}

.card-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.featured-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card-title-featured-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.card-description-index {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-content-index .btn {
  align-self: flex-start;
  margin-top: auto;
}

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

.cta-final-section-index {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-final-content-index {
  display: flex;
  justify-content: center;
}

.cta-final-box-index {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-final-title-index {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

.cta-final-box-index .btn-large {
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  align-self: center;
  background: #ffffff;
  color: #0066cc;
  font-weight: 600;
}

.cta-final-box-index .btn-large:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.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: clamp(1rem, 2vw, 2rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.25rem, 2vw, 1.75rem);
  background: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.25rem, 2vw, 1.75rem);
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .hero-cta-group-index {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group-index .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    width: 100%;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

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

  .cta-final-box-index .btn-large {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1.5rem;
  }

  .stat-item-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .partners-logos-index {
    gap: 1rem;
  }

  .partner-logo-item-index {
    min-width: 110px;
    padding: 1rem;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

    .footer {
  background: var(--color-bg-primary);
  color: var(--color-text-secondary-dark);
  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(2.5rem, 5vw, 4rem);
}

.footer-about {
  max-width: 420px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.5px;
}

.footer-about p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-nav,
.footer-contact {
  flex: 1;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary-dark);
  font-weight: var(--fw-semibold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.3px;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-legal a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-text-primary-dark);
}

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

.footer-legal {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted-dark);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .footer-sections {
    grid-column: 2;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .footer-nav,
  .footer-contact {
    flex: 1;
  }

  .footer-legal {
    grid-column: 3;
    margin-top: 0;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

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

  .footer-sections {
    grid-column: 2 / 4;
  }

  .footer-legal {
    grid-column: 4;
  }

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

.category-page-ecommerce-accounting {
  background: #ffffff;
  color: #0f172a;
}

.hero-section-ecommerce-accounting {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.hero-content-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-header-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-ecommerce-accounting {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-subtitle-ecommerce-accounting {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  font-weight: 400;
  max-width: 900px;
}

.hero-highlight-ecommerce-accounting {
  background: rgba(0, 102, 204, 0.1);
  border-left: 4px solid #0066cc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.hero-highlight-text-ecommerce-accounting {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #e2e8f0;
  margin: 0;
  font-weight: 400;
}

.posts-section-ecommerce-accounting {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.posts-header-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.posts-title-ecommerce-accounting {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.posts-description-ecommerce-accounting {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #475569;
  font-weight: 400;
  margin: 0;
}

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

.card-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.card-ecommerce-accounting:hover {
  border-color: #0066cc;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-ecommerce-accounting img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-ecommerce-accounting {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

.card-description-ecommerce-accounting {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  flex-grow: 1;
  font-weight: 400;
}

.card-meta-ecommerce-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  color: #64748b;
  border-top: 1px solid #e2e8f0;
  padding-top: clamp(1rem, 2vw, 1.25rem);
}

.card-reading-time-ecommerce-accounting,
.card-level-ecommerce-accounting,
.card-date-ecommerce-accounting {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 500;
}

.card-reading-time-ecommerce-accounting i,
.card-level-ecommerce-accounting i,
.card-date-ecommerce-accounting i {
  color: #0066cc;
  font-size: 0.875rem;
}

.card-link-ecommerce-accounting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  color: #ffffff;
  background: #0066cc;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 100%;
}

.card-link-ecommerce-accounting:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.essentials-section-ecommerce-accounting {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.essentials-content-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.essentials-header-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.essentials-title-ecommerce-accounting {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.essentials-intro-ecommerce-accounting {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-weight: 400;
}

.essentials-list-ecommerce-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.essential-item-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.essential-number-ecommerce-accounting {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0066cc;
  line-height: 1;
}

.essential-name-ecommerce-accounting {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
}

.essential-text-ecommerce-accounting {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-weight: 400;
}

.insights-section-ecommerce-accounting {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.insights-header-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.insights-title-ecommerce-accounting {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.insights-intro-ecommerce-accounting {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

.insights-box-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.insight-item-ecommerce-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-item-ecommerce-accounting:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 204, 0.4);
}

.insight-title-ecommerce-accounting {
  font-size: clamp(1.025rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.insight-text-ecommerce-accounting {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-section-ecommerce-accounting {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }

  .posts-section-ecommerce-accounting {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }

  .posts-grid-ecommerce-accounting {
    flex-direction: column;
  }

  .card-ecommerce-accounting {
    flex: 1 1 100%;
    max-width: none;
  }

  .essentials-list-ecommerce-accounting {
    flex-direction: column;
  }

  .essential-item-ecommerce-accounting {
    flex: 1 1 100%;
    max-width: none;
  }

  .essentials-section-ecommerce-accounting {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }

  .insights-section-ecommerce-accounting {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .card-meta-ecommerce-accounting {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-subtitle-ecommerce-accounting {
    max-width: 100%;
  }

  .posts-header-ecommerce-accounting {
    max-width: 100%;
  }

  .essentials-header-ecommerce-accounting {
    max-width: 100%;
  }

  .insights-header-ecommerce-accounting {
    max-width: 100%;
  }
}

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-grundlagen-ecommerce-buchhaltung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-grundlagen-ecommerce-buchhaltung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-grundlagen-ecommerce-buchhaltung a {
  color: #cbd5e1;
  transition: color 150ms ease;
}

.breadcrumbs-grundlagen-ecommerce-buchhaltung a:hover {
  color: #ffffff;
}

.breadcrumbs-grundlagen-ecommerce-buchhaltung span {
  color: #64748b;
}

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

.hero-text-wrapper-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-grundlagen-ecommerce-buchhaltung {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.meta-item-grundlagen-ecommerce-buchhaltung {
  color: #94a3b8;
}

.meta-divider-grundlagen-ecommerce-buchhaltung {
  color: #64748b;
}

.hero-image-wrapper-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

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

  .hero-text-wrapper-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-grundlagen-ecommerce-buchhaltung {
    font-size: 0.75rem;
  }
}

.intro-section-grundlagen-ecommerce-buchhaltung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-grundlagen-ecommerce-buchhaltung {
    flex-direction: column;
  }

  .intro-text-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-grundlagen-ecommerce-buchhaltung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-paragraph-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-box-grundlagen-ecommerce-buchhaltung {
  background: #e6f0ff;
  border-left: 4px solid #0066cc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-grundlagen-ecommerce-buchhaltung {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.highlight-text-grundlagen-ecommerce-buchhaltung {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-one-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-grundlagen-ecommerce-buchhaltung {
    flex-direction: column;
  }

  .content-text-one-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-one-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-grundlagen-ecommerce-buchhaltung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-text-two-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-list-grundlagen-ecommerce-buchhaltung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-item-grundlagen-ecommerce-buchhaltung::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-wrapper-two-grundlagen-ecommerce-buchhaltung {
    flex-direction: column;
  }

  .content-image-two-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-text-two-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-grundlagen-ecommerce-buchhaltung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-container-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.step-number-grundlagen-ecommerce-buchhaltung {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-grundlagen-ecommerce-buchhaltung {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-grundlagen-ecommerce-buchhaltung {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-three-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-grundlagen-ecommerce-buchhaltung {
    flex-direction: column;
  }

  .content-text-three-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-three-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-grundlagen-ecommerce-buchhaltung {
    font-size: 2rem;
  }
}

.quote-section-grundlagen-ecommerce-buchhaltung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-grundlagen-ecommerce-buchhaltung {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-grundlagen-ecommerce-buchhaltung {
  border-left: none;
  border-top: 4px solid #0066cc;
  padding: 2rem;
  background: transparent;
  font-style: italic;
  margin: 0;
}

.quote-text-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-grundlagen-ecommerce-buchhaltung {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.content-section-four-grundlagen-ecommerce-buchhaltung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-four-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-grid-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tool-card-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 200px;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tool-name-grundlagen-ecommerce-buchhaltung {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.tool-desc-grundlagen-ecommerce-buchhaltung {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-four-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-four-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-four-grundlagen-ecommerce-buchhaltung {
    flex-direction: column;
  }

  .content-text-four-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-four-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tool-card-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 100%;
  }
}

.conclusion-section-grundlagen-ecommerce-buchhaltung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grundlagen-ecommerce-buchhaltung {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-box-grundlagen-ecommerce-buchhaltung {
  background: linear-gradient(135deg, #0066cc, #0052a3);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: #e6f0ff;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-grundlagen-ecommerce-buchhaltung {
  background: #ffffff;
  color: #0066cc;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
  text-decoration: none;
}

.cta-button-grundlagen-ecommerce-buchhaltung:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-grundlagen-ecommerce-buchhaltung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-grundlagen-ecommerce-buchhaltung {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.75;
  color: #cbd5e1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-grundlagen-ecommerce-buchhaltung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-grundlagen-ecommerce-buchhaltung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  text-align: center;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-wrapper-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-grundlagen-ecommerce-buchhaltung {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-grundlagen-ecommerce-buchhaltung:hover {
  border-color: #0066cc;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.related-image-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-grundlagen-ecommerce-buchhaltung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-grundlagen-ecommerce-buchhaltung {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  flex-grow: 1;
}

.related-card-title-grundlagen-ecommerce-buchhaltung {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-grundlagen-ecommerce-buchhaltung {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-grundlagen-ecommerce-buchhaltung {
  color: #0066cc;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 150ms ease;
  align-self: flex-start;
}

.related-card-link-grundlagen-ecommerce-buchhaltung:hover {
  color: #0052a3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-grundlagen-ecommerce-buchhaltung {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

  .related-cards-wrapper-grundlagen-ecommerce-buchhaltung {
    gap: 1.5rem;
  }
}

.main-rechnungsstellung-dokumentation {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-rechnungsstellung-dokumentation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-rechnungsstellung-dokumentation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-rechnungsstellung-dokumentation a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-rechnungsstellung-dokumentation a:hover {
  color: #ffffff;
}

.breadcrumbs-rechnungsstellung-dokumentation span {
  color: #64748b;
}

.hero-title-rechnungsstellung-dokumentation {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-rechnungsstellung-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-rechnungsstellung-dokumentation {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-rechnungsstellung-dokumentation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-rechnungsstellung-dokumentation i {
  color: #0066cc;
  font-size: 1rem;
}

.hero-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-rechnungsstellung-dokumentation,
  .hero-image-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-rechnungsstellung-dokumentation {
    gap: 1rem;
  }
}

.intro-section-rechnungsstellung-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.requirements-section-rechnungsstellung-dokumentation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.requirements-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.requirements-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.requirements-intro-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.requirements-list-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.requirement-item-rechnungsstellung-dokumentation {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.requirement-number-rechnungsstellung-dokumentation {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0066cc;
  flex-shrink: 0;
  min-width: 50px;
}

.requirement-text-rechnungsstellung-dokumentation {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
}

.requirement-text-rechnungsstellung-dokumentation strong {
  color: #ffffff;
  font-weight: 600;
}

.requirements-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .requirements-content-rechnungsstellung-dokumentation {
    flex-direction: column;
  }

  .requirements-text-rechnungsstellung-dokumentation,
  .requirements-image-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.details-section-rechnungsstellung-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-content-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.details-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.details-intro-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.details-list-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.detail-item-rechnungsstellung-dokumentation {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.detail-number-rechnungsstellung-dokumentation {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0066cc;
  flex-shrink: 0;
  min-width: 50px;
}

.detail-text-rechnungsstellung-dokumentation {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
}

.detail-text-rechnungsstellung-dokumentation strong {
  color: #0f172a;
  font-weight: 600;
}

.pro-tip-rechnungsstellung-dokumentation {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #0066cc;
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.pro-tip-text-rechnungsstellung-dokumentation {
  color: #0f172a;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.details-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .details-content-rechnungsstellung-dokumentation {
    flex-direction: column;
  }

  .details-text-rechnungsstellung-dokumentation,
  .details-image-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.documentation-section-rechnungsstellung-dokumentation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.documentation-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.documentation-header-rechnungsstellung-dokumentation {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.documentation-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documentation-subtitle-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documentation-paragraph-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documentation-subheading-rechnungsstellung-dokumentation {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.documentation-list-rechnungsstellung-dokumentation {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.documentation-list-item-rechnungsstellung-dokumentation {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 1.75rem;
  position: relative;
}

.documentation-list-item-rechnungsstellung-dokumentation::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.documentation-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.tools-section-rechnungsstellung-dokumentation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: column;
}

.tools-header-rechnungsstellung-dokumentation {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tools-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-subtitle-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-grid-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tool-card-rechnungsstellung-dokumentation {
  flex: 1 1 280px;
  max-width: 300px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tool-card-rechnungsstellung-dokumentation:hover {
  border-color: #0066cc;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tool-icon-rechnungsstellung-dokumentation {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #0066cc;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tool-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tool-text-rechnungsstellung-dokumentation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .tools-grid-rechnungsstellung-dokumentation {
    flex-direction: column;
    align-items: stretch;
  }

  .tool-card-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-rechnungsstellung-dokumentation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-rechnungsstellung-dokumentation {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-checklist-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(0, 102, 204, 0.08);
  border-left: 4px solid #0066cc;
  border-radius: 8px;
}

.checklist-item-rechnungsstellung-dokumentation {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
}

.checklist-item-rechnungsstellung-dokumentation i {
  color: #0066cc;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.conclusion-final-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-img-rechnungsstellung-dokumentation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-rechnungsstellung-dokumentation {
    flex-direction: column;
  }

  .conclusion-text-rechnungsstellung-dokumentation,
  .conclusion-image-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-rechnungsstellung-dokumentation {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  border-left: 4px solid #0066cc;
}

.disclaimer-icon-rechnungsstellung-dokumentation {
  font-size: 1.75rem;
  color: #0066cc;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-rechnungsstellung-dokumentation {
  flex: 1;
}

.disclaimer-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-paragraph-rechnungsstellung-dokumentation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .disclaimer-content-rechnungsstellung-dokumentation {
    flex-direction: column;
  }

  .disclaimer-icon-rechnungsstellung-dokumentation {
    font-size: 1.5rem;
  }
}

.related-section-rechnungsstellung-dokumentation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: column;
}

.related-header-rechnungsstellung-dokumentation {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.related-title-rechnungsstellung-dokumentation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-rechnungsstellung-dokumentation {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-rechnungsstellung-dokumentation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-rechnungsstellung-dokumentation {
  flex: 1 1 300px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.related-card-rechnungsstellung-dokumentation:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.related-card-image-rechnungsstellung-dokumentation {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}

.related-card-image-rechnungsstellung-dokumentation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-rechnungsstellung-dokumentation {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-rechnungsstellung-dokumentation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-rechnungsstellung-dokumentation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .related-card-rechnungsstellung-dokumentation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-rechnungsstellung-dokumentation,
  .intro-content-rechnungsstellung-dokumentation,
  .requirements-content-rechnungsstellung-dokumentation,
  .details-content-rechnungsstellung-dokumentation,
  .documentation-content-rechnungsstellung-dokumentation,
  .conclusion-content-rechnungsstellung-dokumentation {
    gap: 1rem;
  }

  .hero-meta-rechnungsstellung-dokumentation {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .requirement-item-rechnungsstellung-dokumentation,
  .detail-item-rechnungsstellung-dokumentation {
    gap: 0.75rem;
  }

  .requirement-number-rechnungsstellung-dokumentation,
  .detail-number-rechnungsstellung-dokumentation {
    min-width: 40px;
  }
}

.main-steuern-online-shops {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
}

.hero-section-steuern-online-shops {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-steuern-online-shops {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-steuern-online-shops {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-steuern-online-shops {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-steuern-online-shops {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-steuern-online-shops {
  color: #475569;
}

.hero-image-wrapper-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-steuern-online-shops {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.breadcrumbs-steuern-online-shops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumbs-steuern-online-shops a {
  color: #0066cc;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-steuern-online-shops a:hover {
  color: #0052a3;
  text-decoration: underline;
}

.breadcrumbs-steuern-online-shops span {
  color: #94a3b8;
}

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

  .hero-text-wrapper-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-steuern-online-shops {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-steuern-online-shops {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-steuern-online-shops {
    flex-direction: column;
  }

  .intro-text-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.umsatzsteuer-section-steuern-online-shops {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.umsatzsteuer-content-steuern-online-shops {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.umsatzsteuer-text-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.umsatzsteuer-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.umsatzsteuer-paragraph-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.umsatzsteuer-highlight-steuern-online-shops {
  background: #e6f0ff;
  border-left: 4px solid #0066cc;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-steuern-online-shops {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.6;
}

.umsatzsteuer-image-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.umsatzsteuer-image-element-steuern-online-shops {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .umsatzsteuer-content-steuern-online-shops {
    flex-direction: column;
  }

  .umsatzsteuer-text-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .umsatzsteuer-image-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.einkommen-section-steuern-online-shops {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.einkommen-content-steuern-online-shops {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.einkommen-image-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.einkommen-image-element-steuern-online-shops {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.einkommen-text-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.einkommen-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.einkommen-paragraph-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .einkommen-content-steuern-online-shops {
    flex-direction: column;
  }

  .einkommen-image-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .einkommen-text-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.dokumentation-section-steuern-online-shops {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.dokumentation-header-steuern-online-shops {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.dokumentation-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dokumentation-subtitle-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.dokumentation-cards-steuern-online-shops {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.dokumentation-card-steuern-online-shops {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: all 250ms ease;
}

.dokumentation-card-steuern-online-shops:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.card-number-steuern-online-shops {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 1rem;
  line-height: 1;
}

.card-title-steuern-online-shops {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.card-text-steuern-online-shops {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dokumentation-card-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-steuern-online-shops {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-steuern-online-shops {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-paragraph-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tools-list-steuern-online-shops {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tools-list-item-steuern-online-shops {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.tools-list-item-steuern-online-shops::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
}

.tools-image-steuern-online-shops {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-element-steuern-online-shops {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .tools-content-steuern-online-shops {
    flex-direction: column;
  }

  .tools-text-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-image-steuern-online-shops {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fazit-section-steuern-online-shops {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fazit-content-steuern-online-shops {
  max-width: 800px;
  margin: 0 auto;
}

.fazit-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fazit-box-steuern-online-shops {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
}

.fazit-text-steuern-online-shops {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fazit-checklist-steuern-online-shops {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.fazit-item-steuern-online-shops {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.fazit-item-steuern-online-shops::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.disclaimer-section-steuern-online-shops {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-steuern-online-shops {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-steuern-online-shops {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-steuern-online-shops {
  font-size: 1.125rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.disclaimer-text-steuern-online-shops {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #b45309;
  line-height: 1.7;
}

.related-section-steuern-online-shops {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-steuern-online-shops {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-steuern-online-shops {
  flex: 1 1 calc(33.333% - 1.3rem);
  max-width: calc(33.333% - 1.3rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-steuern-online-shops:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.related-image-wrapper-steuern-online-shops {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-steuern-online-shops {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-steuern-online-shops {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-steuern-online-shops {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-steuern-online-shops {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.related-card-link-steuern-online-shops {
  display: inline-block;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease;
  margin-top: auto;
}

.related-card-link-steuern-online-shops:hover {
  color: #0052a3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-steuern-online-shops {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }
}

.main-finanzplanung-digitale-verkaeufe {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
}

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

.hero-section-finanzplanung-digitale-verkaeufe {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2540 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-text-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-finanzplanung-digitale-verkaeufe a {
  color: #cbd5e1;
  transition: color 150ms ease;
  text-decoration: none;
}

.breadcrumbs-finanzplanung-digitale-verkaeufe a:hover {
  color: #ffffff;
}

.breadcrumbs-finanzplanung-digitale-verkaeufe span {
  color: #64748b;
}

.hero-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-finanzplanung-digitale-verkaeufe {
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-finanzplanung-digitale-verkaeufe {
  color: #475569;
}

.hero-stats-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
}

.stat-label-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-finanzplanung-digitale-verkaeufe,
  .hero-image-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-finanzplanung-digitale-verkaeufe {
    gap: 1.5rem;
  }
}

.intro-section-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-finanzplanung-digitale-verkaeufe {
    flex-direction: column;
  }

  .intro-text-block-finanzplanung-digitale-verkaeufe,
  .intro-image-block-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.planning-section-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.planning-text-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.planning-image-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.planning-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.planning-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.planning-list-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.planning-item-finanzplanung-digitale-verkaeufe {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0066cc;
}

.planning-item-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.planning-item-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
}

.planning-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .planning-content-finanzplanung-digitale-verkaeufe {
    flex-direction: column;
  }

  .planning-text-block-finanzplanung-digitale-verkaeufe,
  .planning-image-block-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methods-image-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.methods-text-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.methods-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.methods-subheading-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.methods-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .methods-content-finanzplanung-digitale-verkaeufe {
    flex-direction: column;
  }

  .methods-image-block-finanzplanung-digitale-verkaeufe,
  .methods-text-block-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.costs-section-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.costs-content-finanzplanung-digitale-verkaeufe {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.costs-text-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.costs-image-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.costs-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.costs-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.costs-cards-finanzplanung-digitale-verkaeufe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cost-card-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
}

.cost-card-finanzplanung-digitale-verkaeufe:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.cost-card-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cost-card-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #475569;
}

.costs-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .costs-content-finanzplanung-digitale-verkaeufe {
    flex-direction: column;
  }

  .costs-text-block-finanzplanung-digitale-verkaeufe,
  .costs-image-block-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .costs-cards-finanzplanung-digitale-verkaeufe {
    grid-template-columns: 1fr;
  }
}

.profit-section-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.profit-image-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.profit-text-block-finanzplanung-digitale-verkaeufe {
  flex: 1 1 50%;
  max-width: 50%;
}

.profit-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.profit-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.profit-formula-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0066cc;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.formula-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  color: #0f172a;
  font-weight: 500;
}

.profit-tip-finanzplanung-digitale-verkaeufe {
  background: rgba(0, 102, 204, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0066cc;
}

.profit-tip-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  color: #0f172a;
}

.profit-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .profit-content-finanzplanung-digitale-verkaeufe {
    flex-direction: column;
  }

  .profit-image-block-finanzplanung-digitale-verkaeufe,
  .profit-text-block-finanzplanung-digitale-verkaeufe {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-finanzplanung-digitale-verkaeufe {
  text-align: center;
}

.conclusion-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.conclusion-paragraph-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.conclusion-steps-finanzplanung-digitale-verkaeufe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-box-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 250ms ease;
}

.step-box-finanzplanung-digitale-verkaeufe:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number-finanzplanung-digitale-verkaeufe {
  display: inline-block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0066cc;
  margin-bottom: 0.75rem;
}

.step-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #475569;
}

.conclusion-quote-finanzplanung-digitale-verkaeufe {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2540 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
}

.disclaimer-section-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.7;
  color: #475569;
}

.related-section-finanzplanung-digitale-verkaeufe {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-finanzplanung-digitale-verkaeufe {
  text-align: center;
}

.related-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.related-cards-finanzplanung-digitale-verkaeufe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-finanzplanung-digitale-verkaeufe {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 250ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-finanzplanung-digitale-verkaeufe:hover {
  border-color: #0066cc;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-finanzplanung-digitale-verkaeufe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.related-card-finanzplanung-digitale-verkaeufe:hover .related-img-finanzplanung-digitale-verkaeufe {
  transform: scale(1.05);
}

.related-card-content-finanzplanung-digitale-verkaeufe {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-finanzplanung-digitale-verkaeufe {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  text-align: left;
}

.related-card-text-finanzplanung-digitale-verkaeufe {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #475569;
  text-align: left;
  flex-grow: 1;
}

.related-card-link-finanzplanung-digitale-verkaeufe {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color 150ms ease;
  text-align: left;
}

.related-card-link-finanzplanung-digitale-verkaeufe:hover {
  color: #0052a3;
}

@media (max-width: 768px) {
  .conclusion-steps-finanzplanung-digitale-verkaeufe {
    grid-template-columns: 1fr;
  }

  .related-cards-finanzplanung-digitale-verkaeufe {
    grid-template-columns: 1fr;
  }
}

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: #0052a3;
}

img {
  max-width: 100%;
  height: auto;
}

.ecommerce-accounting-story-about {
      background: var(--color-bg-secondary);
      color: var(--color-text-primary-light);
      font-family: var(--font-primary);
      overflow: hidden;
    }

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

    .hero-section-accounting-about {
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

    .hero-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2rem, 4vw, 3rem);
      align-items: center;
    }

    .hero-text-block-accounting-about {
      text-align: center;
      max-width: 800px;
    }

    .hero-title-accounting-about {
      font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
      font-weight: 700;
      color: var(--color-text-primary-light);
      line-height: var(--lh-tight);
      margin-bottom: 1.5rem;
      font-family: var(--font-heading);
    }

    .hero-subtitle-accounting-about {
      font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-normal);
      margin-bottom: 2rem;
    }

    .hero-stats-accounting-about {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(2rem, 4vw, 3rem);
      margin: 2rem 0;
    }

    .stat-item-accounting-about {
      text-align: center;
      flex: 1 1 200px;
      min-width: 150px;
    }

    .stat-number-accounting-about {
      display: block;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--color-primary);
      line-height: var(--lh-tight);
      margin-bottom: 0.5rem;
    }

    .stat-label-accounting-about {
      display: block;
      font-size: clamp(0.875rem, 1vw, 1rem);
      color: var(--color-text-muted-light);
      font-weight: 500;
    }

    .hero-visual-accounting-about {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: var(--shadow-lg);
    }

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

    .story-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .story-header-accounting-about {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .section-tag-accounting-about {
      display: inline-block;
      padding: 0.5rem 1.25rem;
      background: rgba(0, 102, 204, 0.1);
      color: var(--color-primary);
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .section-title-accounting-about {
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
      font-weight: 700;
      color: var(--color-text-primary-light);
      line-height: var(--lh-tight);
      margin-bottom: 1.5rem;
      font-family: var(--font-heading);
    }

    .section-subtitle-accounting-about {
      font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-normal);
      max-width: 700px;
      margin: 0 auto;
    }

    .story-text-accounting-about {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .story-paragraph-accounting-about {
      font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-relaxed);
    }

    .story-image-accounting-about {
      width: 100%;
      max-width: 700px;
      height: auto;
      border-radius: 12px;
      display: block;
      margin: 2rem auto;
      box-shadow: var(--shadow-md);
    }

    .services-section-accounting-about {
      background: #f9fafb;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

    .services-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2.5rem, 5vw, 3.5rem);
    }

    .services-header-accounting-about {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .services-cards-accounting-about {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      justify-content: center;
    }

    .service-card-accounting-about {
      flex: 1 1 280px;
      max-width: 380px;
      background: var(--color-bg-secondary);
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    .service-card-accounting-about:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .card-icon-accounting-about {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: rgba(0, 102, 204, 0.1);
      color: var(--color-primary);
      border-radius: 8px;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .card-title-accounting-about {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 600;
      color: var(--color-text-primary-light);
      margin-bottom: 0.75rem;
      line-height: var(--lh-tight);
    }

    .card-text-accounting-about {
      font-size: clamp(0.9rem, 1vw, 1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-normal);
    }

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

    .approach-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2.5rem, 5vw, 3.5rem);
    }

    .approach-header-accounting-about {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .process-steps-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2rem, 4vw, 3rem);
      max-width: 900px;
      margin: 0 auto;
    }

    .process-step-accounting-about {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 3rem);
      align-items: flex-start;
    }

    .step-number-accounting-about {
      flex-shrink: 0;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--color-primary);
      line-height: var(--lh-tight);
      min-width: 80px;
    }

    .step-content-accounting-about {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .step-title-accounting-about {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 600;
      color: var(--color-text-primary-light);
      line-height: var(--lh-tight);
    }

    .step-text-accounting-about {
      font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-relaxed);
    }

    .approach-visual-accounting-about {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 12px;
      display: block;
      margin: 2rem auto 0;
      box-shadow: var(--shadow-md);
    }

    .values-section-accounting-about {
      background: #f9fafb;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

    .values-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: clamp(2.5rem, 5vw, 3.5rem);
    }

    .values-header-accounting-about {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .values-grid-accounting-about {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .value-item-accounting-about {
      flex: 1 1 250px;
      max-width: 320px;
      padding: clamp(1.5rem, 3vw, 2rem);
      background: var(--color-bg-secondary);
      border-left: 4px solid var(--color-primary);
      border-radius: 4px;
    }

    .value-heading-accounting-about {
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      font-weight: 600;
      color: var(--color-text-primary-light);
      margin-bottom: 0.75rem;
      line-height: var(--lh-tight);
    }

    .value-text-accounting-about {
      font-size: clamp(0.9rem, 1vw, 1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-normal);
    }

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

    .quote-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .featured-quote-accounting-about {
      padding: clamp(2rem, 4vw, 3rem);
      border-left: 5px solid var(--color-primary);
      background: #f9fafb;
      border-radius: 4px;
    }

    .quote-text-accounting-about {
      font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);
      color: var(--color-text-primary-light);
      font-style: italic;
      line-height: var(--lh-relaxed);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .quote-author-accounting-about {
      font-size: clamp(0.9rem, 1vw, 1rem);
      color: var(--color-text-secondary-light);
      font-style: normal;
      font-weight: 500;
    }

    .disclaimer-section-accounting-about {
      background: #f3f4f6;
      padding: clamp(2.5rem, 6vw, 4rem) 0;
      overflow: hidden;
    }

    .disclaimer-content-accounting-about {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .disclaimer-header-accounting-about {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .disclaimer-icon-accounting-about {
      color: var(--color-primary);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .disclaimer-title-accounting-about {
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 600;
      color: var(--color-text-primary-light);
      line-height: var(--lh-tight);
    }

    .disclaimer-text-accounting-about {
      font-size: clamp(0.875rem, 1vw, 1rem);
      color: var(--color-text-secondary-light);
      line-height: var(--lh-relaxed);
      max-width: 850px;
    }

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

      .step-number-accounting-about {
        min-width: auto;
      }

      .hero-stats-accounting-about {
        gap: 1.5rem;
      }

      .stat-item-accounting-about {
        flex: 1 1 100px;
        min-width: 100px;
      }
    }

    @media (max-width: 1024px) {
      .hero-stats-accounting-about {
        gap: clamp(1.5rem, 3vw, 2rem);
      }

      .services-cards-accounting-about {
        gap: clamp(1rem, 2vw, 1.5rem);
      }

      .service-card-accounting-about {
        flex: 1 1 240px;
        max-width: 100%;
      }
    }

.faq-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0, 102, 204, 0.3);
  background-color: rgba(0, 102, 204, 0.02);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary-dark);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-primary);
}

.faq-trigger:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
  line-height: var(--lh-tight);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-text-secondary-dark);
  transition: transform var(--transition-base);
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-trigger {
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: rgba(0, 102, 204, 0.03);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

.faq-answer p:first-child {
  padding-top: var(--space-lg);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-trigger {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-answer p {
    padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
    font-size: 1.0625rem;
  }

  .faq-answer p:first-child {
    padding-top: var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-block;
  line-height: var(--lh-tight);
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-cta-button:active {
  transform: translateY(0);
}

.faq-cta-button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-title {
    margin-bottom: var(--space-lg);
  }

  .faq-cta-text {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .faq-trigger {
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
  }

  .faq-answer p {
    padding: 0 var(--space-sm) var(--space-md) var(--space-sm);
    font-size: 0.95rem;
  }

  .faq-answer p:first-child {
    padding-top: var(--space-md);
  }

  .faq-cta-button {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

.services-page {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary-dark);
    font-family: var(--font-primary);
  }

  .services-hero {
    background-color: var(--color-bg-primary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .services-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary-dark);
    margin: 0 0 var(--space-md) 0;
    line-height: var(--lh-tight);
    letter-spacing: -0.5px;
  }

  .services-hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-secondary-dark);
    margin: 0;
    line-height: var(--lh-normal);
    font-weight: var(--fw-regular);
  }

  .services-content {
    background-color: var(--color-bg-primary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .service-card {
    background-color: var(--color-bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
  }

  .service-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
  }

  .service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary-dark);
    font-size: 1.5rem;
  }

  .service-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary-dark);
    margin: 0 0 var(--space-sm) 0;
    line-height: var(--lh-tight);
  }

  .service-card-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-text-secondary-dark);
    margin: 0;
    line-height: var(--lh-relaxed);
  }

  .services-cta {
    background-color: var(--color-bg-secondary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .services-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary-light);
    margin: 0 0 var(--space-md) 0;
    line-height: var(--lh-tight);
  }

  .services-cta-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-light);
    margin: 0 0 var(--space-lg) 0;
    line-height: var(--lh-normal);
  }

  .services-cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-primary-dark);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid var(--color-primary);
  }

  .services-cta-button:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 640px) {
    .services-hero {
      padding: var(--space-3xl) var(--space-lg);
    }

    .services-content {
      padding: var(--space-3xl) var(--space-lg);
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

    .services-cta {
      padding: var(--space-3xl) var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .services-hero {
      padding: var(--space-4xl) var(--space-lg);
    }

    .services-content {
      padding: var(--space-4xl) var(--space-lg);
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2xl);
    }

    .service-card {
      padding: var(--space-xl);
    }

    .services-cta {
      padding: var(--space-4xl) var(--space-lg);
    }
  }

  @media (min-width: 1280px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  overflow: hidden;
}

.legal-docs main {
  width: 100%;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-xl);
  font-weight: var(--fw-regular);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-regular);
}

.legal-docs ul,
.legal-docs ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.legal-docs .section {
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-light);
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary-light);
}

.legal-docs .contact-section strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary-light);
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  line-height: var(--lh-normal);
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  animation: scaleIn 0.5s ease-out 0.1s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  display: block;
}

@media (min-width: 768px) {
  .thank-icon {
    margin-bottom: var(--space-xl);
  }

  .thank-icon svg {
    width: 100px;
    height: 100px;
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

@media (min-width: 768px) {
  .thank-title {
    margin-bottom: var(--space-lg);
  }
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .thank-subtitle {
    margin-bottom: var(--space-lg);
  }
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .thank-description {
    margin-bottom: var(--space-2xl);
  }
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .thank-checklist {
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
  }
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.checklist-item:hover {
  background-color: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .checklist-item {
    padding: var(--space-lg);
  }
}

.checklist-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .checklist-item svg {
    width: 28px;
    height: 28px;
  }
}

.checklist-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  font-weight: var(--fw-medium);
  text-align: left;
}

.thank-note {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

@media (min-width: 768px) {
  .thank-note {
    margin-bottom: var(--space-3xl);
  }
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: var(--space-lg) var(--space-2xl);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
}

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

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

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
}

@media (min-width: 768px) {
  .btn-large {
    padding: var(--space-xl) var(--space-3xl);
  }
}

@media (max-width: 480px) {
  .thank-wrapper {
    padding: var(--space-sm);
  }

  .btn {
    width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: var(--z-base);
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
  perspective: 1000px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 80vw, 500px);
  height: clamp(300px, 80vw, 500px);
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: var(--z-hide);
  opacity: 0.15;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.25;
  }
}

.error-message {
  margin-bottom: var(--space-2xl);
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  margin-bottom: var(--space-2xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  gap: var(--space-xs);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}

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

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}

.suggestions-label {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  line-height: var(--lh-normal);
}

.bullet {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  display: inline-block;
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .error-visual {
    margin-bottom: var(--space-4xl);
  }
  
  .error-message {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .btn-primary:hover {
    transform: translateY(-4px);
  }
}

.contact-get-started-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  overflow: hidden;
}

.contact-get-started-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-get-started-hero-content {
  text-align: center;
}

.contact-get-started-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.contact-get-started-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-hero {
    padding: 6rem 0;
  }
}

.contact-get-started-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-get-started-main-content {
  width: 100%;
}

.contact-get-started-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-get-started-form-wrapper {
    flex: 1 1 45%;
    max-width: none;
  }

  .contact-get-started-info-wrapper {
    flex: 1 1 45%;
    max-width: none;
  }

  .contact-get-started-grid {
    gap: 4rem;
  }
}

.contact-get-started-form-header {
  margin-bottom: var(--space-lg);
}

.contact-get-started-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.contact-get-started-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-get-started-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-get-started-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary-dark);
  display: block;
}

.contact-get-started-input,
.contact-get-started-textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
}

.contact-get-started-input::placeholder,
.contact-get-started-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-get-started-input:focus,
.contact-get-started-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-get-started-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-get-started-form-consent {
  margin-top: var(--space-sm);
}

.contact-get-started-consent-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted-dark);
  line-height: var(--lh-normal);
}

.contact-get-started-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--fw-semibold);
}

.contact-get-started-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-submit {
  width: 100%;
  padding: 1rem var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.contact-get-started-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.contact-get-started-submit:active {
  transform: translateY(0);
}

.contact-get-started-info-header {
  margin-bottom: var(--space-lg);
}

.contact-get-started-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.contact-get-started-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

.contact-get-started-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.contact-get-started-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-get-started-info-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 204, 0.3);
}

.contact-get-started-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-started-info-content {
  flex: 1;
}

.contact-get-started-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-xs);
}

.contact-get-started-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-normal);
}

.contact-get-started-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-get-started-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-hours {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted-dark);
  margin: var(--space-xs) 0 0 0;
  line-height: var(--lh-normal);
}

.contact-get-started-info-benefits {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 166, 107, 0.05) 100%);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: var(--radius-lg);
}

.contact-get-started-benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
}

.contact-get-started-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-get-started-benefit-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: var(--lh-normal);
}

.contact-get-started-benefit-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-secondary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .contact-get-started-main {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-main {
    padding: 6rem 0;
  }
}

.contact-get-started-cta {
  background-color: rgba(0, 102, 204, 0.08);
  border-top: 1px solid rgba(0, 102, 204, 0.2);
  border-bottom: 1px solid rgba(0, 102, 204, 0.2);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-get-started-cta-content {
  text-align: center;
}

.contact-get-started-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.contact-get-started-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: var(--lh-relaxed);
}

.contact-get-started-cta-button {
  padding: 1rem 2.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.contact-get-started-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.contact-get-started-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .contact-get-started-cta {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-cta {
    padding: 5rem 0;
  }
}

@media (max-width: 1023px) {
  .contact-get-started-grid {
    flex-direction: column;
  }

  .contact-get-started-form-wrapper,
  .contact-get-started-info-wrapper {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .contact-get-started-info-item {
    padding: var(--space-md);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-get-started-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .contact-get-started-form {
    gap: var(--space-sm);
  }

  .contact-get-started-submit {
    padding: 0.875rem var(--space-md);
  }
}