
    @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: #9a8e85;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #14b8a6;
  --color-tertiary: #f59e0b;
  
  
  --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.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  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: var(--font-base);
  line-height: var(--line-height-normal);
  font-weight: 400;
}

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

h1 {
  font-size: var(--font-6xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-3xl);
}

h4 {
  font-size: var(--font-2xl);
}

h5 {
  font-size: var(--font-xl);
}

h6 {
  font-size: var(--font-lg);
}

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

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

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

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

.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-bold {
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

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

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

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

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

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

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

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

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

input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid #e8d5c4;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: all var(--transition-base);
}

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

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

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.grid {
  display: grid;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

.animate-slide-in-up {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slide-in-right {
  animation: slideInRight var(--transition-slow) ease-out;
}

@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-5xl);
  }
  
  h2 {
    font-size: var(--font-3xl);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-4xl);
  }
  
  h2 {
    font-size: var(--font-2xl);
  }
  
  h3 {
    font-size: var(--font-xl);
  }
}

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-carriere-portal {
  background: var(--color-bg-primary);
  border-bottom: 2px solid var(--color-secondary);
  position: static;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}

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

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

.header-carriere-portal-brand:hover {
  transform: translateY(-2px);
}

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

.header-carriere-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

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

.header-carriere-portal-nav-link {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.header-carriere-portal-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-carriere-portal-cta-button {
  display: none;
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

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

.header-carriere-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-carriere-portal-mobile-toggle:hover {
  opacity: 0.7;
}

.header-carriere-portal-hamburger {
  width: 28px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  display: block;
}

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

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

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

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

.header-carriere-portal-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-carriere-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-secondary);
  transition: color var(--transition-base);
  display: block;
}

.header-carriere-portal-mobile-link:hover {
  color: var(--color-primary);
}

.header-carriere-portal-mobile-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1.5rem clamp(1rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  display: block;
}

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

@media (min-width: 768px) {
  .header-carriere-portal-container {
    min-height: 88px;
  }

  .header-carriere-portal-desktop-nav {
    display: flex;
  }

  .header-carriere-portal-cta-button {
    display: block;
  }

  .header-carriere-portal-mobile-toggle {
    display: none;
  }

  .header-carriere-portal-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header-carriere-portal-container {
    min-height: 96px;
  }

  .header-carriere-portal-logo-text {
    font-size: 1.5rem;
  }

  .header-carriere-portal-nav-link {
    font-size: var(--font-base);
  }
}

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

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

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

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

.hero-text-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

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

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

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

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

.hero-stat-number-index {
  color: #0d9488;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label-index {
  color: #9a8e85;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-btn-primary-index,
.hero-btn-secondary-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  margin-top: 0px !important;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

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

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

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

  .hero-image-index {
    max-height: 300px;
  }

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

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

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

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

.benefits-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.benefits-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.benefits-card-icon-index {
  width: 48px;
  height: 48px;
  background: #f0fdf4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 1.5rem;
}

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

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

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

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

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

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

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

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

.how-it-works-step-number-index {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.how-it-works-step-content-index {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.how-it-works-step-title-index {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.how-it-works-step-text-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .how-it-works-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .how-it-works-step-number-index {
    min-width: auto;
  }
}

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

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

.about-preview-text-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

.about-preview-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-preview-intro-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.about-preview-item-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.about-preview-item-icon-index {
  color: #0d9488;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-preview-item-text-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.about-preview-item-text-index strong {
  color: #0a0f1e;
  font-weight: 600;
}

.about-preview-image-block-index {
  flex: 1 1 45%;
  min-width: 0;
}

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

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

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

  .about-preview-image-index {
    max-height: 300px;
  }
}

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

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

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

.statistics-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.statistics-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.statistics-card-index {
  flex: 1 1 220px;
  max-width: 280px;
  background: #fef3c7;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.statistics-number-index {
  color: #0d9488;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
}

.statistics-label-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin: 0;
}

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

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

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

.features-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.features-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

.faq-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

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

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

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

.faq-answer-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.testimonials-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.testimonials-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonials-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

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

.testimonials-quote-text-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonials-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
}

.testimonials-author-name-index {
  color: #0a0f1e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  display: block;
}

.testimonials-author-role-index {
  color: #9a8e85;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  display: block;
}

.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, 4vw, 3rem);
}

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

.featured-posts-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.featured-posts-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

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

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

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

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

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

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

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

.featured-post-title-index {
  color: #0a0f1e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.featured-post-text-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-post-link-index {
  color: #0d9488;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.featured-post-link-index:hover {
  color: #0f766e;
}

.featured-posts-footer-index {
  text-align: center;
}

