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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-warning: #dc2626;
  --color-accent-success: #10b981;
  --color-accent-info: #0ea5e9;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.3);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.dark-section a:hover {
  color: var(--color-accent-info);
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-dark-primary) !important;
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-dark-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-dark-primary);
  border-color: var(--color-text-dark-primary);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-light:hover {
  background: rgba(15, 23, 42, 0.05);
}

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

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

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

.dark-section.dark-alt {
  background: var(--color-bg-dark-accent);
}

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

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

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

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

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

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

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

.grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

.px-sm { padding: 0 var(--space-sm); }
.px-md { padding: 0 var(--space-md); }
.px-lg { padding: 0 var(--space-lg); }

.py-sm { padding: var(--space-sm) 0; }
.py-md { padding: var(--space-md) 0; }
.py-lg { padding: var(--space-lg) 0; }

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

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

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

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

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

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

.font-light {
  font-weight: 400;
}

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

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

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

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

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

.badge {
  display: inline-block;
  padding: 0.375rem var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.badge-secondary {
  background: var(--color-secondary);
  color: var(--color-text-dark-primary);
}

.badge-success {
  background: var(--color-accent-success);
  color: var(--color-text-dark-primary);
}

.badge-warning {
  background: var(--color-accent-warning);
  color: var(--color-text-dark-primary);
}

.badge-info {
  background: var(--color-accent-info);
  color: var(--color-text-dark-primary);
}

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

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

.highlight {
  position: relative;
  padding: var(--space-md);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.dark-section .highlight {
  background: rgba(37, 99, 235, 0.1);
  border-left-color: var(--color-primary-light);
}

.light-section .highlight {
  background: rgba(37, 99, 235, 0.05);
  border-left-color: var(--color-primary);
}

hr {
  border: none;
  height: 1px;
  margin: var(--space-lg) 0;
}

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

.light-section hr {
  background: #e2e8f0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  h5 {
    font-size: 1.125rem;
  }
}

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

* {
  transition-property: background-color, border-color, color, box-shadow, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

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

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

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

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

.animate-fadeIn {
  animation: fadeIn 0.6s ease;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease;
}

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .dark-section,
  .light-section {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

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

@media (prefers-contrast: more) {
  .card-dark {
    border-width: 2px;
  }
  
  .card-light {
    border-width: 2px;
  }
  
  .btn {
    border-width: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.header-konto-deck {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  z-index: 100;
  overflow: hidden;
}

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

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

.header-konto-deck-brand:hover {
  opacity: 0.85;
}

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

.header-konto-deck-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
}

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

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

.header-konto-deck-nav-link:hover {
  color: var(--color-primary-light);
}

.header-konto-deck-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: width 0.3s ease;
}

.header-konto-deck-nav-link:hover::after {
  width: 100%;
}

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

.header-konto-deck-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.header-konto-deck-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.header-konto-deck-mobile-toggle:hover {
  opacity: 0.8;
}

.header-konto-deck-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-konto-deck-mobile-toggle.active .header-konto-deck-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-konto-deck-mobile-toggle.active .header-konto-deck-hamburger:nth-child(2) {
  opacity: 0;
}

.header-konto-deck-mobile-toggle.active .header-konto-deck-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-konto-deck-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  padding-top: 70px;
}

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

.header-konto-deck-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: clamp(1rem, 4vw, 2rem);
  z-index: 100;
}

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

.header-konto-deck-mobile-close:hover {
  opacity: 0.7;
}

.header-konto-deck-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem clamp(1rem, 4vw, 2rem);
}

.header-konto-deck-mobile-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-primary);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.header-konto-deck-mobile-link:hover {
  color: var(--color-primary-light);
  padding-left: 0.5rem;
}

.header-konto-deck-mobile-cta {
  display: block;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-primary);
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  color: #fff !important;
}

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

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

  .header-konto-deck-mobile-menu {
    display: none !important;
  }

  .header-konto-deck-desktop-nav {
    display: flex;
  }

  .header-konto-deck-cta-button {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .header-konto-deck-logo-text {
    font-size: 1.35rem;
  }

  .header-konto-deck-nav-link {
    font-size: 1rem;
  }

  .header-konto-deck-cta-button {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .header-konto-deck-desktop-nav,
  .header-konto-deck-cta-button {
    display: none;
  }
}

    .ledger-hub {
  width: 100%;
  background: #ffffff;
}

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
}

