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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #1e293b;
  --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: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-light-muted: #9ca3af;
  
  
  --color-primary: #d4af37;
  --color-primary-hover: #e5c158;
  --color-secondary: #0ea5a5;
  --color-secondary-hover: #06b6d4;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
}

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

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

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

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

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

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

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

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

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

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

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

h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

p:last-child {
  margin-bottom: 0;
}

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

a:hover,
a:focus {
  color: var(--color-primary-hover);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

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

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

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

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

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

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

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

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

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

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  border-color: var(--color-primary);
}

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

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  border-color: var(--color-primary);
}

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

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

.btn-block {
  width: 100%;
  display: flex;
}

.card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.card-light {
  background: var(--color-bg-card-light);
  color: var(--color-text-light-primary);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

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

.card-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-dark-primary);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

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

.card-padding {
  padding: var(--space-lg);
}

.card-padding-xl {
  padding: var(--space-xl);
}

.card-header {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid currentColor;
  opacity: 0.2;
  margin-bottom: var(--space-md);
}

.card-body {
  flex: 1;
}

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid currentColor;
  opacity: 0.2;
  margin-top: var(--space-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-lg);
  text-transform: uppercase;
}

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

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

.badge-success {
  background: var(--color-success);
  color: #ffffff;
}

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

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

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

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

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

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

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

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

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

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

.section-dark-primary {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-light-primary {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: var(--space-4xl) var(--space-lg);
}

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

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

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

.section-light-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: var(--space-4xl) var(--space-lg);
}

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

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

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

.section-dark-secondary {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark-primary);
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-xs {
  padding-top: var(--space-xs);
}

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

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

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

.pt-xl {
  padding-top: var(--space-xl);
}

.pt-2xl {
  padding-top: var(--space-2xl);
}

.pt-3xl {
  padding-top: var(--space-3xl);
}

.pb-xs {
  padding-bottom: var(--space-xs);
}

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

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

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

.pb-xl {
  padding-bottom: var(--space-xl);
}

.pb-2xl {
  padding-bottom: var(--space-2xl);
}

.pb-3xl {
  padding-bottom: var(--space-3xl);
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.border {
  border: 1px solid currentColor;
  opacity: 0.1;
}

.border-t {
  border-top: 1px solid currentColor;
  opacity: 0.1;
}

.border-b {
  border-bottom: 1px solid currentColor;
  opacity: 0.1;
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-dark-primary,
  .section-light-primary,
  .section-light-secondary,
  .section-dark-secondary {
    padding: var(--space-2xl) var(--space-lg);
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  .flex {
    flex-direction: column;
  }

  .section-dark-primary,
  .section-light-primary,
  .section-light-secondary,
  .section-dark-secondary {
    padding: var(--space-xl) var(--space-sm);
  }
}

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

  .btn,
  .no-print {
    display: none;
  }
}

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

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-dark-primary);
  }
}
.header-gastro-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 100;
}

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

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

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

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

.header-gastro-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--tracking-tight);
}

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

.header-gastro-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

.header-gastro-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-gastro-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

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

.header-gastro-hub-mobile-toggle:hover span {
  background: var(--color-primary-hover);
}

.header-gastro-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-gastro-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-gastro-hub-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

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

.header-gastro-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem 0;
  flex: 1;
}

.header-gastro-hub-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.05);
  transition: all var(--transition-base);
}

.header-gastro-hub-mobile-link:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-gastro-hub-mobile-cta {
  margin: 1.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-base);
}

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

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

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

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

  .header-gastro-hub-mobile-menu {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

.stat-label-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #94a3b8;
}

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

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

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

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

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

  .btn {
    width: 100%;
  }
}

.about-section-index {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  line-height: 1.2;
}

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

.about-text-secondary-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

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

.feature-check-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1e293b;
}

.check-icon-index {
  color: #d4af37;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.check-text-index {
  font-weight: 500;
}

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

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

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

.services-section-index {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.services-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  line-height: 1.2;
}

.services-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

.service-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon-index {
  font-size: 2.5rem;
  color: #d4af37;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

.service-card-title-index {
  font-size: 1.1rem;
  color: #0a0f1e;
  margin: 0;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .service-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

.featured-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  line-height: 1.2;
}

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

.featured-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

.featured-card-title-index {
  font-size: 1.15rem;
  color: #0a0f1e;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.featured-card-text-index {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  display: inline-block;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.featured-card-link-index:hover {
  color: #e5c158;
}

.featured-footer-index {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
}

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

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  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;
  transition: all 0.3s ease;
}

.process-step-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

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

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

@media (max-width: 768px) {
  .process-step-index {
    flex: 1 1 100%;
  }
}

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  line-height: 1.2;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.quote-text-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  border-left: 4px solid #d4af37;
  padding-left: 1rem;
}

.quote-author-index {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonial-card-index {
    flex: 1 1 100%;
  }
}

