
    @import url('https://fonts.googleapis.com/css2?family=Poppins: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-primary-light: #0f172a;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #78909c;
  
  
  --color-primary: #0066ff;
  --color-primary-hover: #0052cc;
  --color-secondary: #00d4ff;
  --color-accent-success: #10b981;
  --color-accent-warning: #f59e0b;
  --color-accent-error: #ef4444;
  
  
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-border-light: #e2e8f0;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  font-weight: 400;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
  transform: translateX(2px);
}

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

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

.hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, #0f172a 100%);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) var(--space-lg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__subtitle {
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__title {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.hero__description {
  color: var(--color-text-secondary-dark);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  text-transform: none;
  letter-spacing: 0.5px;
}

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

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

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

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

.btn-tertiary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  border: 2px solid var(--color-border-light);
}

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

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

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

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

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

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

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

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

.section-tertiary h2 {
  color: var(--color-text-primary-light);
}

.section-tertiary p {
  color: var(--color-text-secondary-light);
}

.section-dark {
  background: #1e293b;
  color: var(--color-text-primary-dark);
}

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

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

.section-dark a {
  color: var(--color-secondary);
}

.section-dark a:hover {
  color: #00e5ff;
}

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

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

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

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

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

.card {
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

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

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-primary-dark);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

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

.card-dark h3 {
  color: var(--color-text-primary-dark);
}

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

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

.feature {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.feature__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.feature-light .feature__icon {
  background: #f0f4ff;
  color: var(--color-primary);
}

.feature-dark .feature__icon {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-secondary);
}

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

.feature-light .feature__content p {
  color: var(--color-text-secondary-light);
}

.feature-dark .feature__content p {
  color: var(--color-text-secondary-dark);
}

.list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.list__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  align-items: flex-start;
}

.list__item::before {
  content: '';
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.list-light .list__item::before {
  color: var(--color-accent-success);
}

.list-dark .list__item::before {
  color: var(--color-secondary);
}

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

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

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

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

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

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

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

.section-header__subtitle {
  color: var(--color-text-secondary-light);
  font-size: 1.1rem;
  max-width: 700px;
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(0, 212, 255, 0.1);
  color: var(--color-secondary);
}

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

.divider {
  height: 1px;
  background: var(--color-border-light);
  margin: var(--space-xl) 0;
}

.section-dark .divider {
  background: var(--color-border-dark);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: var(--space-2xl) var(--space-lg);
    min-height: auto;
  }

  .hero__description {
    font-size: 1rem;
  }

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }

  button,
  a,
  .card {
    transition: all 0.3s ease;
  }
}

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

  .hero,
  .section-dark {
    background: #ffffff;
    color: #000000;
  }

  button,
  .btn {
    border: 1px solid #000000;
  }
}
.header-buchalter-pro {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-dark);
  position: static;
  z-index: 100;
  width: 100%;
}

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

.header-buchalter-pro-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.header-buchalter-pro-brand:hover {
  opacity: 0.85;
}

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

.header-buchalter-pro-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
}

.header-buchalter-pro-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: clamp(2rem, 5vw, 3rem);
}

.header-buchalter-pro-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.header-buchalter-pro-nav-link:hover {
  color: var(--color-secondary);
}

.header-buchalter-pro-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.header-buchalter-pro-nav-link:hover::after {
  width: 100%;
}

.header-buchalter-pro-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

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

.header-buchalter-pro-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  z-index: 101;
  transition: opacity 0.3s ease;
}

.header-buchalter-pro-mobile-toggle:hover {
  opacity: 0.7;
}

.header-buchalter-pro-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-buchalter-pro-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

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

.header-buchalter-pro-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
}

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

.header-buchalter-pro-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-border-dark);
}

.header-buchalter-pro-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary-dark);
  font-size: 1.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.header-buchalter-pro-mobile-close:hover {
  opacity: 0.7;
}

.header-buchalter-pro-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  overflow-y: auto;
  flex: 1;
}

.header-buchalter-pro-mobile-link {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: color 0.3s ease;
}

.header-buchalter-pro-mobile-link:hover {
  color: var(--color-secondary);
}

.header-buchalter-pro-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.header-buchalter-pro-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-buchalter-pro-mobile-toggle {
    display: none;
  }

  .header-buchalter-pro-mobile-menu {
    display: none;
  }

  .header-buchalter-pro-desktop-nav {
    display: flex;
  }

  .header-buchalter-pro-cta-button {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header-buchalter-pro-nav-link {
    font-size: 1rem;
  }

  .header-buchalter-pro-desktop-nav {
    gap: 3rem;
  }
}

    .datev-hub {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero-text-index {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 1024px) {
  .hero-text-index {
    flex: 1 1 45%;
  }
}

.hero-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.hero-description-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  max-width: 600px;
  line-height: 1.7;
}