.stat-label-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-image-index {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-text-block-index {
    flex: 1 1 100%;
  }
  
  .hero-image-block-index {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: 3rem 0;
  }
  
  .hero-title-index {
    font-size: 1.75rem;
  }
  
  .hero-subtitle-index {
    font-size: 1rem;
  }
  
  .hero-buttons-index {
    flex-direction: column;
  }
  
  .hero-buttons-index .btn {
    width: 100%;
  }
  
  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

.features-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #2563eb;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
}

.card-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .features-section-index {
    padding: 3rem 0;
  }
  
  .features-cards-index {
    flex-direction: column;
  }
  
  .feature-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.about-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

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

.value-item-index i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #3b82f6;
}

.value-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.value-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

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

.about-image-index {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .about-content-index {
    flex-direction: column;
  }
  
  .about-text-block-index {
    flex: 1 1 100%;
  }
  
  .about-image-block-index {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .about-section-index {
    padding: 3rem 0;
  }
}

.blog-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

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

.blog-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.blog-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.blog-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.blog-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.blog-card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog-card-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-card-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.blog-card-link-index {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-link-index:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.blog-footer-index {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 768px) {
  .blog-section-index {
    padding: 3rem 0;
  }
  
  .blog-cards-index {
    flex-direction: column;
  }
  
  .blog-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0a0f1e;
  overflow: hidden;
}

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section-index {
    padding: 3rem 0;
  }
}

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

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

.process-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

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

.step-number-index {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  min-width: 100px;
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-section-index {
    padding: 3rem 0;
  }
  
  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-index {
    font-size: 2rem;
    min-width: auto;
  }
}

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

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

.testimonials-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

.quote-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #94a3b8;
}

@media (max-width: 768px) {
  .testimonials-section-index {
    padding: 3rem 0;
  }
  
  .testimonials-grid-index {
    flex-direction: column;
  }
  
  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.benefits-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.benefits-list-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-item-index {
  flex: 1 1 280px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-icon-index {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #2563eb;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
}

.benefit-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.benefit-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-section-index {
    padding: 3rem 0;
  }
  
  .benefits-list-index {
    flex-direction: column;
  }
  
  .benefit-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #2563eb, #059669);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.cta-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0;
}

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

.cta-buttons-index .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
}

.cta-buttons-index .btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.cta-buttons-index .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.cta-buttons-index .btn-outline-dark {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons-index .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .cta-section-index {
    padding: 3rem 0;
  }
  
  .cta-buttons-index {
    flex-direction: column;
  }
  
  .cta-buttons-index .btn {
    width: 100%;
  }
}

.partners-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

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

.partners-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.partners-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.partners-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.partner-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.partner-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  margin: 0 auto;
}

.partner-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  margin: 0;
}

.partner-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  flex-grow: 1;
}

