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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6cfc7;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
}

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

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

h6 {
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-ghost:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-primary);
  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;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.2);
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

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

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

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

.divider {
  height: 1px;
  background: rgba(13, 148, 136, 0.1);
  margin: var(--space-lg) 0;
}

.list {
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.list li::before {
  content: '';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

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

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

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

.animate-slideInUp {
  animation: slideInUp var(--transition-slow);
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow);
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow);
}

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

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

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

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

code {
  font-family: 'Courier New', monospace;
  background: var(--color-bg-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  color: var(--color-primary-hover);
  font-size: 0.875em;
}

pre {
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

pre code {
  background: transparent;
  padding: 0;
  color: var(--color-text-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

thead {
  background: var(--color-bg-secondary);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-primary);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid #e5e5e5;
}

tr:hover {
  background: var(--color-bg-secondary);
}

@media print {
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
  
  .no-print {
    display: none;
  }
}

@media (prefers-contrast: more) {
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

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

@media (prefers-color-scheme: light) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}
.header-kaizen-flow {
  background: var(--color-bg-tertiary);
  border-bottom: 2px solid var(--color-primary-light);
  position: relative;
  z-index: 100;
}

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

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

.header-kaizen-flow-brand:hover {
  opacity: 0.8;
}

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

.header-kaizen-flow-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header-kaizen-flow-desktop-nav {
  display: none;
  flex-direction: row;
  gap: 2.5rem;
  flex: 1;
}

.header-kaizen-flow-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.header-kaizen-flow-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.header-kaizen-flow-nav-link:hover {
  color: var(--color-primary);
}

.header-kaizen-flow-nav-link:hover::after {
  width: 100%;
}

.header-kaizen-flow-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header-kaizen-flow-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.header-kaizen-flow-mobile-toggle[aria-expanded="true"] .header-kaizen-flow-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-kaizen-flow-mobile-toggle[aria-expanded="true"] .header-kaizen-flow-hamburger:nth-child(2) {
  opacity: 0;
}

.header-kaizen-flow-mobile-toggle[aria-expanded="true"] .header-kaizen-flow-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-kaizen-flow-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-kaizen-flow-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 2px solid var(--color-primary-light);
}

.header-kaizen-flow-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.header-kaizen-flow-mobile-close:hover {
  color: var(--color-primary);
}

.header-kaizen-flow-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 1.5rem;
}

.header-kaizen-flow-mobile-link {
  padding: 1.25rem 1rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-primary-light);
  transition: all var(--transition-fast);
}

.header-kaizen-flow-mobile-link:hover {
  color: var(--color-primary);
  padding-left: 1.5rem;
  background: var(--color-primary-light);
}

.header-kaizen-flow-mobile-cta {
  display: block;
  margin: 2rem 1.5rem 0;
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-kaizen-flow-mobile-cta:hover {
  background: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-kaizen-flow-container {
    padding: 1.25rem clamp(1rem, 4vw, 2rem);
    gap: 3rem;
  }

  .header-kaizen-flow-desktop-nav {
    display: flex;
  }

  .header-kaizen-flow-cta-button {
    display: block;
  }

  .header-kaizen-flow-mobile-toggle {
    display: none;
  }

  .header-kaizen-flow-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-kaizen-flow-container {
    padding: 1.5rem clamp(1.5rem, 4vw, 2.5rem);
  }

  .header-kaizen-flow-logo-text {
    font-size: 1.5rem;
  }

  .header-kaizen-flow-nav-link {
    font-size: 1rem;
  }

  .header-kaizen-flow-cta-button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

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

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

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

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

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

.hero-text-block-index {
  max-width: 800px;
}

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

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.8;
  font-weight: 400;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(203, 213, 225, 0.2);
  border-bottom: 1px solid rgba(203, 213, 225, 0.2);
}

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

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

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons-index .btn {
    width: 100%;
    max-width: 300px;
  }
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.08);
  color: #0f766e;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-posts-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
}

.featured-posts-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0;
}

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.featured-post-card-index:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #0f766e;
}

.post-image-wrapper-index {
  width: 100%;
  overflow: hidden;
  background: #f1f5f9;
}

.post-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

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

.post-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.post-description-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.post-link-index {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 250ms;
  align-self: flex-start;
}

.post-link-index:hover {
  color: #0f766e;
  text-decoration: underline;
}

.featured-posts-footer-index {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 2rem);
  border-top: 1px solid #e2e8f0;
}