.featured-posts-btn-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-index {
  background: #ffffff;
  color: #0d9488;
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-index:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  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: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: rgba(241, 245, 249, 0.6);
}

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

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

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

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

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

  .hero-btn-primary-index,
  .hero-btn-secondary-index {
    width: 100%;
    text-align: center;
  }

  .statistics-card-index {
    flex: 1 1 100%;
  }

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

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

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

  .how-it-works-step-number-index {
    min-width: 60px;
    font-size: 2rem;
  }

  .faq-item-index {
    padding: 1rem;
  }

  .cta-box-index {
    padding: 1.5rem;
  }
}

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid #f3e8dc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

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

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

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

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid #f3e8dc;
}

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

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 300px;
    min-width: 280px;
  }

  .footer-nav {
    flex: 1 1 180px;
    min-width: 160px;
  }

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

  .footer-legal {
    flex: 1 1 180px;
    min-width: 160px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    order: 10;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  }

  .footer-about h3,
  .footer-nav h3,
  .footer-contact h3,
  .footer-legal h3 {
    margin-bottom: 0.875rem;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.625rem;
  }

  .footer-contact p {
    margin-bottom: 0.625rem;
  }
}

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

.category-page-dutch-career-language {
  background: var(--color-bg-primary);
}

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

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

.hero-header-dutch-career-language {
  text-align: center;
}

.hero-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  max-width: 650px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.hero-cta-dutch-career-language {
  display: flex;
  justify-content: center;
  padding-top: clamp(0.5rem, 2vw, 1rem);
}

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

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

.posts-header-dutch-career-language {
  text-align: center;
}

.posts-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.posts-description-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

.card-dutch-career-language {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1 1 300px;
  max-width: 400px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-dutch-career-language:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-dutch-career-language img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  margin: 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.card-description-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.card-meta-dutch-career-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
  border-top: 1px solid #e8d5c4;
}

.card-reading-time-dutch-career-language,
.card-level-dutch-career-language,
.card-date-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-dutch-career-language i,
.card-level-dutch-career-language i,
.card-date-dutch-career-language i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-dutch-career-language {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
}

.card-link-dutch-career-language:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
  text-decoration: underline;
}