.partner-link-index {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.partner-link-index:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .partners-section-index {
    padding: 3rem 0;
  }
  
  .partners-grid-index {
    flex-direction: column;
  }
  
  .partner-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 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: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #2563eb;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .cookie-banner-text-index {
    text-align: center;
    order: 1;
    width: 100%;
  }
  
  .cookie-banner-buttons-index {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

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

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

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

.footer-about {
  display: block;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

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

.footer-nav-column h4,
.footer-contact-column h4 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.25px;
}

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

.footer-link {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

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

.footer-legal {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal h4 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.25px;
}

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

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

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

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

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

@media (min-width: 768px) {
  .footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

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

  .footer-nav-column,
  .footer-contact-column {
    flex: 1;
    min-width: 200px;
  }

  .footer-legal-nav {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .footer-sections {
    gap: clamp(3rem, 5vw, 4rem);
  }
}
    

.category-page-general-ledger-accounting {
  width: 100%;
}

.hero-section-general-ledger-accounting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-general-ledger-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-header-general-ledger-accounting {
  text-align: center;
}

.hero-title-general-ledger-accounting {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-general-ledger-accounting {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-general-ledger-accounting {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.hero-text-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-section-general-ledger-accounting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-general-ledger-accounting {
  text-align: center;
}

.posts-title-general-ledger-accounting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-general-ledger-accounting {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 300px;
  max-width: 420px;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-general-ledger-accounting:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.card-image-wrapper-general-ledger-accounting {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}

.card-image-general-ledger-accounting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-general-ledger-accounting {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-general-ledger-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.card-reading-time-general-ledger-accounting,
.card-level-general-ledger-accounting,
.card-date-general-ledger-accounting {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #64748b;
}

.card-reading-time-general-ledger-accounting i,
.card-level-general-ledger-accounting i,
.card-date-general-ledger-accounting i {
  color: #2563eb;
  font-size: 0.9rem;
}

.card-link-general-ledger-accounting {
  display: inline-block;
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.card-link-general-ledger-accounting:hover {
  color: #1d4ed8;
  border-bottom-color: #2563eb;
}

.concepts-section-general-ledger-accounting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.concepts-header-general-ledger-accounting {
  text-align: center;
}

.concepts-title-general-ledger-accounting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-list-general-ledger-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.concept-item-general-ledger-accounting {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.concept-icon-general-ledger-accounting {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 8px;
  color: #2563eb;
  font-size: 1.5rem;
}

.concept-text-general-ledger-accounting {
  flex: 1;
  min-width: 0;
}

.concept-name-general-ledger-accounting {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-description-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-section-general-ledger-accounting {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practices-header-general-ledger-accounting {
  text-align: center;
}

.practices-title-general-ledger-accounting {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-subtitle-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.practice-item-general-ledger-accounting {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.practice-item-general-ledger-accounting:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.practice-number-general-ledger-accounting {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.practice-heading-general-ledger-accounting {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-text-general-ledger-accounting {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero-section-general-ledger-accounting {
    padding: 2rem 0;
  }

  .posts-section-general-ledger-accounting {
    padding: 2rem 0;
  }

  .concepts-section-general-ledger-accounting {
    padding: 2rem 0;
  }

  .practices-section-general-ledger-accounting {
    padding: 2rem 0;
  }

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

  .concept-item-general-ledger-accounting {
    flex-direction: column;
    gap: 1rem;
  }

  .concept-icon-general-ledger-accounting {
    align-self: flex-start;
  }

  .practice-item-general-ledger-accounting {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

  .posts-grid-general-ledger-accounting {
    gap: 1rem;
  }
}

.main-t-konto-grundlagen {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-t-konto-grundlagen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.02em;
}

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

.hero-meta-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-t-konto-grundlagen {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-t-konto-grundlagen {
  color: #64748b;
}

.hero-image-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-t-konto-grundlagen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-t-konto-grundlagen a {
  font-size: 0.875rem;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-t-konto-grundlagen a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-t-konto-grundlagen span {
  font-size: 0.875rem;
  color: #64748b;
}

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

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

.intro-text-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
}

.intro-paragraph-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.intro-image-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-t-konto-grundlagen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.structure-section-t-konto-grundlagen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-content-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-text-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
}

.structure-paragraph-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.structure-highlight-t-konto-grundlagen {
  background: rgba(37, 99, 235, 0.15);
  border-left: 4px solid #3b82f6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #e0e7ff;
  line-height: 1.6;
  margin-bottom: 0;
}

.structure-image-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-t-konto-grundlagen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

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

.steps-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
}

.steps-subtitle-t-konto-grundlagen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.steps-grid-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-t-konto-grundlagen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-t-konto-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.step-number-t-konto-grundlagen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  font-family: 'Lora', serif;
}

.step-title-t-konto-grundlagen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: 'Lora', serif;
}

.step-text-t-konto-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

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

.practice-content-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
}

.practice-paragraph-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.practice-image-t-konto-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-t-konto-grundlagen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

.benefits-header-t-konto-grundlagen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
}

.benefits-subtitle-t-konto-grundlagen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.benefits-cards-t-konto-grundlagen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-card-t-konto-grundlagen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card-t-konto-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.benefit-icon-t-konto-grundlagen {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #10b981;
  font-weight: 700;
  line-height: 1;
}

.benefit-title-t-konto-grundlagen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-family: 'Lora', serif;
}

.benefit-text-t-konto-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.tips-section-t-konto-grundlagen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-t-konto-grundlagen {
  max-width: 900px;
  margin: 0 auto;
}

.tips-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
  text-align: center;
}

.tips-list-t-konto-grundlagen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tip-item-t-konto-grundlagen {
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-heading-t-konto-grundlagen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Lora', serif;
  margin-bottom: 0;
}

.tip-text-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

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

.cta-content-t-konto-grundlagen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
}

.cta-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.cta-text-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

.cta-button-t-konto-grundlagen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
  border: 2px solid #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button-t-konto-grundlagen:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

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

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

.disclaimer-title-t-konto-grundlagen {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-family: 'Lora', serif;
}

.disclaimer-text-t-konto-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
}

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

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

.related-title-t-konto-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.2;
  font-family: 'Lora', serif;
  letter-spacing: -0.01em;
  text-align: center;
}

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

.related-card-t-konto-grundlagen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-t-konto-grundlagen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.related-image-t-konto-grundlagen {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.related-text-t-konto-grundlagen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-t-konto-grundlagen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.3;
  font-family: 'Lora', serif;
}

.related-card-description-t-konto-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

.related-link-t-konto-grundlagen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-t-konto-grundlagen:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .hero-content-t-konto-grundlagen,
  .intro-content-t-konto-grundlagen,
  .structure-content-t-konto-grundlagen,
  .practice-content-t-konto-grundlagen {
    flex-direction: column;
  }

  .hero-text-t-konto-grundlagen,
  .hero-image-t-konto-grundlagen,
  .intro-text-t-konto-grundlagen,
  .intro-image-t-konto-grundlagen,
  .structure-text-t-konto-grundlagen,
  .structure-image-t-konto-grundlagen,
  .practice-text-t-konto-grundlagen,
  .practice-image-t-konto-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-t-konto-grundlagen,
  .benefit-card-t-konto-grundlagen,
  .related-card-t-konto-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-grid-t-konto-grundlagen,
  .benefits-cards-t-konto-grundlagen,
  .related-cards-t-konto-grundlagen {
    flex-direction: column;
  }

  .hero-title-t-konto-grundlagen {
    font-size: 2rem;
  }

  .intro-title-t-konto-grundlagen,
  .structure-title-t-konto-grundlagen,
  .practice-title-t-konto-grundlagen,
  .benefits-title-t-konto-grundlagen,
  .steps-title-t-konto-grundlagen,
  .tips-title-t-konto-grundlagen,
  .cta-title-t-konto-grundlagen,
  .related-title-t-konto-grundlagen {
    font-size: 1.75rem;
  }

  .breadcrumbs-t-konto-grundlagen {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section-t-konto-grundlagen,
  .intro-section-t-konto-grundlagen,
  .structure-section-t-konto-grundlagen,
  .practice-section-t-konto-grundlagen,
  .steps-section-t-konto-grundlagen,
  .benefits-section-t-konto-grundlagen,
  .tips-section-t-konto-grundlagen,
  .cta-section-t-konto-grundlagen,
  .disclaimer-section-t-konto-grundlagen,
  .related-section-t-konto-grundlagen {
    padding: 2rem 0;
  }

  .hero-meta-t-konto-grundlagen {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-item-t-konto-grundlagen,
  .meta-divider-t-konto-grundlagen {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .step-card-t-konto-grundlagen,
  .benefit-card-t-konto-grundlagen,
  .related-card-t-konto-grundlagen {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }

  .steps-grid-t-konto-grundlagen,
  .benefits-cards-t-konto-grundlagen,
  .related-cards-t-konto-grundlagen {
    gap: 1.5rem;
  }
}

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

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

.main-buchungssaetze-erfassen {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-wrapper-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-buchungssaetze-erfassen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

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

.meta-item-buchungssaetze-erfassen i {
  color: #3b82f6;
}

.hero-image-wrapper-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-buchungssaetze-erfassen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-buchungssaetze-erfassen a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-buchungssaetze-erfassen a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-buchungssaetze-erfassen span {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-buchungssaetze-erfassen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-buchungssaetze-erfassen,
  .hero-image-wrapper-buchungssaetze-erfassen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-title-buchungssaetze-erfassen {
    font-size: 2rem;
  }
}

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

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

.intro-text-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  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-text-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-buchungssaetze-erfassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-buchungssaetze-erfassen {
    flex-direction: column;
  }
  
  .intro-text-block-buchungssaetze-erfassen,
  .intro-image-block-buchungssaetze-erfassen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-buchungssaetze-erfassen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #ffffff;
  overflow: hidden;
}

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

.structure-text-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.structure-text-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.structure-list-buchungssaetze-erfassen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.structure-item-buchungssaetze-erfassen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.item-number-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #3b82f6;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.item-content-buchungssaetze-erfassen {
  flex: 1;
}

.item-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.item-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

.structure-image-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-buchungssaetze-erfassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .structure-content-buchungssaetze-erfassen {
    flex-direction: column;
  }
  
  .structure-text-block-buchungssaetze-erfassen,
  .structure-image-block-buchungssaetze-erfassen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-buchungssaetze-erfassen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #0f172a;
  overflow: hidden;
}

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

.process-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.process-intro-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.process-steps-buchungssaetze-erfassen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-buchungssaetze-erfassen {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-step-buchungssaetze-erfassen:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-header-buchungssaetze-erfassen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2563eb;
  min-width: 50px;
  flex-shrink: 0;
}

.step-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.step-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .process-steps-buchungssaetze-erfassen {
    grid-template-columns: 1fr;
  }
}

.examples-section-buchungssaetze-erfassen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #ffffff;
  overflow: hidden;
}

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

.examples-text-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.examples-intro-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.example-item-buchungssaetze-erfassen {
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-item-buchungssaetze-erfassen:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.example-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.example-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

.highlight-text-buchungssaetze-erfassen {
  background: rgba(59, 130, 246, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #93c5fd;
  font-weight: 500;
}

.examples-image-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-image-buchungssaetze-erfassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .examples-content-buchungssaetze-erfassen {
    flex-direction: column;
  }
  
  .examples-text-block-buchungssaetze-erfassen,
  .examples-image-block-buchungssaetze-erfassen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-buchungssaetze-erfassen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #0f172a;
  overflow: hidden;
}

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

.mistakes-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.mistakes-intro-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mistakes-grid-buchungssaetze-erfassen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.mistake-card-buchungssaetze-erfassen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mistake-card-buchungssaetze-erfassen:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.mistake-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.mistake-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .mistakes-grid-buchungssaetze-erfassen {
    grid-template-columns: 1fr;
  }
}

.conclusion-section-buchungssaetze-erfassen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #ffffff;
  overflow: hidden;
}

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

.conclusion-text-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.conclusion-text-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-buchungssaetze-erfassen {
  background: rgba(59, 130, 246, 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

.highlight-box-text-buchungssaetze-erfassen strong {
  color: #ffffff;
}

.conclusion-image-block-buchungssaetze-erfassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-buchungssaetze-erfassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .conclusion-content-buchungssaetze-erfassen {
    flex-direction: column;
  }
  
  .conclusion-text-block-buchungssaetze-erfassen,
  .conclusion-image-block-buchungssaetze-erfassen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-buchungssaetze-erfassen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: #0f172a;
  overflow: hidden;
}

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

.related-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.related-intro-buchungssaetze-erfassen {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.related-cards-buchungssaetze-erfassen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-buchungssaetze-erfassen {
  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;
}

.related-card-buchungssaetze-erfassen:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-image-wrapper-buchungssaetze-erfassen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-buchungssaetze-erfassen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-buchungssaetze-erfassen:hover .related-card-image-buchungssaetze-erfassen {
  transform: scale(1.05);
}

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

.card-title-buchungssaetze-erfassen {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.card-text-buchungssaetze-erfassen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #475569;
  flex: 1;
}

.card-link-buchungssaetze-erfassen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  padding-top: 0.75rem;
}

.card-link-buchungssaetze-erfassen:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-buchungssaetze-erfassen {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 640px) {
  .container {
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  }
}

body {
  overflow-x: hidden;
}

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

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

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

.main-abschlussarbeiten-bilanz {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-abschlussarbeiten-bilanz {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.meta-divider-abschlussarbeiten-bilanz {
  color: #64748b;
  font-size: 0.9rem;
}

.hero-image-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-abschlussarbeiten-bilanz a {
  color: #3b82f6;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.breadcrumbs-abschlussarbeiten-bilanz a:hover {
  color: #1d4ed8;
}

.breadcrumbs-abschlussarbeiten-bilanz span {
  color: #64748b;
  font-size: 0.9rem;
}

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

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

.intro-text-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-abschlussarbeiten-bilanz {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.process-content-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-intro-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.step-card-abschlussarbeiten-bilanz {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-abschlussarbeiten-bilanz:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number-abschlussarbeiten-bilanz {
  color: #2563eb;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.step-body-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.step-text-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

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

.content-text-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-abschlussarbeiten-bilanz {
  list-style: none;
  padding-left: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.list-item-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-abschlussarbeiten-bilanz:before {
  content: "";
  color: #2563eb;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.content-image-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.highlight-content-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.highlight-box-abschlussarbeiten-bilanz {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.highlight-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-text-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

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

.details-image-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.details-text-abschlussarbeiten-bilanz {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.details-paragraph-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.conclusion-content-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

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

.related-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-abschlussarbeiten-bilanz {
  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;
  display: flex;
  flex-direction: column;
}

.related-card-abschlussarbeiten-bilanz:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-image-abschlussarbeiten-bilanz {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-abschlussarbeiten-bilanz {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-abschlussarbeiten-bilanz {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-abschlussarbeiten-bilanz {
  color: #2563eb;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.related-link-abschlussarbeiten-bilanz:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-content-abschlussarbeiten-bilanz {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #64748b;
}

.disclaimer-title-abschlussarbeiten-bilanz {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.disclaimer-text-abschlussarbeiten-bilanz {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .hero-content-abschlussarbeiten-bilanz,
  .intro-content-abschlussarbeiten-bilanz,
  .content-wrapper-abschlussarbeiten-bilanz,
  .details-wrapper-abschlussarbeiten-bilanz {
    flex-direction: column;
  }

  .hero-text-abschlussarbeiten-bilanz,
  .hero-image-abschlussarbeiten-bilanz,
  .intro-text-abschlussarbeiten-bilanz,
  .intro-image-abschlussarbeiten-bilanz,
  .content-text-abschlussarbeiten-bilanz,
  .content-image-abschlussarbeiten-bilanz,
  .details-image-abschlussarbeiten-bilanz,
  .details-text-abschlussarbeiten-bilanz {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-abschlussarbeiten-bilanz {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-abschlussarbeiten-bilanz {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-abschlussarbeiten-bilanz {
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .step-card-abschlussarbeiten-bilanz {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }

  .related-card-abschlussarbeiten-bilanz {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

.main-stornobuchung-fehlerkorrektur {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-stornobuchung-fehlerkorrektur {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-stornobuchung-fehlerkorrektur a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-stornobuchung-fehlerkorrektur a:hover {
  color: #60a5fa;
}

.breadcrumbs-stornobuchung-fehlerkorrektur span {
  color: #cbd5e1;
}

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

.hero-text-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-stornobuchung-fehlerkorrektur {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-stornobuchung-fehlerkorrektur {
  color: #94a3b8;
}

.meta-divider-stornobuchung-fehlerkorrektur {
  color: #64748b;
}

.hero-image-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

  .hero-title-stornobuchung-fehlerkorrektur {
    font-size: 2rem;
  }
}

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

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

.intro-text-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

.process-header-stornobuchung-fehlerkorrektur {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.process-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.process-subtitle-stornobuchung-fehlerkorrektur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
}

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

.step-card-stornobuchung-fehlerkorrektur {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  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;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card-stornobuchung-fehlerkorrektur:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.step-number-stornobuchung-fehlerkorrektur {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.step-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.step-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-stornobuchung-fehlerkorrektur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.example-text-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.example-paragraph-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.example-box-stornobuchung-fehlerkorrektur {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.example-box-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.example-box-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.example-note-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.example-image-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-stornobuchung-fehlerkorrektur img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .example-content-stornobuchung-fehlerkorrektur {
    flex-direction: column;
  }

  .example-text-stornobuchung-fehlerkorrektur,
  .example-image-stornobuchung-fehlerkorrektur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-stornobuchung-fehlerkorrektur {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-header-stornobuchung-fehlerkorrektur {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.practices-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.practices-subtitle-stornobuchung-fehlerkorrektur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
}

.tips-wrapper-stornobuchung-fehlerkorrektur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-item-stornobuchung-fehlerkorrektur {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item-stornobuchung-fehlerkorrektur:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
}

.tip-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.tip-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-item-stornobuchung-fehlerkorrektur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.mistakes-text-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-paragraph-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.mistakes-list-stornobuchung-fehlerkorrektur {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-item-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  padding-left: 0;
  margin: 0;
}

.mistakes-image-stornobuchung-fehlerkorrektur {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-stornobuchung-fehlerkorrektur img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .mistakes-content-stornobuchung-fehlerkorrektur {
    flex-direction: column;
  }

  .mistakes-text-stornobuchung-fehlerkorrektur,
  .mistakes-image-stornobuchung-fehlerkorrektur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-stornobuchung-fehlerkorrektur {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.conclusion-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.conclusion-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.conclusion-highlight-stornobuchung-fehlerkorrektur {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-stornobuchung-fehlerkorrektur {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.related-subtitle-stornobuchung-fehlerkorrektur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
}

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

.related-card-stornobuchung-fehlerkorrektur {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.related-card-stornobuchung-fehlerkorrektur:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-image-stornobuchung-fehlerkorrektur {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-stornobuchung-fehlerkorrektur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-stornobuchung-fehlerkorrektur:hover .related-img-stornobuchung-fehlerkorrektur {
  transform: scale(1.05);
}

.card-body-stornobuchung-fehlerkorrektur {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.card-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.card-description-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-link-stornobuchung-fehlerkorrektur {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.card-link-stornobuchung-fehlerkorrektur:hover {
  color: #1d4ed8;
}

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

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

.disclaimer-section-stornobuchung-fehlerkorrektur {
  background: #0a0f1e;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-stornobuchung-fehlerkorrektur {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-stornobuchung-fehlerkorrektur {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.disclaimer-text-stornobuchung-fehlerkorrektur {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-stornobuchung-fehlerkorrektur,
  .intro-section-stornobuchung-fehlerkorrektur,
  .process-section-stornobuchung-fehlerkorrektur,
  .example-section-stornobuchung-fehlerkorrektur,
  .best-practices-section-stornobuchung-fehlerkorrektur,
  .mistakes-section-stornobuchung-fehlerkorrektur,
  .conclusion-section-stornobuchung-fehlerkorrektur,
  .related-section-stornobuchung-fehlerkorrektur {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-stornobuchung-fehlerkorrektur {
    font-size: 0.8rem;
  }

  .hero-title-stornobuchung-fehlerkorrektur {
    font-size: 1.5rem;
  }

  .process-title-stornobuchung-fehlerkorrektur,
  .practices-title-stornobuchung-fehlerkorrektur,
  .example-title-stornobuchung-fehlerkorrektur,
  .mistakes-title-stornobuchung-fehlerkorrektur,
  .related-title-stornobuchung-fehlerkorrektur,
  .intro-title-stornobuchung-fehlerkorrektur,
  .conclusion-title-stornobuchung-fehlerkorrektur {
    font-size: 1.5rem;
  }
}

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

html, body {
  width: 100%;
}

.accounting-expertise-about {
  width: 100%;
  overflow: hidden;
}

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

section {
  overflow: hidden;
  width: 100%;
}

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

.hero-ledger-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-text-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.25rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.stat-box-about {
  text-align: center;
  flex: 1 1 150px;
  min-width: 120px;
}

.stat-number-about {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-light-secondary);
  font-weight: 500;
}

.foundation-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.foundation-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem clamp(0.8rem, 1.5vw, 1.2rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.foundation-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.foundation-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.foundation-block-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.approach-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

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

.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, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(3rem, 6vw, 4.5rem);
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.step-title-about {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.expertise-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.expertise-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.expertise-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

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

.expertise-card-about {
  flex: 1 1 clamp(250px, 45%, 380px);
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  height: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  align-items: center;
}

.card-title-about {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.card-text-about {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.15rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 600;
}

.commitment-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 850px;
  margin: 0 auto;
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  text-align: center;
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.commitment-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.commitment-text-about strong {
  color: var(--color-text-light-primary);
  font-weight: 700;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-heading-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .process-step-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .expertise-cards-about {
    gap: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  .expertise-card-about {
    flex: 1 1 clamp(280px, 48%, 400px);
  }
}

@media (min-width: 1024px) {
  .process-step-about {
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }

  .expertise-cards-about {
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .expertise-card-about {
    flex: 1 1 clamp(320px, 30%, 380px);
  }
}

.faq-page {
  width: 100%;
  overflow: hidden;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: var(--line-height-normal);
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-content-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

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

.faq-item-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-item-trigger:hover {
  background-color: var(--color-bg-tertiary);
}

.faq-item.active .faq-item-trigger {
  background-color: #f0f7ff;
}

.faq-item-question {
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  line-height: var(--line-height-normal);
  flex: 1;
}

.faq-item-icon {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.faq-item.active .faq-item-icon {
  transform: rotate(45deg);
}

.faq-item-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  border-top: 1px solid #e2e8f0;
  background-color: #fafbfc;
}

.faq-item.active .faq-item-answer {
  display: block;
}

.faq-item-answer p {
  font-family: var(--font-primary);
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.faq-image-side {
  display: none;
}

.faq-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.faq-cta-text {
  font-family: var(--font-primary);
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-lg);
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-content-container {
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
  }

  .faq-image-side {
    display: block;
    position: sticky;
    top: var(--space-lg);
  }

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

  .faq-item-trigger {
    padding: var(--space-lg);
  }

  .faq-item-answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) 0;
  }

  .faq-content {
    padding: var(--space-4xl) 0;
  }

  .faq-content-container {
    gap: var(--space-3xl);
  }

  .faq-cta {
    padding: var(--space-4xl) 0;
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  overflow: hidden;
}

.services-hero {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.services-hero__content {
  text-align: center;
  max-width: 600px;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
}

.services-hero__image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-hero__container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }

  .services-hero__content {
    text-align: left;
    flex: 1;
  }

  .services-hero__image {
    flex: 1;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-xl);
  }

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

.services-offerings {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.services-offerings__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-offerings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .services-offerings {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-offerings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-offerings {
    padding: var(--space-4xl) var(--space-xl);
  }

  .services-offerings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }
}

.services-card {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.services-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.services-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.services-card__feature {
  display: inline-block;
  background-color: #e0e7ff;
  color: #3730a3;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-cta {
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--color-bg-dark-accent) 0%, var(--color-bg-primary) 100%);
  overflow: hidden;
}

.services-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-2xl);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  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-md);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-warning: #dc2626;
  --color-accent-success: #10b981;
  --color-accent-info: #0ea5e9;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Lora', 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.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

.ledger-hub {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
}

.ledger-hub .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.ledger-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.ledger-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.ledger-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.ledger-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.ledger-hub .updated-date {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.ledger-hub ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-2xl);
}

.ledger-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.ledger-hub .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.ledger-hub .contact-section h2 {
  margin-top: 0;
}

.ledger-hub .contact-section p {
  margin-bottom: var(--space-md);
}

.ledger-hub .contact-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .ledger-hub .content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .ledger-hub .content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.thank-icon-wrapper {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon {
  width: 80px;
  height: 80px;
  color: var(--color-accent-success);
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-accent-success);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  line-height: var(--line-height-normal);
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
  border: 2px solid var(--color-primary);
}

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

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

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

@media (min-width: 768px) {
  .thank-wrapper {
    padding: var(--space-3xl) 0;
  }

  .thank-icon {
    width: 100px;
    height: 100px;
  }

  .thank-icon-wrapper {
    margin-bottom: var(--space-2xl);
  }

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

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

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

  .thank-next-steps {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-4xl) 0;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon-wrapper {
    margin-bottom: var(--space-3xl);
  }

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

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

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

  .thank-next-steps {
    margin-bottom: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }

  .btn-return:active {
    transform: none;
  }
}

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: rotate-decoration 20s linear infinite;
  z-index: 1;
}

@keyframes rotate-decoration {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fade-in-up 0.8s ease-out 0.3s backwards;
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
  line-height: var(--line-height-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-muted);
  line-height: var(--line-height-relaxed);
  padding: var(--space-md) 0;
  max-width: 600px;
  margin: 0 auto;
}

.error-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-md) 0;
}

.keyword-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-bg-card-dark);
  color: var(--color-text-dark-secondary);
  border-radius: var(--radius-md);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.keyword-badge:hover {
  background-color: rgba(37, 99, 235, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  margin-top: var(--space-md);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  margin-top: 0 !important; 
}

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

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

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

  .error-code-container {
    max-width: 350px;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

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

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

  .keyword-badge {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

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

  .error-code-container {
    max-width: 400px;
  }

  .error-decoration {
    border-width: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code-container,
  .error-decoration,
  .error-text,
  .keyword-badge,
  .btn-primary {
    animation: none;
    transition: none;
  }
}

.contact-reach-us {
  width: 100%;
}

.contact-reach-us-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-reach-us-hero-content {
  text-align: center;
}

.contact-reach-us-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-reach-us-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.contact-reach-us-main {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-reach-us-content {
  width: 100%;
}

.contact-reach-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.contact-reach-us-form-wrapper {
  flex: 1 1 100%;
}

.contact-reach-us-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-reach-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-reach-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-reach-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.contact-reach-us-input,
.contact-reach-us-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-bg-tertiary);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--color-text-light-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-reach-us-input:focus,
.contact-reach-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-reach-us-input::placeholder,
.contact-reach-us-textarea::placeholder {
  color: var(--color-text-light-muted);
}

.contact-reach-us-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-reach-us-form-privacy {
  margin-top: var(--space-md);
}

.contact-reach-us-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
}

.contact-reach-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-reach-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

.contact-reach-us-submit:active {
  transform: translateY(0);
}

.contact-reach-us-info-wrapper {
  flex: 1 1 100%;
}

.contact-reach-us-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-reach-us-info-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #e2e8f0;
}

.contact-reach-us-info-item:last-of-type {
  border-bottom: none;
}

.contact-reach-us-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-reach-us-info-content h3 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-tight);
}

.contact-reach-us-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-reach-us-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-reach-us-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-info-box {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  border-left: 4px solid var(--color-primary);
}

.contact-reach-us-info-box h3 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-reach-us-info-box p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xs);
}

.contact-reach-us-info-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .contact-reach-us-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-reach-us-main {
    padding: var(--space-3xl) 0;
  }

  .contact-reach-us-grid {
    gap: var(--space-3xl);
  }

  .contact-reach-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-reach-us-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-reach-us-submit {
    width: auto;
    padding: var(--space-md) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-hero {
    padding: var(--space-4xl) 0;
  }

  .contact-reach-us-main {
    padding: var(--space-4xl) 0;
  }

  .contact-reach-us-grid {
    gap: var(--space-3xl);
  }

  .contact-reach-us-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-reach-us-info-wrapper {
    flex: 1 1 50%;
  }
}