.faq-section-index {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0a0f1e;
  line-height: 1.2;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.faq-item-index {
  flex: 1 1 350px;
  max-width: 450px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-index {
  font-size: 1.05rem;
  color: #0a0f1e;
  margin: 0;
  font-weight: 700;
}

.faq-answer-index {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-item-index {
    flex: 1 1 100%;
  }
}

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

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

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

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  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 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  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;
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.benefit-icon-index {
  font-size: 2rem;
  color: #d4af37;
}

.benefit-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-index {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.benefit-description-index {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit-item-index {
    flex: 1 1 100%;
  }
}

.cta-section-index {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.btn-lg {
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.1rem);
}

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.85rem, 1vw + 0.25rem, 0.95rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 250px;
}

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

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

.cookie-btn-accept-index {
  background: #d4af37;
  color: #0a0f1e;
}

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

  .btn {
    width: 100%;
  }

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

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-dark-secondary);
  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,
.footer-nav-section,
.footer-contact,
.footer-legal-section {
  display: block;
}

.footer h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: var(--tracking-wide);
}

.footer 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: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-about p {
  max-width: 55ch;
  color: var(--color-text-dark-secondary);
}

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

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

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

.footer-contact p {
  color: var(--color-text-dark-secondary);
  margin-bottom: 0.5rem;
}

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

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

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

  .footer-about {
    flex: 1 1 250px;
  }

  .footer-nav-section,
  .footer-contact,
  .footer-legal-section {
    flex: 0 1 auto;
    min-width: 180px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
  }
}

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

  .footer-nav-section,
  .footer-contact {
    flex: 0 1 200px;
  }

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

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