.benefits-section-dutch-career-language {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-header-dutch-career-language {
  text-align: center;
}

.benefits-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.benefits-intro-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 650px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.benefits-highlight-dutch-career-language {
  display: flex;
  justify-content: center;
}

.highlight-box-dutch-career-language {
  background: var(--color-bg-tertiary);
  border-left: 5px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 700px;
  box-shadow: var(--shadow-md);
}

.highlight-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.highlight-text-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.highlight-text-dutch-career-language:last-child {
  margin-bottom: 0;
}

.roadmap-section-dutch-career-language {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.roadmap-content-dutch-career-language {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.roadmap-header-dutch-career-language {
  text-align: center;
}

.roadmap-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.roadmap-intro-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.roadmap-steps-dutch-career-language {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-dutch-career-language {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all var(--transition-base);
}

.step-dutch-career-language:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number-dutch-career-language {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-weight: 700;
  margin: 0 auto;
}

.step-title-dutch-career-language {
  color: var(--color-text-primary);
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  margin: 0;
  font-weight: 700;
}

.step-text-dutch-career-language {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.container {
  display: block !important;
}

@media (max-width: 768px) {
  .hero-section-dutch-career-language {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .posts-section-dutch-career-language {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .benefits-section-dutch-career-language {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .roadmap-section-dutch-career-language {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .card-dutch-career-language {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-dutch-career-language {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-meta-dutch-career-language {
    gap: clamp(0.5rem, 1vw, 1rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-dutch-career-language {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .card-dutch-career-language {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }

  .roadmap-steps-dutch-career-language {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .step-dutch-career-language {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .card-dutch-career-language {
    flex: 1 1 300px;
  }

  .step-dutch-career-language {
    flex: 1 1 280px;
  }
}

@media (max-width: 480px) {
  .card-meta-dutch-career-language {
    flex-direction: column;
    gap: 0.5rem;
  }

  .card-reading-time-dutch-career-language,
  .card-level-dutch-career-language,
  .card-date-dutch-career-language {
    justify-content: flex-start;
  }
}

.main-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-primary);
}

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

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

.hero-text-wrapper-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.hero-meta-basiswoordenschat-zakelijk-nederlands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-sm);
  color: var(--color-text-muted);
}

.meta-item-basiswoordenschat-zakelijk-nederlands {
  color: var(--color-text-muted);
}

.meta-divider-basiswoordenschat-zakelijk-nederlands {
  color: var(--color-text-muted);
}

.hero-image-basiswoordenschat-zakelijk-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.breadcrumbs-basiswoordenschat-zakelijk-nederlands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumbs-basiswoordenschat-zakelijk-nederlands a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-basiswoordenschat-zakelijk-nederlands a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.intro-section-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.intro-paragraph-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-basiswoordenschat-zakelijk-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.content-section-one-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-text-paragraph-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.content-image-one-basiswoordenschat-zakelijk-nederlands img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.highlight-box-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-lg);
}

.highlight-text-basiswoordenschat-zakelijk-nederlands {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.content-section-two-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-image-two-basiswoordenschat-zakelijk-nederlands img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.content-list-basiswoordenschat-zakelijk-nederlands {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
}

.list-item-basiswoordenschat-zakelijk-nederlands {
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.list-item-basiswoordenschat-zakelijk-nederlands strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.content-section-three-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-image-three-basiswoordenschat-zakelijk-nederlands img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.content-section-four-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-four-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-four-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-image-four-basiswoordenschat-zakelijk-nederlands img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

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

.conclusion-content-basiswoordenschat-zakelijk-nederlands {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.conclusion-text-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.disclaimer-section-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-basiswoordenschat-zakelijk-nederlands {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.disclaimer-text-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-section-basiswoordenschat-zakelijk-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-basiswoordenschat-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.related-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-tight);
}

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

.related-card-basiswoordenschat-zakelijk-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-basiswoordenschat-zakelijk-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-wrapper-basiswoordenschat-zakelijk-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-basiswoordenschat-zakelijk-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-wrapper-basiswoordenschat-zakelijk-nederlands {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-description-basiswoordenschat-zakelijk-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.related-link-basiswoordenschat-zakelijk-nederlands {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-sm);
  transition: color var(--transition-base);
  display: inline-block;
}

.related-link-basiswoordenschat-zakelijk-nederlands:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-basiswoordenschat-zakelijk-nederlands,
  .intro-content-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-one-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-two-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-three-basiswoordenschat-zakelijk-Nederlands,
  .content-wrapper-four-basiswoordenschat-zakelijk-nederlands {
    flex-direction: column;
  }

  .hero-text-wrapper-basiswoordenschat-zakelijk-nederlands,
  .hero-image-wrapper-basiswoordenschat-zakelijk-nederlands,
  .intro-text-basiswoordenschat-zakelijk-nederlands,
  .intro-image-wrapper-basiswoordenschat-zakelijk-nederlands,
  .content-text-one-basiswoordenschat-zakelijk-nederlands,
  .content-image-one-basiswoordenschat-zakelijk-nederlands,
  .content-text-two-basiswoordenschat-zakelijk-nederlands,
  .content-image-two-basiswoordenschat-zakelijk-nederlands,
  .content-text-three-basiswoordenschat-zakelijk-nederlands,
  .content-image-three-basiswoordenschat-zakelijk-nederlands,
  .content-text-four-basiswoordenschat-zakelijk-nederlands,
  .content-image-four-basiswoordenschat-zakelijk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-basiswoordenschat-zakelijk-nederlands,
  .intro-image-basiswoordenschat-zakelijk-nederlands,
  .content-image-one-basiswoordenschat-zakelijk-nederlands img,
  .content-image-two-basiswoordenschat-zakelijk-nederlands img,
  .content-image-three-basiswoordenschat-zakelijk-nederlands img,
  .content-image-four-basiswoordenschat-zakelijk-nederlands img {
    max-height: 300px;
  }

  .hero-subtitle-basiswoordenschat-zakelijk-nederlands {
    max-width: 100%;
  }

  .conclusion-content-basiswoordenschat-zakelijk-nederlands {
    padding: 0 var(--space-md);
  }

  .related-cards-basiswoordenschat-zakelijk-nederlands {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-basiswoordenschat-zakelijk-nederlands {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-content-basiswoordenschat-zakelijk-nederlands,
  .intro-content-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-one-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-two-basiswoordenschat-zakelijk-nederlands,
  .content-wrapper-three-basiswoordenschat-zakelijk-Nederlands,
  .content-wrapper-four-basiswoordenschat-zakelijk-nederlands {
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

.main-nederlandse-uitspraak-vergaderingen {
  background: #fffbeb;
  overflow: hidden;
}

.hero-section-nederlandse-uitspraak-vergaderingen {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.hero-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

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

.breadcrumbs-nederlandse-uitspraak-vergaderingen a {
  color: #0d9488;
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumbs-nederlandse-uitspraak-vergaderingen a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-uitspraak-vergaderingen span {
  color: #cbd5e1;
}

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

.hero-content-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-container-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-meta-nederlandse-uitspraak-vergaderingen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-nederlandse-uitspraak-vergaderingen {
  font-weight: 500;
  color: #57534e;
}

.meta-separator-nederlandse-uitspraak-vergaderingen {
  color: #cbd5e1;
}

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

.hero-subtitle-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-wrapper-nederlandse-uitspraak-vergaderingen {
    flex-direction: column;
  }

  .hero-content-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-container-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-nederlandse-uitspraak-vergaderingen {
    max-height: 300px;
  }
}

.intro-section-nederlandse-uitspraak-vergaderingen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

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

.intro-text-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-nederlandse-uitspraak-vergaderingen:last-child {
  margin-bottom: 0;
}

.intro-img-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .intro-text-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-section-nederlandse-uitspraak-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.technique-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.technique-header-nederlandse-uitspraak-vergaderingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.technique-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.technique-subtitle-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.technique-wrapper-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.technique-text-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.problem-block-nederlandse-uitspraak-vergaderingen {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.problem-block-nederlandse-uitspraak-vergaderingen:last-child {
  margin-bottom: 0;
}

.problem-heading-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.problem-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.problem-text-nederlandse-uitspraak-vergaderingen:last-child {
  margin-bottom: 0;
}

.technique-img-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .technique-wrapper-nederlandse-uitspraak-vergaderingen {
    flex-direction: column;
  }

  .technique-text-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-image-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.method-section-nederlandse-uitspraak-vergaderingen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.method-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.method-header-nederlandse-uitspraak-vergaderingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.method-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.method-subtitle-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.method-content-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.method-content-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 100%;
}

.step-item-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

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

.step-details-nederlandse-uitspraak-vergaderingen {
  flex: 1;
}

.step-title-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.step-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.method-image-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  max-height: 400px;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.method-img-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .step-item-nederlandse-uitspraak-vergaderingen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-nederlandse-uitspraak-vergaderingen {
    font-size: 2rem;
  }
}

.timing-section-nederlandse-uitspraak-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.timing-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.timing-wrapper-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.timing-text-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-image-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
}

.timing-paragraph-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.timing-list-nederlandse-uitspraak-vergaderingen {
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  list-style: disc;
}

.timing-item-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.timing-note-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #fef3c7;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  margin: 0;
}

.timing-img-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .timing-wrapper-nederlandse-uitspraak-vergaderingen {
    flex-direction: column;
  }

  .timing-text-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .timing-image-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-nederlandse-uitspraak-vergaderingen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.advanced-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.advanced-header-nederlandse-uitspraak-vergaderingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.advanced-subtitle-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.advanced-grid-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.advanced-card-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  min-width: 250px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
}

.advanced-card-nederlandse-uitspraak-vergaderingen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.card-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.advanced-image-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  max-height: 400px;
}

.advanced-img-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .advanced-card-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlandse-uitspraak-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.conclusion-content-nederlandse-uitspraak-vergaderingen {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
}

.conclusion-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-list-nederlandse-uitspraak-vergaderingen {
  margin-left: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  list-style: none;
  text-align: left;
  display: inline-block;
}

.conclusion-item-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.conclusion-item-nederlandse-uitspraak-vergaderingen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.conclusion-final-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  margin: 0;
  font-style: italic;
}

.related-section-nederlandse-uitspraak-vergaderingen {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.related-header-nederlandse-uitspraak-vergaderingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.related-subtitle-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.related-grid-nederlandse-uitspraak-vergaderingen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlandse-uitspraak-vergaderingen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-uitspraak-vergaderingen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-image-wrapper-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlandse-uitspraak-vergaderingen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}

.related-card-nederlandse-uitspraak-vergaderingen:hover .related-card-image-nederlandse-uitspraak-vergaderingen {
  transform: scale(1.05);
}

.related-card-content-nederlandse-uitspraak-vergaderingen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}

.related-card-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.related-card-link-nederlandse-uitspraak-vergaderingen {
  display: inline-block;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 200ms ease;
  margin-top: auto;
}

.related-card-link-nederlandse-uitspraak-vergaderingen:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-nederlandse-uitspraak-vergaderingen {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

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

.disclaimer-section-nederlandse-uitspraak-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-section-nederlandse-uitspraak-vergaderingen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.disclaimer-box-nederlandse-uitspraak-vergaderingen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-nederlandse-uitspraak-vergaderingen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-uitspraak-vergaderingen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-box-nederlandse-uitspraak-vergaderingen {
    padding: 1.5rem;
  }
}

.main-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-subtitle-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.hero-meta-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-netwerken-nederlands-kleine-praatjes {
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.meta-separator-netwerken-nederlands-kleine-praatjes {
  color: var(--color-tertiary);
  opacity: 0.5;
}

.hero-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.breadcrumbs-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumbs-netwerken-nederlands-kleine-praatjes a {
  font-size: var(--font-sm);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-netwerken-nederlands-kleine-praatjes a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-netwerken-nederlands-kleine-praatjes span {
  font-size: var(--font-sm);
  color: var(--color-text-muted);
}

.breadcrumbs-netwerken-nederlands-kleine-praatjes span:last-child {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .hero-text-netwerken-nederlands-kleine-praatjes,
  .hero-image-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }
}

.intro-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.intro-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .intro-text-netwerken-nederlands-kleine-praatjes,
  .intro-image-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }
}

.content-one-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-one-wrapper-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-one-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.content-one-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.content-one-highlight-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-primary);
}

.highlight-text-netwerken-nederlands-kleine-praatjes {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.highlight-list-netwerken-nederlands-kleine-praatjes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-netwerken-nederlands-kleine-praatjes {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-lg);
  position: relative;
}

.highlight-item-netwerken-nederlands-kleine-praatjes::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.content-one-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .content-one-text-netwerken-nederlands-kleine-praatjes,
  .content-one-image-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-one-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }
}

.content-two-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-two-wrapper-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-two-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.content-two-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.technique-step-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.step-number-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-netwerken-nederlands-kleine-praatjes {
  flex: 1;
}

.step-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.content-two-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .content-two-wrapper-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .content-two-text-netwerken-nederlands-kleine-praatjes,
  .content-two-image-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-two-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }

  .technique-step-netwerken-nederlands-kleine-praatjes {
    gap: var(--space-md);
  }
}

.content-three-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-three-wrapper-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-three-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.content-three-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.content-three-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.scenario-box-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--color-secondary);
}