.hero-cta-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0066ff;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-index {
  flex: 1 1 100%;
  min-width: 280px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-index {
    display: block;
    flex: 1 1 45%;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: #0066ff;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00d4ff;
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

.btn-tertiary {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.btn-tertiary:hover {
  background: #f8fafc;
  border-color: #0066ff;
  transform: translateY(-2px);
}

.features-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.features-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 102, 255, 0.1);
  color: #0066ff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.card-icon-index {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  font-size: 1.75rem;
  color: #0066ff;
}

.card-title-index {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.about-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.about-text-index {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 1024px) {
  .about-text-index {
    flex: 1 1 45%;
  }
}

.about-title-index {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: 'Playfair Display', serif;
}

.about-description-index {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #475569;
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.about-list-index {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.list-item-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #334155;
}

.check-icon-index {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-text-index {
  line-height: 1.6;
}

.about-image-index {
  flex: 1 1 100%;
  min-width: 280px;
  display: none;
}

@media (min-width: 1024px) {
  .about-image-index {
    display: block;
    flex: 1 1 45%;
  }
}

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

.process-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.process-header-index {
  text-align: center;
}

.process-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.process-step-index {
  flex: 1 1 100%;
  min-width: 250px;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .process-step-index {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (min-width: 1024px) {
  .process-step-index {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0066ff;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-index {
  flex: 1;
}

.step-title-index {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

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

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

.posts-header-index {
  text-align: center;
}

.posts-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.posts-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

.post-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card-index:hover .post-img-index {
  transform: scale(1.05);
}

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

.post-card-title-index {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

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

.post-link-index {
  color: #0066ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-link-index:hover {
  color: #0052cc;
  transform: translateX(4px);
}

.posts-footer-index {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonials-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.testimonials-header-index {
  text-align: center;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}

.testimonial-quote-index {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #334155;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid #e2e8f0;
}

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

.cta-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 12px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.cta-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.partners-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.partners-header-index {
  text-align: center;
}

.partners-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.partners-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.partner-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}

.partner-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 2vw, 1.25rem);
  font-size: 1.5rem;
  color: #0066ff;
}

.partner-title-index {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

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

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  margin: 0;
  flex: 1 1 100%;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cookie-banner-text-index {
    flex: 1 1 auto;
    text-align: left;
  }
}

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

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

.cookie-btn-accept-index {
  background: #0066ff;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .hero-section-index {
    min-height: auto;
    padding: clamp(3rem, 8vw, 4rem) 0;
  }

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

  .hero-cta-index .btn {
    width: 100%;
  }

  .hero-stats-index {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .features-cards-index {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card-index {
    max-width: none;
  }

  .about-content-index {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .process-steps-index {
    flex-direction: column;
  }

  .process-step-index {
    flex: 1 1 100%;
  }

  .partners-grid-index {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-card-index {
    max-width: none;
  }

  .testimonials-grid-index {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-card-index {
    max-width: none;
  }

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

  .post-card-index {
    max-width: none;
  }
}

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

  .stat-number-index {
    font-size: 1.5rem;
  }

  .stat-label-index {
    font-size: 0.75rem;
  }

  .cookie-banner {
    padding: 0.75rem;
  }

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 48%;
  }
}

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

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

.footer-content {
  display: block;
}

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal,
.footer-copyright {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-about:last-child {
  margin-bottom: 0;
}

.footer h3 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

.footer-about p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--color-text-muted-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

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

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3.5rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 1 1 280px;
    margin-bottom: 0;
  }

  .footer-nav {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .footer-contact {
    flex: 1 1 240px;
    margin-bottom: 0;
  }

  .footer-legal {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .footer-copyright {
    flex: 1 1 100%;
    margin-bottom: 0;
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-links-grid {
    gap: 0.5rem;
  }

  .footer-legal-links {
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 320px;
  }

  .footer-contact {
    flex: 1 1 260px;
  }
}
    

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

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

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

@media (min-width: 1024px) {
  .hero-content-datev-accounting-system {
    flex-direction: row;
    align-items: center;
  }
}

.hero-header-datev-accounting-system {
  flex: 1 1 100%;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-header-datev-accounting-system {
    flex: 1 1 50%;
    max-width: none;
  }
}

.hero-badge-datev-accounting-system {
  display: inline-block;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-datev-accounting-system {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description-datev-accounting-system {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-visual-datev-accounting-system {
  flex: 1 1 100%;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-visual-datev-accounting-system {
    flex: 1 1 50%;
    max-width: none;
  }
}

.hero-image-datev-accounting-system {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.posts-content-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.posts-header-datev-accounting-system {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.posts-title-datev-accounting-system {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.posts-subtitle-datev-accounting-system {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.card-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 100%;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-datev-accounting-system:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #0066ff;
}

.card-image-datev-accounting-system {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-body-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  flex: 1;
}

.card-title-datev-accounting-system {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

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

.card-meta-datev-accounting-system {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.card-meta-item-datev-accounting-system {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.card-meta-item-datev-accounting-system i {
  color: #0066ff;
  font-size: 0.9rem;
}

.card-link-datev-accounting-system {
  display: inline-block;
  color: #0066ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.card-link-datev-accounting-system:hover {
  color: #0052cc;
  transform: translateX(4px);
}

.features-section-datev-accounting-system {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-content-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.features-header-datev-accounting-system {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-title-datev-accounting-system {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-datev-accounting-system {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.features-grid-datev-accounting-system {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.feature-item-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 100%;
  max-width: 350px;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item-datev-accounting-system:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #0066ff;
}

.feature-icon-datev-accounting-system {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0066ff;
}

.feature-heading-datev-accounting-system {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

.feature-text-datev-accounting-system {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.insight-section-datev-accounting-system {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-datev-accounting-system {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .insight-content-datev-accounting-system {
    flex-direction: row;
    align-items: flex-start;
  }
}

.insight-text-datev-accounting-system {
  flex: 1 1 100%;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .insight-text-datev-accounting-system {
    flex: 1 1 50%;
    max-width: none;
  }
}

.insight-title-datev-accounting-system {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.insight-description-datev-accounting-system {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.insight-detail-datev-accounting-system {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.insight-visual-datev-accounting-system {
  flex: 1 1 100%;
  max-width: 500px;
}

@media (min-width: 1024px) {
  .insight-visual-datev-accounting-system {
    flex: 1 1 50%;
    max-width: none;
  }
}

.insight-image-datev-accounting-system {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

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

  .hero-header-datev-accounting-system {
    flex: 1 1 100%;
  }

  .hero-visual-datev-accounting-system {
    flex: 1 1 100%;
  }

  .posts-grid-datev-accounting-system {
    flex-direction: column;
    align-items: stretch;
  }

  .card-datev-accounting-system {
    max-width: none;
  }

  .features-grid-datev-accounting-system {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-item-datev-accounting-system {
    max-width: none;
  }

  .insight-content-datev-accounting-system {
    flex-direction: column;
  }

  .insight-text-datev-accounting-system {
    flex: 1 1 100%;
  }

  .insight-visual-datev-accounting-system {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-datev-accounting-system {
    font-size: 1.75rem;
  }

  .posts-title-datev-accounting-system {
    font-size: 1.5rem;
  }

  .card-body-datev-accounting-system {
    padding: 1.25rem;
  }

  .feature-item-datev-accounting-system {
    padding: 1.5rem;
  }

  .insight-title-datev-accounting-system {
    font-size: 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

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

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

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

a {
  transition: all 0.3s ease;
}

a:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 2px;
}

.main-belege-verwalten-datev {
  width: 100%;
  overflow: hidden;
}

.hero-section-belege-verwalten-datev {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-belege-verwalten-datev {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.breadcrumbs-belege-verwalten-datev a {
  color: #0066ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-belege-verwalten-datev a:hover {
  color: #00d4ff;
  text-decoration: underline;
}

.breadcrumbs-belege-verwalten-datev span {
  color: #64748b;
}

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

.hero-text-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-belege-verwalten-datev {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-belege-verwalten-datev {
  color: #00d4ff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-description-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-belege-verwalten-datev {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-belege-verwalten-datev {
  color: #94a3b8;
  font-size: 0.95rem;
}

.meta-separator-belege-verwalten-datev {
  color: #475569;
}

.hero-image-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-belege-verwalten-datev {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .hero-content-belege-verwalten-datev {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-belege-verwalten-datev,
  .hero-image-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.intro-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-wrapper-belege-verwalten-datev {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-belege-verwalten-datev {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-title-belege-verwalten-datev {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro-paragraph-belege-verwalten-datev {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-belege-verwalten-datev {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-belege-verwalten-datev {
  background: #f8fafc;
  border-left: 4px solid #0066ff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.highlight-title-belege-verwalten-datev {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-list-belege-verwalten-datev {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-belege-verwalten-datev {
  color: #334155;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-item-belege-verwalten-datev::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .intro-wrapper-belege-verwalten-datev {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .intro-text-belege-verwalten-datev,
  .intro-highlight-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-one-belege-verwalten-datev {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-belege-verwalten-datev {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-belege-verwalten-datev {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-paragraph-belege-verwalten-datev {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-belege-verwalten-datev {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-two-belege-verwalten-datev {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-two-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-reverse-belege-verwalten-datev {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-wrapper-reverse-belege-verwalten-datev .content-image-belege-verwalten-datev {
  order: -1;
}

.content-three-belege-verwalten-datev {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.feature-block-belege-verwalten-datev {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-left: 4px solid #0066ff;
}

.feature-heading-belege-verwalten-datev {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-list-belege-verwalten-datev {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-item-belege-verwalten-datev {
  color: #334155;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.feature-item-belege-verwalten-datev::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 700;
}

.feature-item-belege-verwalten-datev strong {
  color: #0f172a;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .content-wrapper-belege-verwalten-datev,
  .content-wrapper-reverse-belege-verwalten-datev {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .content-wrapper-reverse-belege-verwalten-datev .content-image-belege-verwalten-datev {
    order: 0;
  }

  .content-text-belege-verwalten-datev,
  .content-image-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-belege-verwalten-datev {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.tips-title-belege-verwalten-datev {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  letter-spacing: -0.02em;
}

.tips-intro-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tips-grid-belege-verwalten-datev {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-belege-verwalten-datev {
  flex: 1 1 280px;
  max-width: 340px;
  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 0.3s ease;
}

.tip-card-belege-verwalten-datev:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}

.tip-icon-belege-verwalten-datev {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-heading-belege-verwalten-datev {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tip-text-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.quote-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-belege-verwalten-datev {
  border-left: 4px solid #0066ff;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(0, 102, 255, 0.05);
  border-radius: 8px;
  margin: 0;
}

.quote-text-belege-verwalten-datev {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-author-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: 0.95rem;
  display: block;
  font-style: normal;
}

.conclusion-section-belege-verwalten-datev {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-wrapper-belege-verwalten-datev {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-belege-verwalten-datev {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.conclusion-paragraph-belege-verwalten-datev {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-image-belege-verwalten-datev {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-belege-verwalten-datev {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .conclusion-wrapper-belege-verwalten-datev {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .conclusion-text-belege-verwalten-datev,
  .conclusion-image-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.disclaimer-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-belege-verwalten-datev {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-belege-verwalten-datev {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text-belege-verwalten-datev {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-section-belege-verwalten-datev .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-title-belege-verwalten-datev {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
  letter-spacing: -0.02em;
}

.related-subtitle-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-grid-belege-verwalten-datev {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-belege-verwalten-datev {
  flex: 1 1 320px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-belege-verwalten-datev:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.5);
  transform: translateY(-4px);
}

.related-img-belege-verwalten-datev {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-content-belege-verwalten-datev {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-belege-verwalten-datev {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-belege-verwalten-datev {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-link-belege-verwalten-datev {
  color: #0066ff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-belege-verwalten-datev:hover {
  color: #00d4ff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section-belege-verwalten-datev {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-content-belege-verwalten-datev {
    flex-direction: column;
  }

  .hero-text-belege-verwalten-datev,
  .hero-image-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-wrapper-belege-verwalten-datev,
  .content-wrapper-belege-verwalten-datev,
  .content-wrapper-reverse-belege-verwalten-datev,
  .conclusion-wrapper-belege-verwalten-datev {
    flex-direction: column;
  }

  .intro-text-belege-verwalten-datev,
  .intro-highlight-belege-verwalten-datev,
  .content-text-belege-verwalten-datev,
  .content-image-belege-verwalten-datev,
  .conclusion-text-belege-verwalten-datev,
  .conclusion-image-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-reverse-belege-verwalten-datev .content-image-belege-verwalten-datev {
    order: 0;
  }

  .tips-grid-belege-verwalten-datev,
  .related-grid-belege-verwalten-datev {
    flex-direction: column;
  }

  .tip-card-belege-verwalten-datev,
  .related-card-belege-verwalten-datev {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-belege-verwalten-datev {
    font-size: 1.5rem;
  }

  .content-title-belege-verwalten-datev,
  .conclusion-title-belege-verwalten-datev {
    font-size: 1.25rem;
  }

  .breadcrumbs-belege-verwalten-datev {
    font-size: 0.8rem;
  }

  .hero-meta-belege-verwalten-datev {
    gap: 0.5rem;
  }

  .meta-item-belege-verwalten-datev {
    font-size: 0.85rem;
  }
}

.main-datev-grundlagen-buchfuehrung {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

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

.hero-section-datev-grundlagen-buchfuehrung {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-datev-grundlagen-buchfuehrung::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-datev-grundlagen-buchfuehrung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-datev-grundlagen-buchfuehrung a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-datev-grundlagen-buchfuehrung a:hover {
  color: #00f0ff;
}

.breadcrumbs-datev-grundlagen-buchfuehrung span {
  color: #64748b;
}

.breadcrumbs-datev-grundlagen-buchfuehrung > span:last-child {
  color: #cbd5e1;
}

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

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

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

.hero-badge-datev-grundlagen-buchfuehrung {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 255, 0.15);
  color: #00d4ff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-datev-grundlagen-buchfuehrung {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.hero-meta-datev-grundlagen-buchfuehrung {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-datev-grundlagen-buchfuehrung {
  color: #94a3b8;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image-element-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-datev-grundlagen-buchfuehrung,
  .hero-image-wrapper-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-datev-grundlagen-buchfuehrung {
    font-size: 1.75rem;
  }

  .hero-description-datev-grundlagen-buchfuehrung {
    font-size: 1rem;
  }
}

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

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

.intro-text-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-datev-grundlagen-buchfuehrung {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image-element-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-datev-grundlagen-buchfuehrung,
  .intro-image-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-datev-grundlagen-buchfuehrung {
    font-size: 1.5rem;
  }
}

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

.features-content-datev-grundlagen-buchfuehrung {
  display: flex;
  flex-direction: column;
}

.features-header-datev-grundlagen-buchfuehrung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-subtitle-datev-grundlagen-buchfuehrung {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-datev-grundlagen-buchfuehrung {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card-datev-grundlagen-buchfuehrung:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #0066ff;
}

.card-icon-datev-grundlagen-buchfuehrung {
  font-size: 2.5rem;
  display: block;
}

.card-title-datev-grundlagen-buchfuehrung {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 1024px) {
  .feature-card-datev-grundlagen-buchfuehrung {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .feature-card-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
  }
}

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

.steps-content-datev-grundlagen-buchfuehrung {
  display: flex;
  flex-direction: column;
}

.steps-header-datev-grundlagen-buchfuehrung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-datev-grundlagen-buchfuehrung {
  font-size: 1.05rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-datev-grundlagen-buchfuehrung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-item-datev-grundlagen-buchfuehrung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0066ff;
}

.step-number-datev-grundlagen-buchfuehrung {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0066ff;
  flex-shrink: 0;
  min-width: 80px;
  font-family: 'Playfair Display', serif;
}

.step-details-datev-grundlagen-buchfuehrung {
  flex: 1;
}

.step-heading-datev-grundlagen-buchfuehrung {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.step-text-datev-grundlagen-buchfuehrung {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.steps-image-wrapper-datev-grundlagen-buchfuehrung {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.steps-image-element-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .step-item-datev-grundlagen-buchfuehrung {
    flex-direction: column;
  }

  .step-number-datev-grundlagen-buchfuehrung {
    min-width: auto;
  }
}

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

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

.details-text-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.details-paragraph-datev-grundlagen-buchfuehrung {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.details-subheading-datev-grundlagen-buchfuehrung {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.details-image-element-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .details-content-datev-grundlagen-buchfuehrung {
    flex-direction: column;
  }

  .details-text-datev-grundlagen-buchfuehrung,
  .details-image-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .details-title-datev-grundlagen-buchfuehrung {
    font-size: 1.5rem;
  }
}

.quote-section-datev-grundlagen-buchfuehrung {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-datev-grundlagen-buchfuehrung {
  background: rgba(0, 102, 255, 0.1);
  border-left: 4px solid #0066ff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-datev-grundlagen-buchfuehrung {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}

.quote-author-datev-grundlagen-buchfuehrung {
  display: block;
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 600;
}

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

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

.advanced-image-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-text-datev-grundlagen-buchfuehrung {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advanced-paragraph-datev-grundlagen-buchfuehrung {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.advanced-image-element-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .advanced-content-datev-grundlagen-buchfuehrung {
    flex-direction: column;
  }

  .advanced-image-datev-grundlagen-buchfuehrung,
  .advanced-text-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .advanced-title-datev-grundlagen-buchfuehrung {
    font-size: 1.5rem;
  }
}

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

.cta-box-datev-grundlagen-buchfuehrung {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-datev-grundlagen-buchfuehrung {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button-datev-grundlagen-buchfuehrung {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #0066ff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-datev-grundlagen-buchfuehrung:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #f8fafc;
}

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

.related-content-datev-grundlagen-buchfuehrung {
  display: flex;
  flex-direction: column;
}

.related-title-datev-grundlagen-buchfuehrung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-datev-grundlagen-buchfuehrung {
  font-size: 1.05rem;
  color: #475569;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-datev-grundlagen-buchfuehrung {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 300px;
  max-width: 380px;
  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);
}

.related-card-datev-grundlagen-buchfuehrung:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #0066ff;
}

.related-card-image-datev-grundlagen-buchfuehrung {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-datev-grundlagen-buchfuehrung {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-datev-grundlagen-buchfuehrung {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.related-card-text-datev-grundlagen-buchfuehrung {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-datev-grundlagen-buchfuehrung {
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.related-card-link-datev-grundlagen-buchfuehrung:hover {
  color: #0052cc;
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .related-card-datev-grundlagen-buchfuehrung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-datev-grundlagen-buchfuehrung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-datev-grundlagen-buchfuehrung {
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-datev-grundlagen-buchfuehrung {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-datev-grundlagen-buchfuehrung {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-datev-grundlagen-buchfuehrung,
  .intro-section-datev-grundlagen-buchfuehrung,
  .features-section-datev-grundlagen-buchfuehrung,
  .steps-section-datev-grundlagen-buchfuehrung,
  .details-section-datev-grundlagen-buchfuehrung,
  .quote-section-datev-grundlagen-buchfuehrung,
  .advanced-section-datev-grundlagen-buchfuehrung,
  .cta-section-datev-grundlagen-buchfuehrung,
  .related-section-datev-grundlagen-buchfuehrung,
  .disclaimer-section-datev-grundlagen-buchfuehrung {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-datev-grundlagen-buchfuehrung {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .hero-meta-datev-grundlagen-buchfuehrung {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-item-datev-grundlagen-buchfuehrung {
    border-left: none;
    border-top: 4px solid #0066ff;
    padding-left: clamp(1rem, 2vw, 1.5rem);
  }
}

.main-datev-berichte-jahresabschluss {
  width: 100%;
  overflow: hidden;
}

.hero-section-datev-berichte-jahresabschluss {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  color: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-datev-berichte-jahresabschluss {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: #cbd5e1;
}

.breadcrumbs-datev-berichte-jahresabschluss a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-datev-berichte-jahresabschluss a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.breadcrumbs-datev-berichte-jahresabschluss span {
  color: #64748b;
}

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

.hero-text-wrapper-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-tag-datev-berichte-jahresabschluss {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-datev-berichte-jahresabschluss {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-description-datev-berichte-jahresabschluss {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-datev-berichte-jahresabschluss {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #94a3b8;
  margin-bottom: 2rem;
}

.meta-item-datev-berichte-jahresabschluss {
  display: flex;
  align-items: center;
}

.meta-divider-datev-berichte-jahresabschluss {
  color: #475569;
}

.hero-image-wrapper-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-datev-berichte-jahresabschluss {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-wrapper-datev-berichte-jahresabschluss,
  .hero-image-wrapper-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-datev-berichte-jahresabschluss {
    max-height: 300px;
  }
}

.intro-section-datev-berichte-jahresabschluss {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-block-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro-paragraph-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.intro-image-block-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-datev-berichte-jahresabschluss {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-datev-berichte-jahresabschluss {
    flex-direction: column;
  }

  .intro-text-block-datev-berichte-jahresabschluss,
  .intro-image-block-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-datev-berichte-jahresabschluss {
    max-height: 300px;
  }
}

.features-section-datev-berichte-jahresabschluss {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.features-header-datev-berichte-jahresabschluss {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.features-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.features-subtitle-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid-datev-berichte-jahresabschluss {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-datev-berichte-jahresabschluss {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-datev-berichte-jahresabschluss:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}

.feature-icon-datev-berichte-jahresabschluss {
  width: 50px;
  height: 50px;
  background: #f0f4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  font-size: 1.5rem;
}

.feature-card-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-card-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-card-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-datev-berichte-jahresabschluss {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.steps-header-datev-berichte-jahresabschluss {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.steps-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.steps-subtitle-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-wrapper-datev-berichte-jahresabschluss {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.step-item-datev-berichte-jahresabschluss {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.step-number-datev-berichte-jahresabschluss {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #06b6d4;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-content-datev-berichte-jahresabschluss {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.step-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-datev-berichte-jahresabschluss {
    gap: 1.5rem;
  }

  .step-number-datev-berichte-jahresabschluss {
    font-size: 2rem;
  }
}

.content-section-datev-berichte-jahresabschluss {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.content-text-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-paragraph-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.content-image-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-img-datev-berichte-jahresabschluss {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-datev-berichte-jahresabschluss {
    flex-direction: column;
  }

  .content-text-datev-berichte-jahresabschluss,
  .content-image-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-img-datev-berichte-jahresabschluss {
    max-height: 300px;
  }
}

.details-section-datev-berichte-jahresabschluss {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.details-wrapper-datev-berichte-jahresabschluss {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.details-image-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-img-datev-berichte-jahresabschluss {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.details-text-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.details-paragraph-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.details-highlight-datev-berichte-jahresabschluss {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #0066ff;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.details-highlight-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.details-highlight-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .details-wrapper-datev-berichte-jahresabschluss {
    flex-direction: column;
  }

  .details-image-datev-berichte-jahresabschluss,
  .details-text-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .details-image-img-datev-berichte-jahresabschluss {
    max-height: 300px;
  }
}

.quote-section-datev-berichte-jahresabschluss {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-datev-berichte-jahresabschluss {
  background: rgba(6, 182, 212, 0.1);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  border-radius: 4px;
  margin: 0;
}

.quote-text-datev-berichte-jahresabschluss {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.quote-author-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.practice-section-datev-berichte-jahresabschluss {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practice-wrapper-datev-berichte-jahresabschluss {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-text-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.practice-paragraph-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.practice-list-datev-berichte-jahresabschluss {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-item-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.practice-item-datev-berichte-jahresabschluss::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.practice-image-datev-berichte-jahresabschluss {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-img-datev-berichte-jahresabschluss {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .practice-wrapper-datev-berichte-jahresabschluss {
    flex-direction: column;
  }

  .practice-text-datev-berichte-jahresabschluss,
  .practice-image-datev-berichte-jahresabschluss {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-img-datev-berichte-jahresabschluss {
    max-height: 300px;
  }
}

.cta-section-datev-berichte-jahresabschluss {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.cta-box-datev-berichte-jahresabschluss {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #f0f4ff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-datev-berichte-jahresabschluss {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #0066ff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.cta-button-datev-berichte-jahresabschluss:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-datev-berichte-jahresabschluss {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-datev-berichte-jahresabschluss {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.disclaimer-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.related-section-datev-berichte-jahresabschluss {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-section-datev-berichte-jahresabschluss .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-datev-berichte-jahresabschluss {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.related-subtitle-datev-berichte-jahresabschluss {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

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

.related-card-datev-berichte-jahresabschluss {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #0f172a;
  display: flex;
  flex-direction: column;
}

.related-card-datev-berichte-jahresabschluss:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}

.related-card-image-datev-berichte-jahresabschluss {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-datev-berichte-jahresabschluss img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-datev-berichte-jahresabschluss {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-datev-berichte-jahresabschluss {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.related-card-text-datev-berichte-jahresabschluss {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .related-card-datev-berichte-jahresabschluss {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

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

@media (max-width: 640px) {
  .breadcrumbs-datev-berichte-jahresabschluss {
    font-size: 0.75rem;
  }

  .hero-meta-datev-berichte-jahresabschluss {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-divider-datev-berichte-jahresabschluss {
    display: none;
  }

  .step-item-datev-berichte-jahresabschluss {
    gap: 1rem;
  }

  .step-number-datev-berichte-jahresabschluss {
    font-size: 1.5rem;
    min-width: 3rem;
  }
}

.main-datev-steuerberater-kanzleien {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.hero-section-datev-steuerberater-kanzleien {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.hero-section-datev-steuerberater-kanzleien::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-datev-steuerberater-kanzleien {
  display: flex;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-datev-steuerberater-kanzleien a {
  color: #00d4ff;
  transition: color 0.3s ease;
}

.breadcrumbs-datev-steuerberater-kanzleien a:hover {
  color: #ffffff;
}

.breadcrumbs-datev-steuerberater-kanzleien span {
  color: #64748b;
}

.hero-content-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-datev-steuerberater-kanzleien {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-description-datev-steuerberater-kanzleien {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-datev-steuerberater-kanzleien {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-datev-steuerberater-kanzleien {
  display: flex;
  align-items: center;
}

.meta-separator-datev-steuerberater-kanzleien {
  color: #475569;
}

.hero-image-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-datev-steuerberater-kanzleien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .hero-content-datev-steuerberater-kanzleien {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-datev-steuerberater-kanzleien,
  .hero-image-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-datev-steuerberater-kanzleien {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

.intro-section-datev-steuerberater-kanzleien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.intro-content-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-text-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.intro-image-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-datev-steuerberater-kanzleien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .intro-content-datev-steuerberater-kanzleien {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .intro-text-datev-steuerberater-kanzleien,
  .intro-image-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-datev-steuerberater-kanzleien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.features-header-datev-steuerberater-kanzleien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
}

.features-grid-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card-datev-steuerberater-kanzleien {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-datev-steuerberater-kanzleien:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #0066ff;
}

.card-icon-datev-steuerberater-kanzleien {
  width: 50px;
  height: 50px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0066ff;
}

.card-title-datev-steuerberater-kanzleien {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .feature-card-datev-steuerberater-kanzleien {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
  }
}

@media (max-width: 640px) {
  .feature-card-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.workflow-section-datev-steuerberater-kanzleien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.workflow-wrapper-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.workflow-text-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.workflow-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.workflow-paragraph-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

.workflow-list-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.workflow-item-datev-steuerberater-kanzleien {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.item-number-datev-steuerberater-kanzleien {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0066ff;
  flex-shrink: 0;
  min-width: 50px;
}

.item-content-datev-steuerberater-kanzleien {
  flex: 1;
}

.item-title-datev-steuerberater-kanzleien {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.item-text-datev-steuerberater-kanzleien {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.workflow-image-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.workflow-img-datev-steuerberater-kanzleien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .workflow-wrapper-datev-steuerberater-kanzleien {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .workflow-text-datev-steuerberater-kanzleien,
  .workflow-image-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advantage-section-datev-steuerberater-kanzleien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.advantage-wrapper-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.advantage-image-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.advantage-img-datev-steuerberater-kanzleien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-text-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.advantage-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.advantage-paragraph-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.advantage-highlight-datev-steuerberater-kanzleien {
  background: #ffffff;
  border-left: 4px solid #0066ff;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
}

.highlight-text-datev-steuerberater-kanzleien {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.advantage-subheading-datev-steuerberater-kanzleien {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.advantage-list-datev-steuerberater-kanzleien {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-datev-steuerberater-kanzleien {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.list-item-datev-steuerberater-kanzleien::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .advantage-wrapper-datev-steuerberater-kanzleien {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .advantage-image-datev-steuerberater-kanzleien,
  .advantage-text-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-datev-steuerberater-kanzleien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.implementation-header-datev-steuerberater-kanzleien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.implementation-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.implementation-subtitle-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
}

.implementation-wrapper-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.implementation-text-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-paragraph-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.implementation-stats-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.stat-box-datev-steuerberater-kanzleien {
  flex: 1 1 auto;
  min-width: 150px;
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.stat-number-datev-steuerberater-kanzleien {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 0.5rem;
}

.stat-label-datev-steuerberater-kanzleien {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
}

.implementation-image-datev-steuerberater-kanzleien {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-datev-steuerberater-kanzleien {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .implementation-wrapper-datev-steuerberater-kanzleien {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .implementation-text-datev-steuerberater-kanzleien,
  .implementation-image-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-stats-datev-steuerberater-kanzleien {
    flex-direction: column;
  }

  .stat-box-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
  }
}

.quote-section-datev-steuerberater-kanzleien {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  position: relative;
}

.quote-section-datev-steuerberater-kanzleien::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.featured-quote-datev-steuerberater-kanzleien {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00d4ff;
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text-datev-steuerberater-kanzleien {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-datev-steuerberater-kanzleien {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.faq-section-datev-steuerberater-kanzleien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.faq-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.faq-content-datev-steuerberater-kanzleien {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-datev-steuerberater-kanzleien {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question-datev-steuerberater-kanzleien {
  padding: clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-question-datev-steuerberater-kanzleien::after {
  content: '';
  display: inline-block;
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: #0066ff;
}

.faq-item-datev-steuerberater-kanzleien[open] .faq-question-datev-steuerberater-kanzleien::after {
  transform: rotate(180deg);
}

.faq-answer-datev-steuerberater-kanzleien {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

.faq-question-datev-steuerberater-kanzleien:hover {
  background: #f8fafc;
}

.cta-section-datev-steuerberater-kanzleien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.cta-box-datev-steuerberater-kanzleien {
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.cta-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-datev-steuerberater-kanzleien {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-datev-steuerberater-kanzleien {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #0066ff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-datev-steuerberater-kanzleien:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #f8fafc;
}

.disclaimer-section-datev-steuerberater-kanzleien {
  background: #f8fafc;
  padding: clamp(2rem, 4vw, 3rem) var(--space-lg);
  overflow: hidden;
}

.disclaimer-box-datev-steuerberater-kanzleien {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  border: 1px solid #fcd34d;
}

.disclaimer-title-datev-steuerberater-kanzleien {
  font-size: 1rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.5rem;
}

.disclaimer-text-datev-steuerberater-kanzleien {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-section-datev-steuerberater-kanzleien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.related-title-datev-steuerberater-kanzleien {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.related-grid-datev-steuerberater-kanzleien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.related-card-datev-steuerberater-kanzleien {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.related-card-datev-steuerberater-kanzleien:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #0066ff;
}

.related-image-datev-steuerberater-kanzleien {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-datev-steuerberater-kanzleien img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-datev-steuerberater-kanzleien {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-datev-steuerberater-kanzleien {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.5;
}

.related-card-text-datev-steuerberater-kanzleien {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 1024px) {
  .related-card-datev-steuerberater-kanzleien {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
  }
}

@media (max-width: 640px) {
  .related-card-datev-steuerberater-kanzleien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-datev-steuerberater-kanzleien {
    padding: clamp(2rem, 4vw, 3rem) var(--space-lg);
  }

  .intro-section-datev-steuerberater-kanzleien,
  .features-section-datev-steuerberater-kanzleien,
  .workflow-section-datev-steuerberater-kanzleien,
  .advantage-section-datev-steuerberater-kanzleien,
  .implementation-section-datev-steuerberater-kanzleien,
  .quote-section-datev-steuerberater-kanzleien,
  .faq-section-datev-steuerberater-kanzleien,
  .cta-section-datev-steuerberater-kanzleien,
  .related-section-datev-steuerberater-kanzleien {
    padding: clamp(2rem, 4vw, 3rem) var(--space-lg);
  }

  .implementation-stats-datev-steuerberater-kanzleien {
    gap: 1rem;
  }

  .stat-box-datev-steuerberater-kanzleien {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 1rem;
  }

  .item-number-datev-steuerberater-kanzleien {
    min-width: 40px;
  }
}

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

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

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

html, body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.datev-accounting-narrative-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

.hero-intro-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-intro-header-about {
  text-align: center;
}

.hero-intro-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

.hero-intro-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.foundation-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

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

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 102, 255, 0.12);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.foundation-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.foundation-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.foundation-block-about {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.foundation-block-about:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.block-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.expertise-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.4);
}

.card-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #3b82f6;
  margin-bottom: 1rem;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.implementation-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

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

.implementation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.implementation-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.value-proposition-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

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

.value-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.value-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.value-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-quote-about {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 750px;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  font-style: normal;
}

.value-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-item-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.value-check-about {
  color: #10b981;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.value-item-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.disclaimer-section-about {
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  color: #3b82f6;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted-dark);
  line-height: 1.7;
}

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

  .step-number-about {
    font-size: 1.8rem;
  }

  .hero-visual-about,
  .implementation-visual-about {
    margin: 1.5rem 0;
  }

  .foundation-blocks-about {
    gap: 1rem;
  }

  .expertise-cards-about {
    gap: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-intro-section-about {
    padding: 4rem 0;
  }

  .foundation-section-about,
  .expertise-section-about,
  .implementation-section-about,
  .value-proposition-section-about {
    padding: 4rem 0;
  }

  .process-step-about {
    gap: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .hero-intro-section-about {
    padding: 6rem 0;
  }

  .foundation-section-about,
  .expertise-section-about,
  .implementation-section-about,
  .value-proposition-section-about {
    padding: 6rem 0;
  }

  .expertise-cards-about {
    justify-content: space-between;
  }

  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1.33rem);
  }

  .process-step-about {
    gap: 2rem;
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  .services-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-size: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);
  }
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
  font-weight: 400;
}

.services-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta__button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.1;
}

.portfolio-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-xl) var(--space-lg);
  }

  .portfolio-hero-title {
    margin-bottom: var(--space-lg);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-2xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
  overflow: hidden;
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: rgba(0, 102, 255, 0.15);
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.portfolio-card-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-dark);
}

.portfolio-card-meta-item {
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-cta-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta-title {
    margin-bottom: var(--space-lg);
  }

  .portfolio-cta-text {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .portfolio-hero-title {
    margin-bottom: var(--space-sm);
  }

  .portfolio-card-content {
    padding: var(--space-md);
  }

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

: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-primary-light: #0f172a;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #78909c;
  --color-primary: #0066ff;
  --color-primary-hover: #0052cc;
  --color-secondary: #00d4ff;
  --color-accent-success: #10b981;
  --color-accent-warning: #f59e0b;
  --color-accent-error: #ef4444;
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-border-light: #e2e8f0;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  overflow: hidden;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.3;
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.4;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  text-align: justify;
}

.legal-docs ul,
.legal-docs ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary-light);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

.legal-docs li {
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

.legal-docs .contact-section {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
}

.legal-docs .contact-info {
  margin-top: var(--space-md);
}

.legal-docs .contact-info p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
}

.legal-docs .contact-info strong {
  color: var(--color-text-primary-light);
  display: block;
  margin-top: var(--space-sm);
  font-weight: 600;
}

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

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

: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-primary-light: #0f172a;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #78909c;
  --color-primary: #0066ff;
  --color-primary-hover: #0052cc;
  --color-secondary: #00d4ff;
  --color-accent-success: #10b981;
  --color-accent-warning: #f59e0b;
  --color-accent-error: #ef4444;
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-border-light: #e2e8f0;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

* {
  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: 1.6;
  overflow-x: hidden;
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.thank-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-note {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 5vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--color-bg-primary);
  background-color: var(--color-accent-success);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
}

.btn-return::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-return:hover {
  background-color: #059669;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-return:hover::before {
  width: 300px;
  height: 300px;
}

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

@media (max-width: 480px) {
  .thank-wrapper {
    gap: var(--space-lg);
  }
  
  .thank-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-sm);
  }
  
  .thank-note {
    padding: var(--space-md);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .thank-title {
    margin-bottom: var(--space-lg);
  }
  
  .thank-description {
    margin-bottom: var(--space-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .thank-icon,
  .thank-title,
  .thank-subtitle,
  .thank-description,
  .thank-note,
  .btn-return {
    animation: none !important;
  }
  
  .btn-return {
    transition: background-color 0.2s, box-shadow 0.2s;
  }
  
  .btn-return::before {
    transition: none;
  }
}

@supports (backdrop-filter: blur(10px)) {
  .thank-note {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
  }
}

* {
  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: 1.6;
  overflow-x: hidden;
}

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, rgba(10, 15, 30, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.error-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 800px;
  padding: var(--space-lg);
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  animation: slideUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-md);
}

.error-code-display {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-md);
}

.error-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  color: var(--color-secondary);
  opacity: 0.9;
}

@keyframes pulse-ring {
  0%, 100% {
    r: 50;
    opacity: 0.4;
  }
  50% {
    r: 55;
    opacity: 0.2;
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  backdrop-filter: blur(10px);
}

.suggestions-label {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted-dark);
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-md);
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  opacity: 0.6;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease-out;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
  margin-top: var(--space-sm);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
  transform: translateY(-2px);
}

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

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

@media (min-width: 480px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

  .content {
    padding: var(--space-xl);
  }

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .content {
    padding: var(--space-2xl);
  }

  .error-code-display {
    text-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
  }

  .error-suggestions {
    padding: var(--space-lg);
  }

  .suggestions-list {
    flex-direction: row;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
  }

  .suggestions-list li {
    padding: var(--space-sm) var(--space-md);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-dark);
  }

  .suggestions-list li::before {
    content: '';
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

  .error-code-display {
    margin-bottom: var(--space-lg);
  }

  .error-icon {
    width: 140px;
    height: 140px;
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

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

  html {
    scroll-behavior: auto;
  }
}

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

.contact-feedback-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}

.contact-feedback-hero-content {
  max-width: 800px;
}

.contact-feedback-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-feedback-hero-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: 6rem 2rem;
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

.contact-feedback-form-wrapper {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-feedback-form-header {
  margin-bottom: 2rem;
}

.contact-feedback-form-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.contact-feedback-form-description {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.contact-feedback-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-feedback-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-feedback-label {
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.contact-feedback-input,
.contact-feedback-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  font-family: var(--font-primary);
  transition: all 0.2s ease;
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(0, 102, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-feedback-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-feedback-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.contact-feedback-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-feedback-consent-label {
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.5;
  cursor: pointer;
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-feedback-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.contact-feedback-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-feedback-submit:active {
  transform: translateY(0);
}

.contact-feedback-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-feedback-info-header {
  margin-bottom: 0.5rem;
}

.contact-feedback-info-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.contact-feedback-info-description {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.contact-feedback-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-feedback-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-feedback-info-item:hover {
  background-color: rgba(0, 102, 255, 0.08);
  border-color: var(--color-primary);
}

.contact-feedback-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 102, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-feedback-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-feedback-info-item-title {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
}

.contact-feedback-info-item-text {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.contact-feedback-info-item-meta {
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.9rem);
  color: var(--color-text-muted-dark);
  margin: 0;
}

.contact-feedback-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-feedback-info-link:hover {
  color: var(--color-primary-hover);
}

.contact-feedback-info-benefits {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-feedback-benefits-title {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1.5rem 0;
}

.contact-feedback-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feedback-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-feedback-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-accent-success);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-feedback-benefit-text {
  flex: 1;
}

.contact-feedback-cta {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

.contact-feedback-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-feedback-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-feedback-cta-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: 4rem 2rem;
  }

  .contact-feedback-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-feedback-form-wrapper {
    padding: 2.5rem;
  }

  .contact-feedback-info-benefits {
    padding: 2.5rem;
  }

  .contact-feedback-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 5rem 2rem;
  }

  .contact-feedback-grid {
    gap: 4rem;
  }

  .contact-feedback-cta {
    padding: 5rem 2rem;
  }
}
.header-buchalter-pro-mobile-toggle.active{
  display: none;
}
img{
  max-width: 100%;
}