.category-page-restaurant-hospitality-accounting {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-category {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  position: relative;
}

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

.hero-header-category {
  text-align: center;
}

.hero-title-category {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.hero-subtitle-category {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hero-description-category {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.posts-section-category {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

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

.posts-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.posts-subtitle-category {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 0;
}

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

.card-restaurant-hospitality-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(280px, 100%, 380px);
  max-width: 400px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-restaurant-hospitality-accounting:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-restaurant-hospitality-accounting img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.card-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--tracking-tight);
}

.card-description-category {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: var(--space-sm);
}

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  font-size: 0.8125rem;
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: var(--space-sm);
}

.card-time-category,
.card-level-category,
.card-date-category {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.card-time-category i,
.card-level-category i,
.card-date-category i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

.card-link-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: auto;
}

.card-link-category:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.essentials-section-category {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.essentials-header-category {
  text-align: center;
}

.essentials-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.essentials-intro-category {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 0;
}

.essentials-list-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.essential-item-category {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.essential-number-category {
  flex-shrink: 0;
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  flex-shrink: 0;
}

.essential-content-category {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.essential-heading-category {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 0;
}

.essential-text-category {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.insights-section-category {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.insights-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 850px;
  margin: 0 auto;
}

.insights-header-category {
  text-align: center;
}

.insights-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 0;
  letter-spacing: var(--tracking-tight);
}

.insight-box-category {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.insight-quote-category {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin-bottom: 0;
}

.insight-author-category {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  margin-bottom: 0;
}

.insight-explanation-category {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

.insight-explanation-category:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section-category,
  .posts-section-category,
  .essentials-section-category,
  .insights-section-category {
    padding: clamp(2rem, 5vw, 3rem) var(--space-sm);
  }

  .essential-item-category {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .card-restaurant-hospitality-accounting {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-category,
  .posts-section-category,
  .essentials-section-category,
  .insights-section-category {
    padding: clamp(1.5rem, 4vw, 2rem) var(--space-sm);
  }

  .posts-grid-category {
    flex-direction: column;
  }

  .card-restaurant-hospitality-accounting {
    flex: 1 1 100%;
  }

  .essential-item-category {
    flex-direction: column;
    gap: var(--space-md);
  }

  .essential-number-category {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .insight-box-category {
    border-left-width: 3px;
  }
}

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

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

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

.main-lebensmittelkosten-berechnung {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumbs-lebensmittelkosten-berechnung {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: #cbd5e1;
}

.breadcrumbs-lebensmittelkosten-berechnung a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-lebensmittelkosten-berechnung a:hover {
  color: #e5c158;
}

.breadcrumb-divider-lebensmittelkosten-berechnung {
  color: #64748b;
}

.breadcrumb-current-lebensmittelkosten-berechnung {
  color: #cbd5e1;
}

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

.hero-text-wrapper-lebensmittelkosten-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-lebensmittelkosten-berechnung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-item-lebensmittelkosten-berechnung {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label-lebensmittelkosten-berechnung {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.meta-value-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #d4af37;
  font-weight: 600;
}

.hero-image-wrapper-lebensmittelkosten-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-lebensmittelkosten-berechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-lebensmittelkosten-berechnung {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-text-wrapper-lebensmittelkosten-berechnung,
  .hero-image-wrapper-lebensmittelkosten-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-lebensmittelkosten-berechnung {
    max-height: 350px;
  }

  .hero-meta-lebensmittelkosten-berechnung {
    flex-direction: column;
    gap: 1rem;
  }
}

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

.intro-content-lebensmittelkosten-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-lebensmittelkosten-berechnung {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-lebensmittelkosten-berechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-lebensmittelkosten-berechnung {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-lebensmittelkosten-berechnung {
  background: #f8fafc;
  border-left: 4px solid #d4af37;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
}

.highlight-title-lebensmittelkosten-berechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-list-lebensmittelkosten-berechnung {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.highlight-item-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-lebensmittelkosten-berechnung::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.highlight-note-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-content-lebensmittelkosten-berechnung {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .intro-text-lebensmittelkosten-berechnung,
  .intro-highlight-lebensmittelkosten-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-lebensmittelkosten-berechnung,
.content-section-two-lebensmittelkosten-berechnung,
.content-section-three-lebensmittelkosten-berechnung,
.content-section-four-lebensmittelkosten-berechnung {
  overflow: hidden;
}

.content-section-one-lebensmittelkosten-berechnung,
.content-section-three-lebensmittelkosten-berechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-two-lebensmittelkosten-berechnung,
.content-section-four-lebensmittelkosten-berechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-wrapper-one-lebensmittelkosten-berechnung,
.content-wrapper-two-lebensmittelkosten-berechnung,
.content-wrapper-three-lebensmittelkosten-berechnung,
.content-wrapper-four-lebensmittelkosten-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-lebensmittelkosten-berechnung,
.content-text-two-lebensmittelkosten-berechnung,
.content-text-three-lebensmittelkosten-berechnung,
.content-text-four-lebensmittelkosten-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-lebensmittelkosten-berechnung,
.content-image-two-lebensmittelkosten-berechnung,
.content-image-three-lebensmittelkosten-berechnung,
.content-image-four-lebensmittelkosten-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-lebensmittelkosten-berechnung,
.content-title-two-lebensmittelkosten-berechnung,
.content-title-three-lebensmittelkosten-berechnung,
.content-title-four-lebensmittelkosten-berechnung {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-lebensmittelkosten-berechnung,
.content-paragraph-two-lebensmittelkosten-berechnung,
.content-paragraph-three-lebensmittelkosten-berechnung,
.content-paragraph-four-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-one-lebensmittelkosten-berechnung {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.content-list-item-one-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-list-item-one-lebensmittelkosten-berechnung::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.content-img-one-lebensmittelkosten-berechnung,
.content-img-two-lebensmittelkosten-berechnung,
.content-img-three-lebensmittelkosten-berechnung,
.content-img-four-lebensmittelkosten-berechnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-highlight-two-lebensmittelkosten-berechnung {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid #d4af37;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.highlight-text-two-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #1e293b;
  margin: 0;
  line-height: 1.6;
}

.content-formula-lebensmittelkosten-berechnung {
  background: #e8f4f8;
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  border-left: 3px solid #0ea5a5;
}

.formula-text-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #1e293b;
  font-family: 'Courier New', monospace;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-one-lebensmittelkosten-berechnung,
  .content-wrapper-two-lebensmittelkosten-berechnung,
  .content-wrapper-three-lebensmittelkosten-berechnung,
  .content-wrapper-four-lebensmittelkosten-berechnung {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .content-text-one-lebensmittelkosten-berechnung,
  .content-text-two-lebensmittelkosten-berechnung,
  .content-text-three-lebensmittelkosten-berechnung,
  .content-text-four-lebensmittelkosten-berechnung,
  .content-image-one-lebensmittelkosten-berechnung,
  .content-image-two-lebensmittelkosten-berechnung,
  .content-image-three-lebensmittelkosten-berechnung,
  .content-image-four-lebensmittelkosten-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-one-lebensmittelkosten-berechnung,
  .content-img-two-lebensmittelkosten-berechnung,
  .content-img-three-lebensmittelkosten-berechnung,
  .content-img-four-lebensmittelkosten-berechnung {
    max-height: 300px;
  }
}

.conclusion-section-lebensmittelkosten-berechnung {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-lebensmittelkosten-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-lebensmittelkosten-berechnung {
  flex: 1 1 55%;
  max-width: 55%;
}

.conclusion-title-lebensmittelkosten-berechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.action-plan-lebensmittelkosten-berechnung {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: clamp(2rem, 3vw, 2.5rem) 0;
}

.plan-step-lebensmittelkosten-berechnung {
  background: rgba(212, 175, 55, 0.15);
  border-left: 4px solid #d4af37;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
}

.step-number-lebensmittelkosten-berechnung {
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step-text-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #e2e8f0;
  margin: 0;
  line-height: 1.6;
}

.conclusion-final-lebensmittelkosten-berechnung {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.conclusion-quote-lebensmittelkosten-berechnung {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #d4af37;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: clamp(2rem, 3vw, 2.5rem) 0;
}

.quote-text-lebensmittelkosten-berechnung {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.quote-author-lebensmittelkosten-berechnung {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #d4af37;
  display: block;
}

.conclusion-image-lebensmittelkosten-berechnung {
  flex: 1 1 45%;
  max-width: 45%;
}

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

@media (max-width: 768px) {
  .conclusion-content-lebensmittelkosten-berechnung {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .conclusion-img-lebensmittelkosten-berechnung {
    max-height: 350px;
  }
}

.disclaimer-section-lebensmittelkosten-berechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-lebensmittelkosten-berechnung {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-lebensmittelkosten-berechnung {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0ea5a5;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
}

.disclaimer-title-lebensmittelkosten-berechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-lebensmittelkosten-berechnung:last-child {
  margin-bottom: 0;
}

.related-section-lebensmittelkosten-berechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-lebensmittelkosten-berechnung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-lebensmittelkosten-berechnung {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.related-image-wrapper-lebensmittelkosten-berechnung {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-card-lebensmittelkosten-berechnung:hover .related-card-image-lebensmittelkosten-berechnung {
  transform: scale(1.05);
}

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

.related-card-title-lebensmittelkosten-berechnung {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-lebensmittelkosten-berechnung {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-lebensmittelkosten-berechnung:hover {
  color: #e5c158;
}

@media (max-width: 768px) {
  .related-cards-lebensmittelkosten-berechnung {
    flex-direction: column;
  }

  .related-card-lebensmittelkosten-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e5c158;
}

@media (max-width: 480px) {
  .hero-meta-lebensmittelkosten-berechnung {
    gap: 1rem;
  }

  .plan-step-lebensmittelkosten-berechnung {
    padding: 1rem 1.25rem;
  }
}

.main-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-umsatzsteuer-gastronomie-abrechnung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: #cbd5e1;
}

.breadcrumbs-umsatzsteuer-gastronomie-abrechnung a {
  color: #d4af37;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-umsatzsteuer-gastronomie-abrechnung a:hover {
  color: #e5c158;
  text-decoration: underline;
}

.breadcrumbs-umsatzsteuer-gastronomie-abrechnung span {
  color: #64748b;
}

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

.hero-text-block-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-umsatzsteuer-gastronomie-abrechnung {
  color: #94a3b8;
}

.meta-divider-umsatzsteuer-gastronomie-abrechnung {
  color: #64748b;
}

.hero-image-block-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-umsatzsteuer-gastronomie-abrechnung,
  .hero-image-block-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.75rem;
  }

  .hero-subtitle-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1rem;
  }
}

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

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

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

.intro-text-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-umsatzsteuer-gastronomie-abrechnung:last-child {
  margin-bottom: 0;
}

.intro-image-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-umsatzsteuer-gastronomie-abrechnung {
    flex-direction: column;
  }

  .intro-text-umsatzsteuer-gastronomie-abrechnung,
  .intro-image-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.5rem;
  }
}

.content-section-one-umsatzsteuer-gastronomie-abrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-text-one-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-umsatzsteuer-gastronomie-abrechnung {
  background: #dbeafe;
  border-left: 4px solid #0ea5a5;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

.highlight-text-umsatzsteuer-gastronomie-abrechnung strong {
  font-weight: 700;
  color: #0ea5a5;
}

.content-image-one-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-one-umsatzsteuer-gastronomie-abrechnung {
    flex-direction: column;
  }

  .content-text-one-umsatzsteuer-gastronomie-abrechnung,
  .content-image-one-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-title-one-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.35rem;
  }
}

.content-section-two-umsatzsteuer-gastronomie-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-two-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.content-text-two-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-umsatzsteuer-gastronomie-abrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.list-item-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.list-item-umsatzsteuer-gastronomie-abrechnung:before {
  content: "";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-wrapper-two-umsatzsteuer-gastronomie-abrechnung {
    flex-direction: column;
  }

  .content-image-two-umsatzsteuer-gastronomie-abrechnung,
  .content-text-two-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-title-two-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.35rem;
  }
}

.content-section-three-umsatzsteuer-gastronomie-abrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-text-three-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-three-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-ordered-list-umsatzsteuer-gastronomie-abrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  counter-reset: item;
}

.ordered-item-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 2.5rem;
  position: relative;
  counter-increment: item;
}

.ordered-item-umsatzsteuer-gastronomie-abrechnung:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: #d4af37;
  color: #0a0f1e;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.quote-box-umsatzsteuer-gastronomie-abrechnung {
  background: #e0e7ff;
  border-left: 4px solid #d4af37;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
}

.quote-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #0f172a;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

.content-image-three-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-three-umsatzsteuer-gastronomie-abrechnung {
    flex-direction: column;
  }

  .content-text-three-umsatzsteuer-gastronomie-abrechnung,
  .content-image-three-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-title-three-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.35rem;
  }
}

.tips-section-umsatzsteuer-gastronomie-abrechnung {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tips-header-umsatzsteuer-gastronomie-abrechnung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-subtitle-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 300ms ease;
}

.tip-card-umsatzsteuer-gastronomie-abrechnung:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tip-number-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.tip-card-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tip-card-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tip-card-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section-umsatzsteuer-gastronomie-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.faq-content-umsatzsteuer-gastronomie-abrechnung {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-items-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item-umsatzsteuer-gastronomie-abrechnung {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question-umsatzsteuer-gastronomie-abrechnung {
  display: block;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  border: none;
  transition: background-color 150ms ease;
  font-family: 'Lato', sans-serif;
}

.faq-question-umsatzsteuer-gastronomie-abrechnung:hover {
  background: #f1f5f9;
}

.faq-item-umsatzsteuer-gastronomie-abrechnung[open] .faq-question-umsatzsteuer-gastronomie-abrechnung {
  background: #e0e7ff;
  color: #0f172a;
}

.faq-item-umsatzsteuer-gastronomie-abrechnung details[open] summary:after {
  transform: rotate(180deg);
}

.faq-question-umsatzsteuer-gastronomie-abrechnung:after {
  content: "";
  float: right;
  color: #d4af37;
  transition: transform 150ms ease;
}

.faq-answer-umsatzsteuer-gastronomie-abrechnung {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  color: #64748b;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.75;
  margin: 0;
}

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

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

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

.conclusion-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-boxes-umsatzsteuer-gastronomie-abrechnung {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.summary-box-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.summary-box-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-list-umsatzsteuer-gastronomie-abrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list-umsatzsteuer-gastronomie-abrechnung li {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  padding-left: 1.5rem;
  position: relative;
}

.summary-list-umsatzsteuer-gastronomie-abrechnung li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0ea5a5;
  font-weight: bold;
}

.conclusion-final-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.cta-box-umsatzsteuer-gastronomie-abrechnung {
  background: linear-gradient(135deg, #d4af37 0%, #0ea5a5 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-button-umsatzsteuer-gastronomie-abrechnung {
  background: #ffffff;
  color: #0a0f1e;
  border-color: #ffffff;
  font-weight: 700;
}

.cta-button-umsatzsteuer-gastronomie-abrechnung:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-umsatzsteuer-gastronomie-abrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

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

.disclaimer-content-umsatzsteuer-gastronomie-abrechnung {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: #9ca3af;
  line-height: 1.75;
  margin: 0;
}

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

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

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

.related-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-umsatzsteuer-gastronomie-abrechnung {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-umsatzsteuer-gastronomie-abrechnung:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #d4af37;
}

.related-card-image-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-umsatzsteuer-gastronomie-abrechnung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-umsatzsteuer-gastronomie-abrechnung {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-umsatzsteuer-gastronomie-abrechnung {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: color 150ms ease;
}

.related-link-umsatzsteuer-gastronomie-abrechnung:hover {
  color: #e5c158;
  text-decoration: underline;
}

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

@media (max-width: 480px) {
  .hero-title-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.5rem;
  }

  .hero-subtitle-umsatzsteuer-gastronomie-abrechnung {
    font-size: 0.95rem;
  }

  .content-title-one-umsatzsteuer-gastronomie-abrechnung,
  .content-title-two-umsatzsteuer-gastronomie-abrechnung,
  .content-title-three-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.25rem;
  }

  .tips-title-umsatzsteuer-gastronomie-abrechnung,
  .faq-title-umsatzsteuer-gastronomie-abrechnung,
  .conclusion-title-umsatzsteuer-gastronomie-abrechnung,
  .related-title-umsatzsteuer-gastronomie-abrechnung {
    font-size: 1.5rem;
  }

  .tip-card-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .summary-box-umsatzsteuer-gastronomie-abrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-jahresabschluss-gewinnermittlung {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-jahresabschluss-gewinnermittlung {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-jahresabschluss-gewinnermittlung {
  color: #94a3b8;
}

.meta-separator-jahresabschluss-gewinnermittlung {
  color: #475569;
}

.hero-image-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-jahresabschluss-gewinnermittlung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}

.breadcrumbs-jahresabschluss-gewinnermittlung a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-jahresabschluss-gewinnermittlung a:hover {
  color: #e5c158;
}

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

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

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

.intro-text-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-description-jahresabschluss-gewinnermittlung:last-child {
  margin-bottom: 0;
}

.intro-image-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-jahresabschluss-gewinnermittlung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.process-header-jahresabschluss-gewinnermittlung {
  text-align: center;
}

.process-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.step-card-jahresabschluss-gewinnermittlung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number-jahresabschluss-gewinnermittlung {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #d4af37;
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
}

.step-content-jahresabschluss-gewinnermittlung {
  flex: 1;
}

.step-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-list-jahresabschluss-gewinnermittlung {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-list-item-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.step-list-item-jahresabschluss-gewinnermittlung::before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

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

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

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

.details-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.details-description-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.details-description-jahresabschluss-gewinnermittlung:last-child {
  margin-bottom: 0;
}

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

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

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

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

.tools-header-jahresabschluss-gewinnermittlung {
  text-align: center;
}

.tools-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.tool-card-jahresabschluss-gewinnermittlung {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tool-card-jahresabschluss-gewinnermittlung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tool-card-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.tool-card-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.highlight-image-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-img-jahresabschluss-gewinnermittlung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.highlight-text-jahresabschluss-gewinnermittlung {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-description-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.highlight-quote-jahresabschluss-gewinnermittlung {
  padding: 1.5rem 0;
  border-left: 4px solid #d4af37;
  padding-left: 1.5rem;
  margin: 0;
}

.quote-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-content-jahresabschluss-gewinnermittlung {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.conclusion-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
}

.conclusion-cta-jahresabschluss-gewinnermittlung {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  margin-top: 1rem;
}

.cta-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

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

.disclaimer-content-jahresabschluss-gewinnermittlung {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(30, 41, 59, 0.1);
}

.disclaimer-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
}

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

.related-card-jahresabschluss-gewinnermittlung {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-jahresabschluss-gewinnermittlung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-card-image-jahresabschluss-gewinnermittlung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.related-card-title-jahresabschluss-gewinnermittlung {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-jahresabschluss-gewinnermittlung {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.5;
}

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

  .hero-text-jahresabschluss-gewinnermittlung,
  .hero-image-jahresabschluss-gewinnermittlung,
  .intro-text-jahresabschluss-gewinnermittlung,
  .intro-image-jahresabschluss-gewinnermittlung,
  .details-text-jahresabschluss-gewinnermittlung,
  .details-image-jahresabschluss-gewinnermittlung,
  .highlight-text-jahresabschluss-gewinnermittlung,
  .highlight-image-jahresabschluss-gewinnermittlung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-jahresabschluss-gewinnermittlung {
    flex-direction: column;
  }

  .step-number-jahresabschluss-gewinnermittlung {
    min-width: auto;
  }

  .breadcrumbs-jahresabschluss-gewinnermittlung {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }

  .tools-grid-jahresabschluss-gewinnermittlung {
    flex-direction: column;
  }

  .tool-card-jahresabschluss-gewinnermittlung {
    max-width: 100%;
  }

  .related-cards-jahresabschluss-gewinnermittlung {
    flex-direction: column;
  }

  .related-card-jahresabschluss-gewinnermittlung {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-jahresabschluss-gewinnermittlung,
  .intro-section-jahresabschluss-gewinnermittlung,
  .process-section-jahresabschluss-gewinnermittlung,
  .details-section-jahresabschluss-gewinnermittlung,
  .tools-section-jahresabschluss-gewinnermittlung,
  .highlight-section-jahresabschluss-gewinnermittlung,
  .conclusion-section-jahresabschluss-gewinnermittlung,
  .disclaimer-section-jahresabschluss-gewinnermittlung,
  .related-section-jahresabschluss-gewinnermittlung {
    padding: clamp(1.5rem, 6vw, 3rem) 0;
  }

  .hero-title-jahresabschluss-gewinnermittlung,
  .intro-title-jahresabschluss-gewinnermittlung,
  .process-title-jahresabschluss-gewinnermittlung,
  .details-title-jahresabschluss-gewinnermittlung,
  .tools-title-jahresabschluss-gewinnermittlung,
  .highlight-title-jahresabschluss-gewinnermittlung,
  .conclusion-title-jahresabschluss-gewinnermittlung {
    font-size: 1.5rem;
  }

  .step-card-jahresabschluss-gewinnermittlung {
    padding: 1rem;
  }

  .step-number-jahresabschluss-gewinnermittlung {
    font-size: 2rem;
    min-width: 50px;
  }
}

.main-personalkosten-lohnabrechnung {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}

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

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

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

.breadcrumbs-personalkosten-lohnabrechnung a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-personalkosten-lohnabrechnung a:hover {
  color: #e5c158;
  text-decoration: underline;
}

.breadcrumbs-personalkosten-lohnabrechnung span {
  color: #94a3b8;
}

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

.hero-text-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-personalkosten-lohnabrechnung {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-personalkosten-lohnabrechnung {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-personalkosten-lohnabrechnung {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.meta-divider-personalkosten-lohnabrechnung {
  color: #475569;
}

.hero-image-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-section-personalkosten-lohnabrechnung {
    padding: 2rem 0;
  }
}

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

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

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

.intro-text-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

.guide-section-personalkosten-lohnabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.guide-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.guide-header-personalkosten-lohnabrechnung {
  text-align: center;
  margin-bottom: 1rem;
}

.guide-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.guide-subtitle-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.steps-container-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-personalkosten-lohnabrechnung:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.step-number-personalkosten-lohnabrechnung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  min-width: 80px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.step-content-personalkosten-lohnabrechnung {
  flex: 1;
}

.step-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
}

.guide-image-personalkosten-lohnabrechnung {
  margin-top: 2rem;
  text-align: center;
}

.guide-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

  .step-number-personalkosten-lohnabrechnung {
    min-width: auto;
  }
}

.costs-section-personalkosten-lohnabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.costs-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.costs-text-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.costs-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.costs-paragraph-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.costs-highlight-personalkosten-lohnabrechnung {
  background: #f1f5f9;
  border-left: 4px solid #d4af37;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.highlight-list-personalkosten-lohnabrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list-personalkosten-lohnabrechnung li {
  color: #334155;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-list-personalkosten-lohnabrechnung li:last-child {
  border-bottom: none;
}

.costs-image-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.costs-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .costs-content-personalkosten-lohnabrechnung {
    flex-direction: column;
  }

  .costs-text-personalkosten-lohnabrechnung,
  .costs-image-personalkosten-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.special-cases-section-personalkosten-lohnabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.special-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.special-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.special-subtitle-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  margin-bottom: 2rem;
}

.special-cards-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.special-card-personalkosten-lohnabrechnung {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.special-card-personalkosten-lohnabrechnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card-heading-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.special-image-personalkosten-lohnabrechnung {
  margin-top: 1rem;
}

.special-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .special-card-personalkosten-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.errors-section-personalkosten-lohnabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.errors-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.errors-text-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.errors-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.errors-intro-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.error-list-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.error-item-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #d4af37;
}

.error-number-personalkosten-lohnabrechnung {
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  min-width: 50px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.error-detail-personalkosten-lohnabrechnung {
  flex: 1;
}

.error-title-item-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.error-description-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.errors-image-personalkosten-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.errors-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

@media (max-width: 768px) {
  .errors-content-personalkosten-lohnabrechnung {
    flex-direction: column;
  }

  .errors-text-personalkosten-lohnabrechnung,
  .errors-image-personalkosten-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .errors-img-personalkosten-lohnabrechnung {
    position: static;
  }
}

.tools-section-personalkosten-lohnabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tools-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.tools-subtitle-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  margin-bottom: 2rem;
}

.tools-grid-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.tool-card-personalkosten-lohnabrechnung {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tool-card-personalkosten-lohnabrechnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.tool-name-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tool-description-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tool-card-personalkosten-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-personalkosten-lohnabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-box-personalkosten-lohnabrechnung {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
}

.conclusion-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.conclusion-list-personalkosten-lohnabrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conclusion-item-personalkosten-lohnabrechnung {
  color: #334155;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.conclusion-item-personalkosten-lohnabrechnung:before {
  content: '';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.cta-box-personalkosten-lohnabrechnung {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cta-title-personalkosten-lohnabrechnung {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.cta-text-personalkosten-lohnabrechnung {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.disclaimer-section-personalkosten-lohnabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-personalkosten-lohnabrechnung {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0ea5a5;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.related-section-personalkosten-lohnabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-content-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.related-subtitle-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
}

.related-cards-personalkosten-lohnabrechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-personalkosten-lohnabrechnung {
  flex: 1 1 calc(33.333% - 1.35rem);
  max-width: calc(33.333% - 1.35rem);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-personalkosten-lohnabrechnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

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

.related-card-img-personalkosten-lohnabrechnung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-personalkosten-lohnabrechnung {
  padding: 1.5rem;
}

.related-card-title-personalkosten-lohnabrechnung {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-personalkosten-lohnabrechnung {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-personalkosten-lohnabrechnung {
  color: #d4af37;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-personalkosten-lohnabrechnung:hover {
  color: #e5c158;
  text-decoration: underline;
}

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

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

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

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

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

html, body {
  width: 100%;
}

.gastro-accounting-about {
  width: 100%;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

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

.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: 900px;
}

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

.hero-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

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

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

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

.section-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.card-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
}

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

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

.journey-intro-about {
  max-width: 850px;
  margin: 0 auto;
}

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

.journey-intro-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

.journey-intro-text-about p {
  margin-bottom: 1rem;
}

.journey-intro-text-about p:last-child {
  margin-bottom: 0;
}

.journey-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

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

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

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

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

.approach-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

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

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
}

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

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

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

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

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

.values-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
}

.featured-quote-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 750px;
}

.quote-text-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  line-height: var(--line-height-tight);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

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

  .step-number-about {
    font-size: 2.5rem;
  }

  .hero-section-about,
  .expertise-section-about,
  .journey-section-about,
  .approach-section-about,
  .values-section-about,
  .disclaimer-section-about {
    padding: 2rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1025px) {
  .expertise-card-about {
    flex: 1 1 30%;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-dark-accent);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(212, 175, 55, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-height-normal);
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg-primary);
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: var(--tracking-normal);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card:nth-child(even) {
    direction: rtl;
  }

  .portfolio-card:nth-child(even) > * {
    direction: ltr;
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
  }

  .portfolio-card-image {
    height: 100%;
    min-height: 320px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .portfolio-projects-wrapper {
    max-width: 1400px;
  }

  .portfolio-hero-wrapper {
    max-width: 1100px;
  }

  .portfolio-cta-wrapper {
    max-width: 900px;
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: 400;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background-color: rgba(30, 41, 59, 0.8);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
}

.faq-question-text {
  color: var(--color-text-dark-primary);
  text-align: left;
  line-height: var(--line-height-normal);
  transition: color var(--transition-fast);
}

.faq-question:hover .faq-question-text {
  color: var(--color-primary);
}

.faq-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.faq-image {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .faq-image {
    display: block;
    position: sticky;
    top: var(--space-2xl);
    height: fit-content;
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .faq-question {
    padding: var(--space-xl);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-normal);
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: var(--tracking-wide);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  line-height: var(--line-height-tight);
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-title {
    margin-bottom: var(--space-lg);
  }

  .faq-cta-text {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

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

.gastro-legal {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
}

.gastro-legal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.gastro-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.gastro-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.gastro-legal .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.gastro-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

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

.gastro-legal ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  color: var(--color-text-light-secondary);
}

.gastro-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  color: var(--color-text-light-secondary);
}

.gastro-legal .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.gastro-legal .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light-primary);
}

.gastro-legal .contact-section p {
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-md);
}

.gastro-legal .contact-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .gastro-legal .container {
    padding: 0 var(--space-lg);
  }

  .gastro-legal .content {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .gastro-legal .container {
    padding: 0 var(--space-xl);
  }

  .gastro-legal .content {
    padding: var(--space-4xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
}

.thank-you-page {
  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);
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.2));
}

.thank-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  line-height: var(--line-height-tight);
  margin-top: var(--space-md);
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-secondary);
  font-weight: 600;
  line-height: var(--line-height-normal);
  margin-top: var(--space-sm);
}

.thank-description {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-2xl);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: var(--tracking-normal);
}

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

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

@media (max-width: 640px) {
  .thank-you-page {
    padding: var(--space-sm);
  }

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

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

  .success-icon svg {
    width: 70px;
    height: 70px;
  }

  .btn-return {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .thank-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .success-icon svg {
    width: 85px;
    height: 85px;
  }
}

@media (min-width: 1025px) {
  .thank-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .success-icon svg {
    width: 90px;
    height: 90px;
  }

  .btn-return {
    margin-top: var(--space-3xl);
  }

  .btn-return:hover {
    box-shadow: var(--shadow-dark);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .success-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-light-primary);
  }

  .thank-heading {
    color: var(--color-primary);
  }

  .thank-lead {
    color: var(--color-secondary);
  }

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

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

  .btn-return {
    color: var(--color-bg-secondary);
  }

  .success-icon svg {
    filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.15));
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-dark-primary);
  overflow-x: hidden;
}

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-lg);
  animation: float 6s ease-in-out infinite;
}

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

.error-code-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.error-code {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.25;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: var(--line-height-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.error-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: var(--space-lg);
  gap: var(--space-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-light-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  letter-spacing: var(--tracking-normal);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left var(--transition-base);
  z-index: -1;
}

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

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

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

.error-hint {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  margin-top: var(--space-lg);
}

.hint-text {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 640px) {
  .error-section {
    padding: var(--space-md) var(--space-sm);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .error-hint {
    padding: var(--space-md);
    margin-top: var(--space-md);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .error-section {
    padding: var(--space-lg) var(--space-md);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .error-hint {
    padding: var(--space-lg);
    margin-top: var(--space-lg);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-xl);
  }
}

@media (min-width: 1025px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

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

  .error-hint {
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-visual {
    animation: none;
  }

  .error-decoration {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-get-in-touch {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-get-in-touch-hero-content {
  text-align: center;
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-form-wrapper {
    flex: 0 1 auto;
    min-width: 400px;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 auto;
    min-width: 350px;
  }
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-get-in-touch-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-dark-primary);
  display: block;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  transition: all var(--transition-base);
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-get-in-touch-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-get-in-touch-form-privacy {
  margin: var(--space-sm) 0;
}

.contact-get-in-touch-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-get-in-touch-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.contact-get-in-touch-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-get-in-touch-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-get-in-touch-info-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-dark-muted);
  margin-top: var(--space-xs);
  margin-bottom: 0;
}

.contact-get-in-touch-info-box {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-get-in-touch-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.contact-get-in-touch-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-get-in-touch-info-list-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: var(--line-height-normal);
}

.contact-get-in-touch-info-list-item::before {
  content: '';
  color: var(--color-secondary);
  font-weight: bold;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-main {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-main {
    padding: var(--space-4xl) 0;
  }

  .contact-get-in-touch-grid {
    gap: var(--space-3xl);
  }
}

@media (max-width: 767px) {
  .contact-get-in-touch-form-wrapper,
  .contact-get-in-touch-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-get-in-touch-grid {
    flex-direction: column;
  }
}