.scenario-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.scenario-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .content-three-wrapper-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .content-three-image-netwerken-nederlands-kleine-praatjes,
  .content-three-text-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-three-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }
}

.content-four-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-four-wrapper-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-four-text-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.content-four-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.featured-quote-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-lg);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  font-style: italic;
}

.quote-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.quote-author-netwerken-nederlands-kleine-praatjes {
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  font-style: normal;
}

.content-four-image-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .content-four-wrapper-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .content-four-text-netwerken-nederlands-kleine-praatjes,
  .content-four-image-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-four-img-netwerken-nederlands-kleine-praatjes {
    max-height: 300px;
  }
}

.conclusion-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-netwerken-nederlands-kleine-praatjes {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.conclusion-paragraph-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.cta-box-netwerken-nederlands-kleine-praatjes {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  margin-top: var(--space-xl);
  text-align: center;
}

.cta-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.cta-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.cta-button-netwerken-nederlands-kleine-praatjes {
  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;
  font-size: var(--font-base);
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-netwerken-nederlands-kleine-praatjes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-netwerken-nederlands-kleine-praatjes {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-tertiary);
}

.disclaimer-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.disclaimer-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-section-netwerken-nederlands-kleine-praatjes {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-netwerken-nederlands-kleine-praatjes {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-netwerken-nederlands-kleine-praatjes {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.related-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.related-subtitle-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.related-card-netwerken-nederlands-kleine-praatjes {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-netwerken-nederlands-kleine-praatjes:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-netwerken-nederlands-kleine-praatjes {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-netwerken-nederlands-kleine-praatjes:hover .related-card-img-netwerken-nederlands-kleine-praatjes {
  transform: scale(1.05);
}

.related-card-body-netwerken-nederlands-kleine-praatjes {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.related-card-text-netwerken-nederlands-kleine-praatjes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.related-card-link-netwerken-nederlands-kleine-praatjes {
  font-size: var(--font-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.related-card-link-netwerken-nederlands-kleine-praatjes:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-netwerken-nederlands-kleine-praatjes {
    flex-direction: column;
  }

  .related-card-netwerken-nederlands-kleine-praatjes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-title-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  }

  .intro-title-netwerken-nederlands-kleine-praatjes,
  .content-one-title-netwerken-nederlands-kleine-praatjes,
  .content-two-title-netwerken-nederlands-kleine-praatjes,
  .content-three-title-netwerken-nederlands-kleine-praatjes,
  .content-four-title-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2.5rem);
  }

  .conclusion-title-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2.5rem);
  }
}

@media (max-width: 640px) {
  .hero-section-netwerken-nederlands-kleine-praatjes {
    padding: 2rem 0;
  }

  .intro-section-netwerken-nederlands-kleine-praatjes,
  .content-one-section-netwerken-nederlands-kleine-praatjes,
  .content-two-section-netwerken-nederlands-kleine-praatjes,
  .content-three-section-netwerken-nederlands-kleine-praatjes,
  .content-four-section-netwerken-nederlands-kleine-praatjes,
  .conclusion-section-netwerken-nederlands-kleine-praatjes,
  .disclaimer-section-netwerken-nederlands-kleine-praatjes,
  .related-section-netwerken-nederlands-kleine-praatjes {
    padding: 2rem 0;
  }

  .breadcrumbs-netwerken-nederlands-kleine-praatjes {
    margin-bottom: var(--space-md);
  }

  .hero-title-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }

  .hero-subtitle-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .technique-step-netwerken-nederlands-kleine-praatjes {
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .step-number-netwerken-nederlands-kleine-praatjes {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
}

.main-nederlandse-werkplaatscultuur {
width: 100%;
background: var(--color-bg-primary);
}

.hero-section-nederlandse-werkplaatscultuur {
background: #1c1917;
padding: clamp(2rem, 6vw, 5rem) 0;
overflow: hidden;
}

.breadcrumbs-nederlandse-werkplaatscultuur {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-nederlandse-werkplaatscultuur a {
color: #a78bfa;
text-decoration: none;
transition: color var(--transition-base);
}

.breadcrumbs-nederlandse-werkplaatscultuur a:hover {
color: #d4c5f9;
text-decoration: underline;
}

.breadcrumbs-nederlandse-werkplaatscultuur span {
color: #6b7280;
}

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

.hero-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-nederlandse-werkplaatscultuur {
color: #ffffff;
font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}

.hero-subtitle-nederlandse-werkplaatscultuur {
color: #d1d5db;
font-size: clamp(1rem, 1.5vw, 1.25rem);
line-height: 1.6;
margin-bottom: 1.5rem;
}

.hero-meta-nederlandse-werkplaatscultuur {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
}

.meta-item-nederlandse-werkplaatscultuur {
color: #9ca3af;
font-size: 0.875rem;
}

.meta-divider-nederlandse-werkplaatscultuur {
color: #4b5563;
}

.hero-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

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

@media (max-width: 768px) {
.hero-content-nederlandse-werkplaatscultuur {
flex-direction: column;
gap: 2rem;
}

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

.hero-image-nederlandse-werkplaatscultuur {
max-height: 350px;
}
}

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

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

.intro-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.intro-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
margin-bottom: 1rem;
}

.intro-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

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

@media (max-width: 768px) {
.intro-content-nederlandse-werkplaatscultuur {
flex-direction: column;
gap: 2rem;
}

.intro-text-block-nederlandse-werkplaatscultuur,
.intro-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
max-width: 100%;
}

.intro-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.directness-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-tertiary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.directness-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.directness-image-nederlandse-werkplaatscultuur {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
max-height: 400px;
object-fit: cover;
}

.directness-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.directness-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.directness-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
margin-bottom: 1rem;
}

@media (max-width: 768px) {
.directness-content-nederlandse-werkplaatscultuur {
flex-direction: column;
}

.directness-image-block-nederlandse-werkplaatscultuur,
.directness-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
max-width: 100%;
}

.directness-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.hierarchy-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.hierarchy-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.hierarchy-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hierarchy-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
margin-bottom: 1rem;
}

.hierarchy-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.hierarchy-image-nederlandse-werkplaatscultuur {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
max-height: 400px;
object-fit: cover;
}

@media (max-width: 768px) {
.hierarchy-content-nederlandse-werkplaatscultuur {
flex-direction: column;
}

.hierarchy-text-block-nederlandse-werkplaatscultuur,
.hierarchy-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
max-width: 100%;
}

.hierarchy-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.values-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-tertiary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.values-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-family: var(--font-heading);
font-weight: 700;
text-align: center;
margin-bottom: 1rem;
}

.values-grid-nederlandse-werkplaatscultuur {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
margin-bottom: 2rem;
}

.value-card-nederlandse-werkplaatscultuur {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 250px;
background: #ffffff;
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.value-card-nederlandse-werkplaatscultuur:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
transform: translateY(-4px);
}

.value-card-title-nederlandse-werkplaatscultuur {
color: #0d9488;
font-size: 1.125rem;
font-weight: 700;
font-family: var(--font-heading);
margin-bottom: 0.5rem;
}

.value-card-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: 0.95rem;
line-height: 1.6;
}