.btn-outline-index {
  background: transparent;
  color: #0d9488;
  border: 2px solid #0d9488;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 250ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-outline-index:hover {
  background: #ccfbf1;
  border-color: #0f766e;
  color: #0f766e;
}

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

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

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
}

.benefits-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

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

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0d9488;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

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

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

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

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

.how-it-works-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
}

.how-it-works-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0;
}

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

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

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

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

.step-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.faq-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question-index {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.faq-answer-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.8;
}

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

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

.principles-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
}

.principles-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0;
}

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

.principle-item-index {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.principle-number-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.principle-text-index {
  flex: 1;
}

.principle-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.principle-description-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.8;
}

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

  .principle-number-index {
    min-width: auto;
  }
}

.about-preview-section-index {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.about-preview-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 280px;
}

.about-preview-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
  font-weight: 700;
}

.about-preview-paragraph-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin: 0;
  line-height: 1.8;
  font-weight: 400;
}

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

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

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

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

  .about-preview-image-index {
    flex: 1 1 100%;
    max-height: 350px;
  }
}

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

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

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

.testimonials-subtitle-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 700px;
  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: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin: 0;
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid #0d9488;
  padding-left: 1.5rem;
}

.testimonial-author-index {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.author-name-index {
  color: #0f172a;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin: 0;
}

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

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

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

.cta-box-index {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.cta-box-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0;
  font-weight: 700;
}

.cta-box-text-index {
  color: #e0f2f1;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  margin: 0;
  line-height: 1.8;
}

.cta-resources-index {
  flex: 1 1 50%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.resources-title-index {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.resources-list-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resources-list-index li {
  margin: 0;
}

.resources-list-index a {
  color: #e0f2f1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 250ms;
  font-weight: 500;
}

.resources-list-index a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

  .cta-box-index {
    flex: 1 1 100%;
    text-align: center;
  }

  .cta-resources-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
  text-align: center;
}

.cookie-link-index {
  color: #22d3ee;
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms;
}

.cookie-link-index:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 250ms;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #0d9488;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #0f766e;
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.cookie-btn-decline-index:hover {
  color: #ffffff;
  border-color: rgba(203, 213, 225, 0.6);
}

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

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

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

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

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

  .principle-item-index {
    flex-direction: column;
  }

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

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

  .benefits-cards-index {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card-index {
    width: 100%;
    max-width: none;
  }

  .how-it-works-steps-index {
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

.footer-about p {
  color: var(--color-text-secondary);
  max-width: 550px;
}

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

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

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

.footer-contact p {
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

.footer-contact p:last-of-type {
  margin-bottom: 0;
}

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

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    grid-template-areas:
      "about nav"
      "contact legal"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
  }

  .footer-nav {
    grid-area: nav;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-legal {
    grid-area: legal;
  }

  .footer-copyright {
    grid-area: copyright;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "about nav contact legal"
      "copyright copyright copyright copyright";
    gap: clamp(3rem, 5vw, 4rem);
  }
}

@media (max-width: 767px) {
  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 0.875rem);
  }

  .footer-link {
    display: block;
  }
}
    

.category-page-continuous-improvement {
  width: 100%;
}

.hero-section-continuous-improvement {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-continuous-improvement {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-header-continuous-improvement {
  text-align: center;
}

.hero-title-continuous-improvement {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-continuous-improvement {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto clamp(1rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-accent-continuous-improvement {
  background: rgba(13, 148, 136, 0.15);
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-accent-text-continuous-improvement {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #e0f2f1;
  margin: 0;
  line-height: 1.8;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.posts-header-continuous-improvement {
  text-align: center;
}

.posts-title-continuous-improvement {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-continuous-improvement {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-continuous-improvement {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.card-continuous-improvement:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #0d9488;
}

.card-image-continuous-improvement {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-body-continuous-improvement {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.card-title-continuous-improvement {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-continuous-improvement {
  font-size: clamp(0.85rem, 1.2vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-continuous-improvement {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
  border-top: 1px solid #f0f0f0;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.9rem);
}

.meta-item-continuous-improvement {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item-continuous-improvement i {
  color: #0d9488;
  font-size: 0.9em;
}

.card-link-continuous-improvement {
  align-self: flex-start;
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.2vw + 0.5rem, 0.95rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
}

.card-link-continuous-improvement:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

.principles-content-continuous-improvement {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.principles-header-continuous-improvement {
  text-align: center;
}

.principles-title-continuous-improvement {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-intro-continuous-improvement {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-list-continuous-improvement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.principle-item-continuous-improvement {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.principle-item-continuous-improvement:hover {
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}

.principle-number-continuous-improvement {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0d9488;
  line-height: 1;
}

.principle-heading-continuous-improvement {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-text-continuous-improvement {
  font-size: clamp(0.85rem, 1.2vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.impact-content-continuous-improvement {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.impact-header-continuous-improvement {
  text-align: center;
}

.impact-title-continuous-improvement {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impact-text-continuous-improvement {
  max-width: 750px;
  margin: 0 auto;
}

.impact-paragraph-continuous-improvement {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impact-paragraph-continuous-improvement:last-child {
  margin-bottom: 0;
}

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

  .posts-section-continuous-improvement {
    padding: 2rem 0;
  }

  .principles-section-continuous-improvement {
    padding: 2rem 0;
  }

  .impact-section-continuous-improvement {
    padding: 2rem 0;
  }

  .posts-grid-continuous-improvement {
    gap: 1rem;
  }

  .card-continuous-improvement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-item-continuous-improvement {
    padding: 1.25rem;
  }

  .hero-accent-continuous-improvement {
    padding: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .posts-grid-continuous-improvement {
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }

  .card-continuous-improvement {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

@media (min-width: 1024px) {
  .principles-list-continuous-improvement {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.75rem, 3vw, 2.5rem);
  }
}

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

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

.main-kaizen-vijf-stappen {
  width: 100%;
  overflow: hidden;
}

.hero-section-kaizen-vijf-stappen {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-kaizen-vijf-stappen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #57534e;
}

.breadcrumbs-kaizen-vijf-stappen a {
  color: #0d9488;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-kaizen-vijf-stappen a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-kaizen-vijf-stappen span {
  color: #a8a29e;
}

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

.hero-text-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-kaizen-vijf-stappen {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-kaizen-vijf-stappen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-kaizen-vijf-stappen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-kaizen-vijf-stappen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

.meta-item-kaizen-vijf-stappen i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-kaizen-vijf-stappen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

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

  .hero-text-kaizen-vijf-stappen,
  .hero-image-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-kaizen-vijf-stappen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.intro-paragraph-kaizen-vijf-stappen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-kaizen-vijf-stappen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

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

  .intro-text-kaizen-vijf-stappen,
  .intro-image-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-kaizen-vijf-stappen {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.steps-header-kaizen-vijf-stappen {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.steps-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.steps-subtitle-kaizen-vijf-stappen {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  color: #57534e;
  line-height: 1.6;
}

.steps-grid-kaizen-vijf-stappen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-kaizen-vijf-stappen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-card-kaizen-vijf-stappen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(13, 148, 136, 0.2);
}

.step-number-kaizen-vijf-stappen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-inner-kaizen-vijf-stappen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-kaizen-vijf-stappen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.step-text-kaizen-vijf-stappen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .step-card-kaizen-vijf-stappen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .step-card-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-grid-kaizen-vijf-stappen {
    flex-direction: column;
  }
}

.practical-section-kaizen-vijf-stappen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-kaizen-vijf-stappen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-image-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-kaizen-vijf-stappen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.practical-text-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.practical-paragraph-kaizen-vijf-stappen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-list-kaizen-vijf-stappen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.list-item-kaizen-vijf-stappen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-icon-kaizen-vijf-stappen {
  color: #0d9488;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-content-kaizen-vijf-stappen {
  flex: 1;
}

.list-content-kaizen-vijf-stappen strong {
  font-weight: 600;
  color: #1c1917;
  display: block;
  margin-bottom: 0.25rem;
}

.list-content-kaizen-vijf-stappen p {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .practical-content-kaizen-vijf-stappen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .practical-image-kaizen-vijf-stappen,
  .practical-text-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mindset-section-kaizen-vijf-stappen {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-kaizen-vijf-stappen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-text-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.mindset-paragraph-kaizen-vijf-stappen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mindset-highlight-kaizen-vijf-stappen {
  background: #ffffff;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-text-kaizen-vijf-stappen {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #1c1917;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mindset-image-kaizen-vijf-stappen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-image-kaizen-vijf-stappen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .mindset-content-kaizen-vijf-stappen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .mindset-text-kaizen-vijf-stappen,
  .mindset-image-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-kaizen-vijf-stappen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.conclusion-text-kaizen-vijf-stappen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cta-kaizen-vijf-stappen {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.conclusion-cta-kaizen-vijf-stappen .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 250ms ease;
  text-decoration: none;
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.conclusion-cta-kaizen-vijf-stappen .btn:hover {
  background: #0f766e;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
}

.related-section-kaizen-vijf-stappen {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-kaizen-vijf-stappen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.related-subtitle-kaizen-vijf-stappen {
  text-align: center;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.related-card-kaizen-vijf-stappen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-kaizen-vijf-stappen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(13, 148, 136, 0.2);
}

.card-image-kaizen-vijf-stappen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.card-image-kaizen-vijf-stappen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content-kaizen-vijf-stappen {
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-kaizen-vijf-stappen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.card-description-kaizen-vijf-stappen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-kaizen-vijf-stappen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 150ms ease;
  margin-top: auto;
}

.card-link-kaizen-vijf-stappen:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  .related-card-kaizen-vijf-stappen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-kaizen-vijf-stappen {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.disclaimer-content-kaizen-vijf-stappen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-kaizen-vijf-stappen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-kaizen-vijf-stappen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #57534e;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .hero-meta-kaizen-vijf-stappen {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

.main-team-betrokkenheid-kaizen {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-team-betrokkenheid-kaizen {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-team-betrokkenheid-kaizen a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-team-betrokkenheid-kaizen a:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-team-betrokkenheid-kaizen span {
  color: #64748b;
}

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

.hero-text-block-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-team-betrokkenheid-kaizen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.meta-item-team-betrokkenheid-kaizen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label-team-betrokkenheid-kaizen {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #06b6d4;
  font-weight: 600;
}

.hero-image-block-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-team-betrokkenheid-kaizen {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-text-block-team-betrokkenheid-kaizen,
  .hero-image-block-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-team-betrokkenheid-kaizen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

.intro-text-team-betrokkenheid-kaizen {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-team-betrokkenheid-kaizen {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-team-betrokkenheid-kaizen {
  background: linear-gradient(135deg, #0f766e 0%, #064e4a 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.75rem, 1vw, 1.25rem);
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.2);
}

.highlight-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.highlight-text-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ccfbf1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .intro-content-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-text-team-betrokkenheid-kaizen,
  .intro-highlight-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-one-text-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-list-team-betrokkenheid-kaizen {
  list-style: none;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.list-item-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-team-betrokkenheid-kaizen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

.content-one-image-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-team-betrokkenheid-kaizen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-one-wrapper-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .content-one-text-team-betrokkenheid-kaizen,
  .content-one-image-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-two-image-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-img-team-betrokkenheid-kaizen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-two-text-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.callout-box-team-betrokkenheid-kaizen {
  background: #fef3c7;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #f59e0b;
  border-radius: 0.5rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.callout-text-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .content-two-wrapper-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .content-two-image-team-betrokkenheid-kaizen,
  .content-two-text-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

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

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

.content-three-text-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-image-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-team-betrokkenheid-kaizen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-three-wrapper-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .content-three-text-team-betrokkenheid-kaizen,
  .content-three-image-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-four-image-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-four-img-team-betrokkenheid-kaizen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content-four-text-team-betrokkenheid-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-four-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefit-box-team-betrokkenheid-kaizen {
  background: #d1fae5;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #10b981;
  border-radius: 0.5rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.benefit-text-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #065f46;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .content-four-wrapper-team-betrokkenheid-kaizen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .content-four-image-team-betrokkenheid-kaizen,
  .content-four-text-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

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

.conclusion-content-team-betrokkenheid-kaizen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-closing-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.quote-block-team-betrokkenheid-kaizen {
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.featured-quote-team-betrokkenheid-kaizen {
  background: #0f766e;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  font-style: italic;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.15);
}

.quote-text-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1.2vw + 0.5rem, 1.125rem);
  color: #ccfbf1;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.quote-author-team-betrokkenheid-kaizen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #99f6e4;
  font-style: normal;
  display: block;
}

.disclaimer-section-team-betrokkenheid-kaizen {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-team-betrokkenheid-kaizen {
  max-width: 800px;
  margin: 0 auto;
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  border-left: 4px solid #64748b;
}

.disclaimer-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-team-betrokkenheid-kaizen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #475569;
  line-height: 1.7;
}

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

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

.related-title-team-betrokkenheid-kaizen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-team-betrokkenheid-kaizen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

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

.related-card-team-betrokkenheid-kaizen {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: clamp(0.75rem, 1vw, 1.25rem);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.related-card-team-betrokkenheid-kaizen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-team-betrokkenheid-kaizen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-team-betrokkenheid-kaizen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-team-betrokkenheid-kaizen:hover .related-card-img-team-betrokkenheid-kaizen {
  transform: scale(1.05);
}

.related-card-text-team-betrokkenheid-kaizen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-team-betrokkenheid-kaizen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-team-betrokkenheid-kaizen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-team-betrokkenheid-kaizen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-card-link-team-betrokkenheid-kaizen:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-team-betrokkenheid-kaizen {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

@media (max-width: 640px) {
  .related-card-team-betrokkenheid-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-kaizen-nederlandse-bedrijven a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-kaizen-nederlandse-bedrijven a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-kaizen-nederlandse-bedrijven span {
  color: var(--color-text-muted);
}

.hero-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-description-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero-meta-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  font-size: 0.875rem;
}

.meta-item-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
}

.meta-separator-kaizen-nederlandse-bedrijven {
  color: var(--color-text-muted);
}

.hero-image-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-kaizen-nederlandse-bedrijven {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-kaizen-nederlandse-bedrijven,
  .hero-image-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-lead-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.intro-secondary-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.intro-stats-kaizen-nederlandse-bedrijven {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.stat-card-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.stat-number-kaizen-nederlandse-bedrijven {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label-kaizen-nederlandse-bedrijven {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .intro-content-kaizen-nederlandse-bedrijven {
    flex-direction: column;
  }

  .intro-text-kaizen-nederlandse-bedrijven,
  .intro-stats-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-stats-kaizen-nederlandse-bedrijven {
    flex-direction: row;
    gap: var(--space-md);
  }

  .stat-card-kaizen-nederlandse-bedrijven {
    flex: 1;
    padding: var(--space-md);
  }
}

.case-one-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.case-one-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.case-one-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-one-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.case-one-body-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.case-one-highlight-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  padding: var(--space-md);
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-lg) 0 0 0;
}

.case-one-image-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-image-kaizen-nederlandse-bedrijven {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .case-one-content-kaizen-nederlandse-bedrijven {
    flex-direction: column;
  }

  .case-one-text-kaizen-nederlandse-bedrijven,
  .case-one-image-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.case-two-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.case-two-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.case-two-image-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-two-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-two-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.case-two-body-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.case-two-highlight-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  padding: var(--space-md);
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-lg) 0 0 0;
}

@media (max-width: 768px) {
  .case-two-content-kaizen-nederlandse-bedrijven {
    flex-direction: column;
  }

  .case-two-image-kaizen-nederlandse-bedrijven,
  .case-two-text-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.case-three-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.case-three-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.case-three-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-three-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.case-three-body-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.case-three-highlight-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 500;
  padding: var(--space-md);
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-lg) 0 0 0;
}

.case-three-image-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .case-three-content-kaizen-nederlandse-bedrijven {
    flex-direction: column;
  }

  .case-three-text-kaizen-nederlandse-bedrijven,
  .case-three-image-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.learnings-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.learnings-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.learnings-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
}

.learnings-intro-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.lessons-grid-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.lesson-card-kaizen-nederlandse-bedrijven {
  flex: 1 1 calc(50% - var(--space-lg));
  max-width: 350px;
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
}

.lesson-card-kaizen-nederlandse-bedrijven:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.lesson-title-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.lesson-text-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lesson-card-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-kaizen-nederlandse-bedrijven {
  display: flex;
  justify-content: center;
}

.featured-quote-kaizen-nederlandse-bedrijven {
  max-width: 700px;
  padding: var(--space-xl);
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-text-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.quote-author-kaizen-nederlandse-bedrijven {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
}

.implementation-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.implementation-text-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.implementation-body-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.implementation-image-kaizen-nederlandse-bedrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .implementation-content-kaizen-nederlandse-bedrijven {
    flex-direction: column;
  }

  .implementation-text-kaizen-nederlandse-bedrijven,
  .implementation-image-kaizen-nederlandse-bedrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.common-mistakes-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.common-mistakes-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
}

.common-mistakes-intro-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.mistake-list-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.mistake-item-kaizen-nederlandse-bedrijven {
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.mistake-heading-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.mistake-description-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section-kaizen-nederlandse-bedrijven {
  background: linear-gradient(135deg, var(--color-primary), #13a394);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-kaizen-nederlandse-bedrijven {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
}

.cta-description-kaizen-nederlandse-bedrijven {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.8;
}

.cta-button-kaizen-nederlandse-bedrijven {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.cta-button-kaizen-nederlandse-bedrijven:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.related-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.related-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
}

.related-grid-kaizen-nederlandse-bedrijven {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.related-card-kaizen-nederlandse-bedrijven {
  flex: 1 1 calc(33.333% - var(--space-lg));
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-kaizen-nederlandse-bedrijven:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}

.related-image-kaizen-nederlandse-bedrijven {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg) 0;
  margin-bottom: var(--space-sm);
}

.related-card-desc-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.related-link-kaizen-nederlandse-bedrijven {
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 var(--space-lg) var(--space-lg);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-link-kaizen-nederlandse-bedrijven:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-kaizen-nederlandse-bedrijven {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

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

.disclaimer-section-kaizen-nederlandse-bedrijven {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-kaizen-nederlandse-bedrijven {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-title-kaizen-nederlandse-bedrijven {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.disclaimer-text-kaizen-nederlandse-bedrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

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

.main-meten-voortgang-kaizen {
  width: 100%;
  background: #fffbeb;
  overflow: hidden;
}

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

.hero-section-meten-voortgang-kaizen {
  background: #0a0a0a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-meten-voortgang-kaizen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-meten-voortgang-kaizen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-meten-voortgang-kaizen a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-meten-voortgang-kaizen a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.breadcrumbs-meten-voortgang-kaizen span {
  color: #64748b;
}

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

.hero-subtitle-meten-voortgang-kaizen {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta-meten-voortgang-kaizen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.meta-item-meten-voortgang-kaizen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-item-meten-voortgang-kaizen i {
  color: #0d9488;
}

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

  .hero-text-meten-voortgang-kaizen,
  .hero-image-meten-voortgang-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-meten-voortgang-kaizen {
    flex-wrap: wrap;
  }
}

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

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

.intro-text-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
}

.intro-paragraph-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .intro-content-meten-voortgang-kaizen {
    flex-direction: column;
  }

  .intro-text-meten-voortgang-kaizen,
  .intro-image-meten-voortgang-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-meten-voortgang-kaizen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-header-meten-voortgang-kaizen {
  text-align: center;
}

.process-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

.process-steps-meten-voortgang-kaizen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.step-number-meten-voortgang-kaizen {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  min-width: 80px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.step-content-meten-voortgang-kaizen {
  flex: 1;
}

.step-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .process-step-meten-voortgang-kaizen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-meten-voortgang-kaizen {
    min-width: auto;
  }
}

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

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

.tools-header-meten-voortgang-kaizen {
  text-align: center;
}

.tools-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tools-subtitle-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

.tools-grid-meten-voortgang-kaizen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-meten-voortgang-kaizen {
  flex: 1 1 280px;
  max-width: 380px;
  background: #fef3c7;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(13, 148, 136, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-card-meten-voortgang-kaizen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.3);
}

.tool-icon-meten-voortgang-kaizen {
  font-size: 2.5rem;
  color: #0d9488;
}

.tool-name-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.tool-description-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

.examples-section-meten-voortgang-kaizen {
  background: #0a0a0a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.examples-text-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-image-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-image-meten-voortgang-kaizen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.examples-title-meten-voortgang-kaizen {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
}

.examples-paragraph-meten-voortgang-kaizen {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.examples-list-meten-voortgang-kaizen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.examples-item-meten-voortgang-kaizen {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.examples-item-meten-voortgang-kaizen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.examples-item-meten-voortgang-kaizen strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .examples-content-meten-voortgang-kaizen {
    flex-direction: column;
  }

  .examples-text-meten-voortgang-kaizen,
  .examples-image-meten-voortgang-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-meten-voortgang-kaizen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.obstacles-header-meten-voortgang-kaizen {
  text-align: center;
}

.obstacles-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.obstacles-subtitle-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

.obstacles-grid-meten-voortgang-kaizen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.obstacle-card-meten-voortgang-kaizen {
  flex: 1 1 260px;
  max-width: 340px;
  background: #fef3c7;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.obstacle-card-meten-voortgang-kaizen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
}

.obstacle-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.obstacle-text-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .obstacle-card-meten-voortgang-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-meten-voortgang-kaizen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-meten-voortgang-kaizen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-meten-voortgang-kaizen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.implementation-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-paragraph-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-steps-meten-voortgang-kaizen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-step-meten-voortgang-kaizen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.step-day-meten-voortgang-kaizen {
  color: #0d9488;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  min-width: 60px;
  flex-shrink: 0;
}

.step-action-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .implementation-content-meten-voortgang-kaizen {
    flex-direction: column;
  }

  .implementation-text-meten-voortgang-kaizen,
  .implementation-image-meten-voortgang-kaizen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-meten-voortgang-kaizen {
  background: #0a0a0a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.highlight-content-meten-voortgang-kaizen {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-quote-meten-voortgang-kaizen {
  background: #1a1a1a;
  border-left: 4px solid #0d9488;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
}

.quote-text-meten-voortgang-kaizen {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-meten-voortgang-kaizen {
  color: #94a3b8;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

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

.conclusion-content-meten-voortgang-kaizen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  word-wrap: break-word;
}

.conclusion-paragraph-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.conclusion-cta-meten-voortgang-kaizen {
  background: #fef3c7;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  margin-top: 2rem;
}

.cta-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.cta-text-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-meten-voortgang-kaizen {
  background: #0a0a0a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-meten-voortgang-kaizen {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin: 0;
  word-wrap: break-word;
}

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

.related-card-meten-voortgang-kaizen {
  flex: 1 1 340px;
  max-width: 380px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 148, 136, 0.15);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-meten-voortgang-kaizen:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.3);
}

.related-image-meten-voortgang-kaizen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f0f0f;
}

.related-image-meten-voortgang-kaizen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-meten-voortgang-kaizen {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

.related-card-description-meten-voortgang-kaizen {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

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

.disclaimer-section-meten-voortgang-kaizen {
  background: #fef3c7;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-meten-voortgang-kaizen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-meten-voortgang-kaizen {
  background: #ffffff;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-meten-voortgang-kaizen {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.disclaimer-text-meten-voortgang-kaizen {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero-section-meten-voortgang-kaizen {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .intro-section-meten-voortgang-kaizen,
  .process-section-meten-voortgang-kaizen,
  .tools-section-meten-voortgang-kaizen,
  .examples-section-meten-voortgang-kaizen,
  .obstacles-section-meten-voortgang-kaizen,
  .implementation-section-meten-voortgang-kaizen,
  .highlight-section-meten-voortgang-kaizen,
  .conclusion-section-meten-voortgang-kaizen,
  .related-section-meten-voortgang-kaizen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .meta-item-meten-voortgang-kaizen {
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-meten-voortgang-kaizen {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .hero-meta-meten-voortgang-kaizen {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .tools-grid-meten-voortgang-kaizen,
  .obstacles-grid-meten-voortgang-kaizen,
  .related-cards-meten-voortgang-kaizen {
    gap: 1rem;
  }
}

.kaizen-continuous-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.stat-item-about {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

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

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

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

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

.section-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 3vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-description-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundation-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.journey-intro-about {
  text-align: center;
  max-width: 850px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.journey-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.journey-intro-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  min-width: clamp(60px, 10vw, 100px);
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-section-about {
  background: var(--color-bg-secondary);
  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 clamp(1rem, 3vw, 2rem);
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

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

.value-card-icon-about {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.value-card-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.value-card-text-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.insight-header-about {
  text-align: center;
}

.insight-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
  display: block;
}

.cta-section-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-title-about {
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: #ffffff;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-about {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.cta-button-about:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.3vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

  .step-number-about {
    min-width: auto;
  }

  .hero-content-about {
    gap: 1.5rem;
  }

  .section-visual-about {
    margin: 1rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 6rem 0;
  }

  .foundation-section-about {
    padding: 6rem 0;
  }

  .journey-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .insight-section-about {
    padding: 6rem 0;
  }

  .cta-section-about {
    padding: 6rem 0;
  }
}

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

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
  font-weight: 700;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 4rem var(--space-lg);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: var(--space-md) 0 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 300px;
  }
}

.portfolio-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-bg-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base);
  border: 2px solid var(--color-bg-tertiary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-bg-secondary);
  color: var(--color-primary-hover);
}

.portfolio-cta-button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 4rem var(--space-lg);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.service-card__description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.service-card__highlights {
  list-style: none;
  margin: var(--space-md) 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__highlights li {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding-left: var(--space-sm);
  position: relative;
}

.service-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta__content {
  display: flex;
  flex-direction: column;
}

.services-cta__title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}

.services-cta__description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.125rem);
  line-height: 1.7;
  margin: 0 0 var(--space-lg) 0;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-base);
  width: fit-content;
  text-align: center;
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
}

.services-cta__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }

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

.improvement-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.improvement-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.improvement-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.improvement-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.improvement-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.improvement-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.improvement-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.improvement-docs ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.improvement-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

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

.improvement-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.improvement-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.improvement-docs .contact-section p {
  margin-bottom: var(--space-sm);
}

.improvement-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .improvement-docs .content {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .improvement-docs .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: center;
}

.thank-content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin: 0 auto;
}

.thank-icon {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}

.thank-icon svg {
  width: 50%;
  height: 50%;
  stroke: var(--color-primary);
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.thank-content .lead {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}

.thank-content .description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.thank-content .next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

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

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

@media (min-width: 640px) {
  .thank-you-page {
    padding: var(--space-lg);
  }

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

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-2xl);
  }

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

@media (max-width: 480px) {
  .thank-icon {
    width: 70px;
    height: 70px;
  }

  .thank-content {
    padding: 0 var(--space-sm);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 6rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(13, 148, 136, 0.1);
  letter-spacing: -0.02em;
}

.kaizen-indicator {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.progress-bg {
  fill: none;
  stroke: var(--color-primary-light);
  stroke-width: 3;
}

.progress-fill {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 212;
  stroke-dashoffset: 53;
  animation: fillProgress 3s ease-in-out infinite;
}

@keyframes fillProgress {
  0%, 100% {
    stroke-dashoffset: 53;
  }
  50% {
    stroke-dashoffset: 160;
  }
}

.indicator-text {
  position: absolute;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.error-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.error-details {
  background-color: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
}

.detail-text {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  margin: var(--space-md) auto 0;
  min-width: 200px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

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

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

.suggestion-box {
  background-color: var(--color-primary-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  border: 1px solid var(--color-primary);
}

.suggestion-text {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0;
}

.suggestion-text strong {
  font-weight: 700;
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

  .error-code-container {
    width: 240px;
    height: 240px;
  }

  .error-code {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .kaizen-indicator {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
  }

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
    min-height: 100vh;
  }

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

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

  .error-code-container {
    width: 280px;
    height: 280px;
  }

  .error-code {
    font-size: clamp(4.5rem, 12vw, 6rem);
  }

  .kaizen-indicator {
    width: 140px;
    height: 140px;
    bottom: -35px;
    right: -35px;
  }

  .error-title {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    margin-bottom: var(--space-md);
  }

  .error-message {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.1rem);
    margin-bottom: var(--space-lg);
  }

  .error-details {
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
  }

  .btn {
    min-width: 220px;
    padding: var(--space-md) var(--space-xl);
  }

  .suggestion-box {
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .container {
    padding: 0;
  }

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

  .error-code-container {
    width: 320px;
    height: 320px;
  }

  .error-code {
    font-size: 6rem;
  }

  .kaizen-indicator {
    width: 160px;
    height: 160px;
    bottom: -40px;
    right: -40px;
  }

  .indicator-text {
    font-size: 0.85rem;
  }

  .error-title {
    font-size: 2.5rem;
  }

  .error-message {
    font-size: 1.1rem;
  }

  .btn {
    min-width: 240px;
  }
}

@media (max-width: 639px) {
  .error-code-container {
    margin-bottom: var(--space-lg);
  }

  .kaizen-indicator {
    bottom: -15px;
    right: -15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

.contact-get-in-touch-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.contact-get-in-touch-hero {
  background-color: var(--color-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-bg-primary);
  margin: 0;
  line-height: 1.2;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-primary-light);
  margin: var(--space-md) 0 0 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: 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: 5rem 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);
}

@media (min-width: 768px) {
  .contact-get-in-touch-grid {
    gap: var(--space-3xl);
  }
}

.contact-get-in-touch-form-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-form-header {
  margin-bottom: var(--space-xl);
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.contact-get-in-touch-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0 0 0;
  line-height: 1.6;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-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.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-get-in-touch-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-get-in-touch-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
}

.contact-get-in-touch-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-get-in-touch-info-header {
  margin-bottom: var(--space-xl);
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.contact-get-in-touch-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: var(--space-sm) 0 0 0;
  line-height: 1.6;
}

.contact-get-in-touch-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-md);
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.contact-get-in-touch-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-get-in-touch-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-get-in-touch-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-get-in-touch-info-extra {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-get-in-touch-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-get-in-touch-main {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-main {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .contact-get-in-touch-form {
    padding: var(--space-lg);
  }

  .contact-get-in-touch-info-wrapper {
    margin-top: var(--space-lg);
  }
}