.values-image-block-nederlandse-werkplaatscultuur {
width: 100%;
}

.values-image-nederlandse-werkplaatscultuur {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
max-height: 400px;
object-fit: cover;
}

@media (max-width: 1024px) {
.value-card-nederlandse-werkplaatscultuur {
flex: 1 1 calc(50% - 1.5rem);
}
}

@media (max-width: 768px) {
.value-card-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
min-width: 100%;
}

.values-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.practical-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.practical-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.practical-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.practical-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
margin-bottom: 1rem;
}

.practical-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.practical-image-nederlandse-werkplaatscultuur {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
max-height: 400px;
object-fit: cover;
}

@media (max-width: 768px) {
.practical-content-nederlandse-werkplaatscultuur {
flex-direction: column;
}

.practical-text-block-nederlandse-werkplaatscultuur,
.practical-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
max-width: 100%;
}

.practical-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.social-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.social-image-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.social-image-nederlandse-werkplaatscultuur {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
max-height: 400px;
object-fit: cover;
}

.social-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 50%;
max-width: 50%;
}

.social-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}

.social-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
margin-bottom: 1rem;
}

@media (max-width: 768px) {
.social-content-nederlandse-werkplaatscultuur {
flex-direction: column;
}

.social-image-block-nederlandse-werkplaatscultuur,
.social-text-block-nederlandse-werkplaatscultuur {
flex: 1 1 100%;
max-width: 100%;
}

.social-image-nederlandse-werkplaatscultuur {
max-height: 300px;
}
}

.quote-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-tertiary);
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
}

.featured-quote-nederlandse-werkplaatscultuur {
max-width: 800px;
margin: 0 auto;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-left: 5px solid #0d9488;
background: #fef3c7;
border-radius: 8px;
}

.quote-text-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1rem, 1.5vw, 1.25rem);
font-style: italic;
line-height: 1.75;
margin-bottom: 1rem;
}

.quote-author-nederlandse-werkplaatscultuur {
display: block;
color: #57534e;
font-size: 0.95rem;
font-style: normal;
font-weight: 500;
}

.challenges-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.challenges-content-nederlandse-werkplaatscultuur {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 2.5rem);
}

.challenges-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-family: var(--font-heading);
font-weight: 700;
text-align: center;
margin-bottom: 1rem;
}

.challenges-intro-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
text-align: center;
margin-bottom: 1.5rem;
}

.challenge-card-nederlandse-werkplaatscultuur {
background: var(--color-bg-tertiary);
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
border-left: 4px solid #f59e0b;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.challenge-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: 1.125rem;
font-weight: 700;
font-family: var(--font-heading);
margin-bottom: 0.75rem;
}

.challenge-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: 0.95rem;
line-height: 1.75;
}

.conclusion-section-nederlandse-werkplaatscultuur {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.conclusion-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-family: var(--font-heading);
font-weight: 700;
text-align: center;
}

.conclusion-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.75;
}

.conclusion-cta-nederlandse-werkplaatscultuur {
text-align: center;
margin-top: 1rem;
}

.cta-text-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: 1rem;
font-weight: 500;
}

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

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

.related-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-family: var(--font-heading);
font-weight: 700;
text-align: center;
margin-bottom: 1rem;
}

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

.related-card-nederlandse-werkplaatscultuur {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 280px;
max-width: 380px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.related-card-nederlandse-werkplaatscultuur:hover {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
transform: translateY(-6px);
}

.related-card-image-nederlandse-werkplaatscultuur {
width: 100%;
height: 200px;
overflow: hidden;
background: #f3f4f6;
}

.related-card-img-nederlandse-werkplaatscultuur {
width: 100%;
height: 100%;
object-fit: cover;
}

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

.related-card-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: 1.125rem;
font-weight: 700;
font-family: var(--font-heading);
line-height: 1.4;
}

.related-card-desc-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: 0.9rem;
line-height: 1.6;
flex: 1;
}

.related-card-link-nederlandse-werkplaatscultuur {
color: #0d9488;
font-size: 0.95rem;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
margin-top: auto;
}

.related-card-link-nederlandse-werkplaatscultuur:hover {
color: #0f766e;
text-decoration: underline;
}

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

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

.disclaimer-section-nederlandse-werkplaatscultuur {
background: #f9fafb;
padding: clamp(2.5rem, 5vw, 4rem) 0;
overflow: hidden;
border-top: 1px solid #e5e7eb;
}

.disclaimer-content-nederlandse-werkplaatscultuur {
max-width: 800px;
margin: 0 auto;
padding: clamp(1.5rem, 3vw, 2rem);
background: #ffffff;
border-radius: 12px;
border-left: 4px solid #6b7280;
}

.disclaimer-title-nederlandse-werkplaatscultuur {
color: #1c1917;
font-size: 1.125rem;
font-weight: 700;
font-family: var(--font-heading);
margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-werkplaatscultuur {
color: #57534e;
font-size: 0.95rem;
line-height: 1.75;
}

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

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

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

html, body {
  width: 100%;
}

.dutch-coaching-narrative-about {
  width: 100%;
  background: #0a0f1e;
  color: #ffffff;
  font-family: var(--font-primary);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
}

p, span, li, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-title-about {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  line-height: var(--line-height-relaxed);
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

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

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

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
}

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

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

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

.foundation-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.foundation-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.methodology-header-about {
  text-align: center;
}

.methodology-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  max-width: 650px;
  margin: 0 auto;
}

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

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

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: clamp(3rem, 8vw, 4rem);
}

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

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

.step-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: var(--line-height-relaxed);
}

.approach-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem auto;
}

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

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

.values-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.values-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.values-subtitle-about {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #111d2f;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  transition: all var(--transition-base);
}

.value-card-about:hover {
  transform: translateY(-4px);
  background: #162d50;
}

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #f59e0b;
  margin-bottom: 1rem;
}

.card-title-about {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
}

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

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

.impact-header-about {
  text-align: center;
}

.impact-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.impact-description-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  background: #0d1526;
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.quote-text-about {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
}

.disclaimer-section-about {
  background: #111d2f;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-about {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: #f59e0b;
  font-size: 1.25rem;
}

.disclaimer-text-about {
  color: #cbd5e1;
  font-size: clamp(0.825rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-content-about {
    padding: 0 1rem;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: 2.5rem;
  }

  .value-cards-about {
    gap: 1.5rem;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-content-about,
  .methodology-content-about,
  .values-content-about,
  .impact-content-about {
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: 5rem 0;
  }

  .foundation-section-about,
  .methodology-section-about,
  .values-section-about,
  .impact-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 6rem 0;
  }

  .foundation-section-about,
  .methodology-section-about,
  .values-section-about,
  .impact-section-about {
    padding: 6rem 0;
  }
}

.portfolio-page {
  width: 100%;
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-weight: 400;
}

.portfolio-projects {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

.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;
  gap: var(--space-md);
  flex: 1;
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: auto;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-cta-button {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--color-bg-tertiary);
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

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

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

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

  .portfolio-card-image {
    height: 300px;
  }

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

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 350px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }

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

@media (min-width: 1440px) {
  .portfolio-hero-container,
  .portfolio-projects-container,
  .portfolio-cta-container {
    max-width: 1320px;
  }

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

.services-page {
    width: 100%;
    background-color: var(--color-bg-primary);
  }

  .services-hero {
    background-color: var(--color-primary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .services-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--font-3xl), 5vw, var(--font-5xl));
    color: var(--color-bg-tertiary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
  }

  .services-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(var(--font-base), 2vw, var(--font-lg));
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--line-height-normal);
  }

  @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-grid-section {
    background-color: var(--color-bg-primary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

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

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

    .services-grid-section {
      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: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
  }

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

  .service-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
  }

  .service-card-icon i {
    font-size: var(--font-2xl);
    color: var(--color-primary);
  }

  .service-card-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--font-xl), 3vw, var(--font-2xl));
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
  }

  .service-card-description {
    font-family: var(--font-primary);
    font-size: var(--font-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
    flex-grow: 1;
  }

  .service-card-focus {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .focus-tag {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-family: var(--font-primary);
    font-weight: 500;
  }

  .services-cta-section {
    background-color: var(--color-secondary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .services-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--font-2xl), 4vw, var(--font-3xl));
    color: var(--color-bg-tertiary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
  }

  .services-cta-text {
    font-family: var(--font-primary);
    font-size: clamp(var(--font-sm), 2vw, var(--font-base));
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
  }

  .services-cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg-tertiary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: var(--font-base);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--transition-base), transform var(--transition-base);
  }

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

  @media (min-width: 768px) {
    .services-cta-section {
      padding: var(--space-3xl) var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .services-cta-section {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  .services-images-section {
    background-color: var(--color-bg-tertiary);
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
  }

  .services-images-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .services-images-container {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }

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

  @media (min-width: 1024px) {
    .services-images-section {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  .services-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

: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: #9a8e85;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #14b8a6;
  --color-tertiary: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

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

.legal-docs .legal-docs-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-docs .updated-date {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.legal-docs li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs {
    padding: var(--space-xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
  }

  .legal-docs .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs {
    padding: var(--space-2xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-2xl);
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-sm);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.2));
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.thank-content .message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.thank-content .next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-page {
    padding: var(--space-lg) var(--space-md);
  }
  
  .thank-icon svg {
    width: 100px;
    height: 100px;
  }
  
  .thank-content {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .thank-icon {
    margin-bottom: var(--space-2xl);
  }
  
  .thank-content .message {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    margin-bottom: var(--space-lg);
  }
  
  .thank-content .next-steps {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .thank-icon svg {
    width: 120px;
    height: 120px;
  }
  
  .thank-icon {
    margin-bottom: var(--space-3xl);
  }
  
  .thank-content h1 {
    margin-bottom: var(--space-md);
  }
  
  .thank-content .lead {
    margin-bottom: var(--space-xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-sm) 0;
}

.error-subtext {
  font-size: clamp(0.9rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
  margin-top: var(--space-md);
  cursor: pointer;
}

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl);
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  .error-code-wrapper {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .error-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .error-decoration {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }

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

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

  .error-code {
    font-size: 8rem;
  }

  .btn-primary {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-decoration {
    animation: none;
  }

  .error-message {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }
}

.contact-lets-talk {
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-lets-talk-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-lets-talk-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-lets-talk-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-lets-talk-hero-content {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }
}

.contact-lets-talk-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-lets-talk-main-content {
  padding: 0 var(--space-md);
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-form-wrapper h2,
.contact-lets-talk-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-lets-talk-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-primary);
  font-weight: 600;
  display: block;
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border: 2px solid #e8e2dd;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  box-sizing: border-box;
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-lets-talk-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: var(--line-height-relaxed);
}

.contact-lets-talk-privacy-notice {
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  color: var(--color-text-secondary);
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-sm) 0;
}

.contact-lets-talk-privacy-notice p {
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-lets-talk-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  letter-spacing: 0.5px;
}

.contact-lets-talk-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-lets-talk-submit:active {
  transform: translateY(0);
}

.contact-lets-talk-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-lets-talk-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #f0ebe7;
}

.contact-lets-talk-info-item:last-of-type {
  border-bottom: none;
}

.contact-lets-talk-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-lets-talk-info-content h3 {
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-weight: 700;
}

.contact-lets-talk-info-content p {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-lets-talk-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-info-box {
  background-color: var(--color-bg-tertiary);
  border: 2px solid #e8e2dd;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-lets-talk-info-box h3 {
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.contact-lets-talk-info-box p {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-lets-talk-info-box-highlight {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: var(--color-tertiary);
}

.contact-lets-talk-info-box-highlight h3 {
  color: var(--color-tertiary);
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: var(--space-3xl) 0;
  }

  .contact-lets-talk-main-content {
    padding: 0 var(--space-lg);
  }

  .contact-lets-talk-form-wrapper {
    flex: 1 1 400px;
    max-width: 550px;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 300px;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  .contact-lets-talk-grid {
    gap: var(--space-3xl);
  }

  .contact-lets-talk-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 45%;
  }
}