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

:root {
  
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-bg-hover: #f8fafc;
  
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0ea5e9;
  --color-secondary-light: #cffafe;
  
  
  --color-success: #059669;
  --color-success-light: #d1fae5;
  --color-warning: #d97706;
  --color-warning-light: #fef3c7;
  --color-error: #dc2626;
  --color-error-light: #fee2e2;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  
  --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(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  overflow-x: hidden;
}

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

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

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

h3 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.01em;
}

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

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

h6 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
}

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

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

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

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

strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

small {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

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

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

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

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

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

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

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

.text-sm { font-size: var(--fs-sm); }
.text-base { font-size: var(--fs-base); }
.text-lg { font-size: var(--fs-lg); }

.font-medium { font-weight: var(--fw-medium); }
.font-semibold { font-weight: var(--fw-semibold); }
.font-bold { font-weight: var(--fw-bold); }

.leading-tight { line-height: var(--lh-tight); }
.leading-normal { line-height: var(--lh-normal); }
.leading-relaxed { line-height: var(--lh-relaxed); }

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  padding: var(--space-sm);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

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

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

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  position: relative;
  transition: color var(--transition-base);
}

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

.link:hover {
  color: var(--color-primary-hover);
}

.link:hover::after {
  width: 100%;
}

.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: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

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

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

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

.animate-slide-down {
  animation: slideDown var(--transition-slow) ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.header-werk-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.header-werk-portal-brand:hover {
  opacity: 0.85;
}

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

.header-werk-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

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

.header-werk-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.header-werk-portal-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.header-werk-portal-nav-link:hover::after {
  width: 100%;
}

.header-werk-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-werk-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  transition: color var(--transition-base);
  flex-shrink: 0;
}

.header-werk-portal-mobile-toggle:hover {
  color: var(--color-primary);
}

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

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

.header-werk-portal-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: sticky;
  top: 0;
  background: var(--color-bg-primary);
  z-index: 1;
}

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

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

.header-werk-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.header-werk-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all var(--transition-base);
  display: block;
}

.header-werk-portal-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
}

.header-werk-portal-mobile-cta {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: white;
  text-decoration: none;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  background: var(--color-primary);
  text-align: center;
  transition: all var(--transition-base);
  display: block;
  margin: 1.5rem clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

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

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

  .header-werk-portal-mobile-menu {
    display: none;
  }

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

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

    .dutch-training-hub {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

.hero-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
}

.hero-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-buttons-index .btn {
  flex-shrink: 0;
}

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

.hero-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 640px) {
  .hero-section-index {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .hero-stats-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .hero-buttons-index {
    flex-direction: column;
  }
  
  .hero-buttons-index .btn {
    width: 100%;
  }
}

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

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

.features-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  height: auto;
}

.card-icon-index i {
  display: block;
}

.card-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: var(--lh-relaxed);
}

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

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

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

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.about-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-description-index:last-of-type {
  margin-bottom: 0;
}

.about-list-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.about-item-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-item-index::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: 1.25em;
}

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

.about-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

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

.process-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.process-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.25rem;
}

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

.step-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: var(--lh-relaxed);
}

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

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

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

.statistics-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.statistics-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

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

.stat-card-index {
  flex: 1 1 260px;
  max-width: 320px;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-card-number-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

.stat-card-label-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: var(--fw-semibold);
  color: #ffffff;
  margin: 0;
}

.stat-card-text-index {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: var(--lh-relaxed);
}

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

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

.testimonials-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.testimonials-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.testimonial-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.testimonial-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name-index {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0;
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
}

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

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

.blog-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.blog-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.blog-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.blog-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

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

.blog-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

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

.blog-card-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--lh-tight);
}

.blog-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
  flex: 1;
}

.blog-card-link-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.blog-card-link-index:hover {
  color: var(--color-primary-hover);
}

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

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

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

.faq-header-index {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
}

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

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.cta-box-index {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin: 0;
  line-height: var(--lh-tight);
}

.cta-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: var(--lh-relaxed);
}

.cta-box-index .btn {
  align-self: center;
}

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

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

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

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

.cookie-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  flex: 1 1 auto;
  min-width: 200px;
  line-height: var(--lh-normal);
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: var(--font-primary);
}

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

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

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

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

    .footer {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  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, 4rem);
}

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list a:hover {
  color: var(--color-primary);
}

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-list li {
  display: block;
}

.footer-legal-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-list a:hover {
  color: var(--color-primary);
}

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

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2.5rem, 4vw, 3.5rem);
    grid-auto-rows: max-content;
  }

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

@media (max-width: 767px) {
  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
  }

  .footer-nav-list a,
  .footer-legal-list a {
    display: block;
  }
}
    

.category-page-zakelijk-nederlands {
  background: #ffffff;
}

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

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

.hero-text-block-zakelijk-nederlands {
  flex: 1 1 45%;
  min-width: 300px;
}

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

.hero-subtitle-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.4;
}

.hero-description-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.hero-image-zakelijk-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-zakelijk-nederlands {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-text-block-zakelijk-nederlands,
  .hero-image-block-zakelijk-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }

  .hero-image-zakelijk-nederlands {
    max-height: 350px;
  }
}

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

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

.posts-header-zakelijk-nederlands {
  text-align: center;
}

.posts-title-zakelijk-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.posts-subtitle-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.card-zakelijk-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-zakelijk-nederlands img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-title-zakelijk-nederlands {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem) 0.75rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.card-description-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding: 0.75rem clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0;
  flex-grow: 1;
}

.card-meta-zakelijk-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 1rem clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid #e2e8f0;
  font-size: 0.8125rem;
}

.meta-item-zakelijk-nederlands {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.meta-item-zakelijk-nederlands i {
  color: #2563eb;
  font-size: 0.9rem;
}

.card-link-zakelijk-nederlands {
  color: #2563eb;
  font-weight: 600;
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
}

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

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

.insights-section-zakelijk-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-quote-zakelijk-nederlands {
  flex: 1 1 45%;
  min-width: 300px;
}

.quote-text-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.author-name-zakelijk-nederlands {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role-zakelijk-nederlands {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.insights-info-zakelijk-nederlands {
  flex: 1 1 45%;
  min-width: 300px;
}

.insights-title-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.insights-text-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.insights-text-zakelijk-nederlands:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .insights-content-zakelijk-nederlands {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .insights-quote-zakelijk-nederlands,
  .insights-info-zakelijk-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

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

.resources-header-zakelijk-nederlands {
  text-align: center;
}

.resources-title-zakelijk-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.resources-description-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.resource-item-zakelijk-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.resource-item-zakelijk-nederlands:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.resource-heading-zakelijk-nederlands {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.resource-text-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .resource-item-zakelijk-nederlands {
    flex: 1 1 100%;
    max-width: unset;
  }
}

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

  .posts-title-zakelijk-nederlands {
    font-size: 1.5rem;
  }

  .insights-title-zakelijk-nederlands {
    font-size: 1.5rem;
  }

  .resources-title-zakelijk-nederlands {
    font-size: 1.5rem;
  }

  .quote-text-zakelijk-nederlands {
    font-size: 1rem;
  }
}

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

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

.main-werkwoorden-tijden-nederlands {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-werkwoorden-tijden-nederlands {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-werkwoorden-tijden-nederlands {
  color: #cbd5e1;
}

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

.hero-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-werkwoorden-tijden-nederlands a {
  font-size: 0.875rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-werkwoorden-tijden-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-werkwoorden-tijden-nederlands span {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.intro-section-werkwoorden-tijden-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-werkwoorden-tijden-nederlands:last-child {
  margin-bottom: 0;
}

.intro-image-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.present-section-werkwoorden-tijden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.present-text-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.present-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.present-paragraph-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.present-example-werkwoorden-tijden-nederlands {
  background: #f1f5f9;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.example-label-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.example-list-werkwoorden-tijden-nederlands {
  list-style: none;
  margin: 0;
  padding: 0;
}

.example-list-werkwoorden-tijden-nederlands li {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.example-list-werkwoorden-tijden-nederlands li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 600;
}

.example-list-werkwoorden-tijden-nederlands li:last-child {
  margin-bottom: 0;
}

.present-note-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  border-left: 4px solid #2563eb;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.present-image-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.present-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.past-section-werkwoorden-tijden-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.past-image-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.past-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.past-text-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.past-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.past-paragraph-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.past-example-werkwoorden-tijden-nederlands {
  background: #f1f5f9;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.past-note-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  border-left: 4px solid #2563eb;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.future-section-werkwoorden-tijden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.future-text-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.future-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.future-paragraph-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.future-example-werkwoorden-tijden-nederlands {
  background: #f1f5f9;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.future-note-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  border-left: 4px solid #2563eb;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.future-image-werkwoorden-tijden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.future-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.progressive-section-werkwoorden-tijden-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.progressive-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.progressive-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.progressive-intro-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.progressive-cards-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.progressive-card-werkwoorden-tijden-nederlands {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

.card-text-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
}

.card-example-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
  background: #f1f5f9;
  padding: 0.75rem;
  border-radius: 6px;
}

.practical-section-werkwoorden-tijden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.practical-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tips-wrapper-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tip-block-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.tip-number-werkwoorden-tijden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
}

.tip-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

.tip-text-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
}

.practical-image-werkwoorden-tijden-nederlands {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.practical-image-werkwoorden-tijden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.summary-section-werkwoorden-tijden-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.summary-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.summary-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-grid-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.summary-card-werkwoorden-tijden-nederlands {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-card-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

.summary-card-text-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
}

.summary-card-use-werkwoorden-tijden-nederlands {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.75;
  background: #f1f5f9;
  padding: 0.75rem;
  border-radius: 6px;
}

.cta-section-werkwoorden-tijden-nederlands {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  align-items: center;
}

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

.cta-text-werkwoorden-tijden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #f0f9ff;
  line-height: 1.75;
  max-width: 600px;
}

.cta-button-werkwoorden-tijden-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.cta-button-werkwoorden-tijden-nederlands:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

.disclaimer-content-werkwoorden-tijden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.disclaimer-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

.disclaimer-text-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
}

.related-section-werkwoorden-tijden-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-werkwoorden-tijden-nederlands {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-werkwoorden-tijden-nederlands:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-wrapper-werkwoorden-tijden-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.related-text-werkwoorden-tijden-nederlands {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-werkwoorden-tijden-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-werkwoorden-tijden-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-werkwoorden-tijden-nederlands,
  .intro-content-werkwoorden-tijden-nederlands,
  .present-content-werkwoorden-tijden-nederlands,
  .past-content-werkwoorden-tijden-nederlands,
  .future-content-werkwoorden-tijden-nederlands {
    flex-direction: column;
  }

  .hero-text-wrapper-werkwoorden-tijden-Nederlands,
  .hero-image-wrapper-werkwoorden-tijden-nederlands,
  .intro-text-werkwoorden-tijden-nederlands,
  .intro-image-werkwoorden-tijden-nederlands,
  .present-text-werkwoorden-tijden-nederlands,
  .present-image-werkwoorden-tijden-nederlands,
  .past-text-werkwoorden-tijden-nederlands,
  .past-image-werkwoorden-tijden-nederlands,
  .future-text-werkwoorden-tijden-nederlands,
  .future-image-werkwoorden-tijden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-block-werkwoorden-tijden-nederlands {
    gap: 1rem;
  }

  .progressive-card-werkwoorden-tijden-nederlands,
  .summary-card-werkwoorden-tijden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-werkwoorden-tijden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .progressive-card-werkwoorden-tijden-nederlands,
  .summary-card-werkwoorden-tijden-nederlands,
  .related-card-werkwoorden-tijden-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 380px;
  }
}

.main-presentaties-nederlands-werk {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-presentaties-nederlands-werk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumb-link-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumb-link-presentaties-nederlands-werk:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumb-separator-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumb-current-presentaties-nederlands-werk {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

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

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

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

.hero-subtitle-presentaties-nederlands-werk {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

.hero-meta-presentaties-nederlands-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

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

.meta-item-presentaties-nederlands-werk i {
  color: #0ea5e9;
  font-size: 1.1em;
}

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

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

@media (max-width: 768px) {
  .hero-content-presentaties-nederlands-werk {
    flex-direction: column;
  }
  
  .hero-text-wrapper-presentaties-nederlands-werk,
  .hero-image-wrapper-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-presentaties-nederlands-werk {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

.intro-text-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}

.intro-paragraph-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-presentaties-nederlands-werk:last-child {
  margin-bottom: 0;
}

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

.intro-image-presentaties-nederlands-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-presentaties-nederlands-werk {
    flex-direction: column;
  }
  
  .intro-text-presentaties-nederlands-werk,
  .intro-image-wrapper-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-presentaties-nederlands-werk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.structure-text-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}

.structure-paragraph-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.structure-steps-presentaties-nederlands-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card-presentaties-nederlands-werk {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-number-presentaties-nederlands-werk {
  color: #2563eb;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.step-text-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.structure-image-wrapper-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-presentaties-nederlands-werk {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .structure-content-presentaties-nederlands-werk {
    flex-direction: column;
  }
  
  .structure-text-presentaties-nederlands-werk,
  .structure-image-wrapper-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.language-section-presentaties-nederlands-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.language-image-wrapper-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.language-image-presentaties-nederlands-werk {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.language-text-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.language-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}

.language-paragraph-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.phrases-box-presentaties-nederlands-werk {
  background: #f1f5f9;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.phrases-box-presentaties-nederlands-werk:last-child {
  margin-bottom: 0;
}

.phrases-heading-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.phrases-list-presentaties-nederlands-werk {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phrase-item-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.phrase-item-presentaties-nederlands-werk::before {
  content: '';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

@media (max-width: 768px) {
  .language-content-presentaties-nederlands-werk {
    flex-direction: column;
  }
  
  .language-image-wrapper-presentaties-nederlands-werk,
  .language-text-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-presentaties-nederlands-werk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-presentaties-nederlands-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tips-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.tips-subtitle-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.tips-cards-presentaties-nederlands-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-presentaties-Nederlands-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
  text-align: center;
}

.tip-card-presentaties-nederlands-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
  text-align: center;
}

.tip-card-presentaties-nederlands-werk:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.tip-icon-presentaties-nederlands-werk {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  font-size: 1.75rem;
  color: #2563eb;
}

.tip-card-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.tip-card-text-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tip-card-presentaties-nederlands-werk {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tip-card-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.mistakes-text-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
}

.mistakes-paragraph-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.mistake-item-presentaties-nederlands-werk {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  border-left: 4px solid #d97706;
}

.mistake-item-presentaties-nederlands-werk:last-child {
  margin-bottom: 0;
}

.mistake-heading-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.mistake-text-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.mistakes-image-wrapper-presentaties-nederlands-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-presentaties-nederlands-werk {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mistakes-content-presentaties-nederlands-werk {
    flex-direction: column;
  }
  
  .mistakes-text-presentaties-nederlands-werk,
  .mistakes-image-wrapper-presentaties-nederlands-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.quote-content-presentaties-nederlands-werk {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-presentaties-nederlands-werk {
  display: block;
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid #0ea5e9;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.quote-text-presentaties-nederlands-werk {
  color: #f1f5f9;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Lora', serif;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.quote-author-presentaties-nederlands-werk {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: normal;
  display: block;
}

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

.conclusion-content-presentaties-nederlands-werk {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
}

.conclusion-paragraph-presentaties-nederlands-werk {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
}

.conclusion-paragraph-presentaties-nederlands-werk:last-of-type {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.conclusion-cta-presentaties-nederlands-werk {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.cta-title-presentaties-nederlands-werk {
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.cta-text-presentaties-nederlands-werk {
  color: #e0e7ff;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.btn-cta-presentaties-nederlands-werk {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  transition: all 200ms ease;
  display: inline-block;
}

.btn-cta-presentaties-nederlands-werk:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.related-content-presentaties-nederlands-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-family: 'Lora', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.related-subtitle-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  text-align: center;
  line-height: 1.6;
}

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

.related-card-presentaties-nederlands-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

.related-card-presentaties-nederlands-werk:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.related-image-wrapper-presentaties-nederlands-werk {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-presentaties-nederlands-werk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.related-card-presentaties-nederlands-werk:hover .related-card-image-presentaties-nederlands-werk {
  transform: scale(1.05);
}

.related-card-content-presentaties-nederlands-werk {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

.related-card-text-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-presentaties-nederlands-werk {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 200ms ease;
}

.related-card-link-presentaties-nederlands-werk:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

.disclaimer-section-presentaties-nederlands-werk {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-presentaties-nederlands-werk {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-presentaties-nederlands-werk {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0ea5e9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-presentaties-nederlands-werk {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-title-presentaties-nederlands-werk i {
  color: #0ea5e9;
  font-size: 1.3em;
}

.disclaimer-text-presentaties-nederlands-werk {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .hero-section-presentaties-nederlands-werk {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }
  
  .intro-section-presentaties-nederlands-werk,
  .structure-section-presentaties-nederlands-werk,
  .language-section-presentaties-nederlands-werk,
  .tips-section-presentaties-nederlands-werk,
  .mistakes-section-presentaties-nederlands-werk,
  .quote-section-presentaties-nederlands-werk,
  .conclusion-section-presentaties-nederlands-werk,
  .related-section-presentaties-nederlands-werk,
  .disclaimer-section-presentaties-nederlands-werk {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-presentaties-nederlands-werk {
    font-size: 0.75rem;
  }
  
  .hero-meta-presentaties-nederlands-werk {
    gap: 1rem;
  }
}

.main-emails-nederlands-zakelijk {
  width: 100%;
  overflow-x: hidden;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-emails-nederlands-zakelijk {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-emails-nederlands-zakelijk {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
}

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

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

.breadcrumbs-emails-nederlands-zakelijk span {
  color: var(--color-text-muted);
}

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

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

.hero-title-emails-nederlands-zakelijk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.hero-subtitle-emails-nederlands-zakelijk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-normal);
}

.hero-meta-emails-nederlands-zakelijk {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.meta-item-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  font-weight: var(--fw-medium);
}

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

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

.hero-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

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

  .hero-text-emails-nederlands-zakelijk,
  .hero-image-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.intro-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-bold);
}

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

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

.intro-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

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

  .intro-text-emails-nederlands-zakelijk,
  .intro-image-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.structure-image-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.structure-text-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-bold);
}

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

.structure-list-emails-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.list-item-emails-nederlands-zakelijk {
  padding: var(--space-md);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.list-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.list-text-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .structure-content-emails-nederlands-zakelijk {
    flex-direction: column;
  }

  .structure-image-emails-nederlands-zakelijk,
  .structure-text-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.templates-header-emails-nederlands-zakelijk {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.templates-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
}

.templates-subtitle-emails-nederlands-zakelijk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
}

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

.template-card-emails-nederlands-zakelijk {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.card-content-emails-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card-label-emails-nederlands-zakelijk {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--space-md) 0 var(--space-xs) 0;
}

.card-example-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
  padding: var(--space-sm);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .template-card-emails-nederlands-zakelijk {
    flex: 1 1 100%;
  }
}

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

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

.tips-text-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-bold);
}

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

.tips-list-emails-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tip-item-emails-nederlands-zakelijk {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.tip-number-emails-nederlands-zakelijk {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 3.5rem;
  line-height: var(--lh-tight);
}

.tip-content-emails-nederlands-zakelijk {
  flex: 1;
}

.tip-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.tip-text-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
}

.tips-image-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .tips-content-emails-nederlands-zakelijk {
    flex-direction: column;
  }

  .tips-text-emails-nederlands-zakelijk,
  .tips-image-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-item-emails-nederlands-zakelijk {
    gap: var(--space-sm);
  }

  .tip-number-emails-nederlands-zakelijk {
    min-width: 2.5rem;
    font-size: 1.75rem;
  }
}

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

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

.mistakes-image-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.mistakes-text-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-bold);
}

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

.mistakes-list-emails-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mistake-item-emails-nederlands-zakelijk {
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-error);
}

.mistake-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.mistake-text-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .mistakes-content-emails-nederlands-zakelijk {
    flex-direction: column;
  }

  .mistakes-image-emails-nederlands-zakelijk,
  .mistakes-text-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-emails-nederlands-zakelijk {
  background: var(--color-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-emails-nederlands-zakelijk {
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-emails-nederlands-zakelijk {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-medium);
}

.quote-author-emails-nederlands-zakelijk {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

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

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

.practice-text-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-bold);
}

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

.practice-highlight-emails-nederlands-zakelijk {
  padding: var(--space-lg);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-success);
}

.highlight-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.checklist-emails-nederlands-zakelijk {
  margin: 0;
  padding-left: var(--space-lg);
}

.checklist-item-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.checklist-item-emails-nederlands-zakelijk:last-child {
  margin-bottom: 0;
}

.practice-image-emails-nederlands-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-emails-nederlands-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .practice-content-emails-nederlands-zakelijk {
    flex-direction: column;
  }

  .practice-text-emails-nederlands-zakelijk,
  .practice-image-emails-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-emails-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-header-emails-nederlands-zakelijk {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-emails-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
}

.related-subtitle-emails-nederlands-zakelijk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
}

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

.related-card-emails-nederlands-zakelijk {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 320px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-emails-nederlands-zakelijk {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-emails-nederlands-zakelijk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-emails-nederlands-zakelijk:hover .related-card-image-emails-nederlands-zakelijk img {
  transform: scale(1.05);
}

.related-card-content-emails-nederlands-zakelijk {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  margin-top: 0;
  line-height: var(--lh-tight);
}

.related-card-text-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
}

@media (max-width: 1024px) {
  .related-card-emails-nederlands-zakelijk {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

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

.disclaimer-content-emails-nederlands-zakelijk {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-emails-nederlands-zakelijk {
  font-size: var(--fs-lg);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.disclaimer-text-emails-nederlands-zakelijk {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-emails-nederlands-zakelijk {
    max-width: 100%;
  }
}

.main-werkgesprekken-småltalk-nederlands {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-werkgesprekken-småltalk-nederlands {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-werkgesprekken-småltalk-nederlands a {
  color: #2563eb;
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumbs-werkgesprekken-småltalk-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-werkgesprekken-småltalk-nederlands span {
  color: #cbd5e1;
}

.meta-badge-werkgesprekken-småltalk-nederlands {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 20px;
  font-size: clamp(0.7rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-separator-werkgesprekken-småltalk-nederlands {
  color: #cbd5e1;
  margin: 0 0.5rem;
}

.meta-reading-werkgesprekken-småltalk-nederlands,
.meta-date-werkgesprekken-småltalk-nederlands {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin: clamp(1rem, 3vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-werkgesprekken-småltalk-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
}

.hero-image-wrapper-werkgesprekken-småltalk-nederlands {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-image-werkgesprekken-småltalk-nederlands {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.intro-section-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-werkgesprekken-småltalk-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-werkgesprekken-småltalk-nederlands {
    flex-direction: column;
  }

  .intro-text-werkgesprekken-småltalk-nederlands,
  .intro-image-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-block-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-block-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-werkgesprekken-småltalk-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-werkgesprekken-småltalk-nederlands {
    flex-direction: column;
  }

  .content-text-block-werkgesprekken-småltalk-nederlands,
  .content-image-block-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.topics-section-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.topics-content-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.topics-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
}

.topics-intro-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.topics-grid-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.topic-card-werkgesprekken-småltalk-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

.topic-card-werkgesprekken-småltalk-nederlands:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.topic-card-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.topic-card-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .topic-card-werkgesprekken-småltalk-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .topic-card-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
  }
}

.techniques-section-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.techniques-wrapper-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.techniques-text-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-paragraph-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.technique-item-werkgesprekken-småltalk-nederlands {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.technique-item-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.technique-item-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.techniques-image-werkgesprekken-småltalk-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .techniques-wrapper-werkgesprekken-småltalk-nederlands {
    flex-direction: column;
  }

  .techniques-text-werkgesprekken-småltalk-nederlands,
  .techniques-image-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: column;
}

.mistakes-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-intro-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.mistakes-wrapper-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.mistake-item-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #dc2626;
  border-radius: 8px;
}

.mistake-item-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.mistake-item-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.strategies-section-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.strategies-wrapper-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-werkgesprekken-småltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategies-paragraph-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.strategy-box-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategy-box-werkgesprekken-småltalk-nederlands:last-child {
  margin-bottom: 0;
}

.strategy-box-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.strategy-box-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
}

.strategies-image-werkgesprekken-småltalk-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .strategies-wrapper-werkgesprekken-småltalk-nederlands {
    flex-direction: column;
  }

  .strategies-text-werkgesprekken-småltalk-nederlands,
  .strategies-image-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-werkgesprekken-småltalk-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-werkgesprekken-småltalk-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: #1e293b;
  border-radius: 8px;
}

.quote-text-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-werkgesprekken-småltalk-nederlands {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

.conclusion-section-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-werkgesprekken-småltalk-nederlands {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-paragraph-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
}

.conclusion-checklist-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.conclusion-checklist-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.conclusion-list-werkgesprekken-småltalk-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conclusion-list-item-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.conclusion-list-item-werkgesprekken-småltalk-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.conclusion-list-item-werkgesprekken-småltalk-nederlands:last-child {
  margin-bottom: 0;
}

.conclusion-final-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  font-style: italic;
}

.related-section-werkgesprekken-småltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
}

.related-subtitle-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.related-grid-werkgesprekken-småltalk-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.related-card-werkgesprekken-småltalk-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-werkgesprekken-småltalk-nederlands:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-werkgesprekken-småltalk-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-werkgesprekken-småltalk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-werkgesprekken-småltalk-nederlands {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.related-card-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .related-card-werkgesprekken-småltalk-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-werkgesprekken-småltalk-nederlands {
    flex: 1 1 100%;
  }
}

.disclaimer-section-werkgesprekken-småltalk-nederlands {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-werkgesprekken-småltalk-nederlands {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0ea5e9;
}

.disclaimer-title-werkgesprekken-småltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.disclaimer-text-werkgesprekken-småltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section-werkgesprekken-småltalk-nederlands {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .intro-section-werkgesprekken-småltalk-nederlands,
  .content-section-werkgesprekken-småltalk-nederlands,
  .topics-section-werkgesprekken-småltalk-nederlands,
  .techniques-section-werkgesprekken-småltalk-nederlands,
  .mistakes-section-werkgesprekken-småltalk-nederlands,
  .strategies-section-werkgesprekken-småltalk-nederlands,
  .conclusion-section-werkgesprekken-småltalk-nederlands,
  .related-section-werkgesprekken-småltalk-nederlands {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .quote-section-werkgesprekken-småltalk-nederlands {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

@media (max-width: 640px) {
  .hero-title-werkgesprekken-småltalk-nederlands {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .intro-title-werkgesprekken-småltalk-nederlands,
  .content-title-werkgesprekken-småltalk-nederlands,
  .techniques-title-werkgesprekken-småltalk-nederlands,
  .strategies-title-werkgesprekken-småltalk-nederlands {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .topics-title-werkgesprekken-småltalk-nederlands,
  .mistakes-title-werkgesprekken-småltalk-nederlands,
  .conclusion-title-werkgesprekken-småltalk-nederlands,
  .related-title-werkgesprekken-småltalk-nederlands {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
}

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

.dutch-training-academy-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-primary);
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin-top: 2rem;
}

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

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

.stat-number-about {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0ea5e9;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.stat-label-about {
  display: block;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  color: #cbd5e1;
  font-family: var(--font-primary);
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.mission-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.mission-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

.mission-grid-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .mission-grid-about {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0ea5e9;
}

.mission-card-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
}

.mission-card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

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

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

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

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

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

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

@media (max-width: 640px) {
  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0ea5e9;
  min-width: 80px;
  flex-shrink: 0;
  font-family: var(--font-primary);
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

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

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

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

.features-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.features-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

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

.feature-card-about {
  flex: 1 1 240px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: 2.5rem;
  color: #0ea5e9;
  margin-bottom: 1rem;
  display: block;
  font-family: var(--font-primary);
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

.expertise-list-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.expertise-icon-about {
  color: #0ea5e9;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-family: var(--font-primary);
}

.expertise-item-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

.expertise-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #0ea5e9;
  background: #1e293b;
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  color: #f1f5f9;
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-primary);
}

.cta-section-about {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  font-family: var(--font-heading);
}

.cta-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e0f2fe;
  line-height: var(--lh-relaxed);
  font-family: var(--font-primary);
}

.cta-button-about {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #0ea5e9;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.cta-button-about:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  color: #0891b2;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-family: var(--font-primary);
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: var(--font-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: var(--lh-relaxed);
  margin: 0;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .mission-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .testimonial-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .cta-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .features-grid-about {
    gap: 2rem;
  }

  .feature-card-about {
    flex: 1 1 280px;
  }
}

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

.faq-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #e0e0e0;
  margin: 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-content {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-card);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__question {
  flex: 1;
  line-height: var(--lh-normal);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  border-top: 1px solid #e2e8f0;
  background-color: #f9fafb;
  animation: slideDown var(--transition-base);
}

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-regular);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-item__trigger {
    padding: var(--space-xl) var(--space-lg);
    font-size: 1rem;
  }

  .faq-item__answer {
    padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
  }

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

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.services-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero__title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.services-hero__subtitle {
  color: #e0e7ff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  margin: 0;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-xl);
    min-height: 360px;
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-card__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.services-card__description {
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.services-card__topics {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
  border-top: 1px solid #e2e8f0;
  padding-top: var(--space-md);
}

.services-card__topics li {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.services-card__topics li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.services-benefits {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  margin-top: var(--space-3xl);
}

.services-benefits__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-lg) 0;
}

.services-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .services-benefits__list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-benefits {
    padding: var(--space-2xl) var(--space-xl);
  }
}

.services-benefits__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.services-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-success-light);
  border-radius: var(--radius-full);
  color: var(--color-success);
  flex-shrink: 0;
  font-size: var(--fs-sm);
}

.services-benefits__text {
  color: var(--color-text-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  text-align: center;
}

.services-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta__title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.services-cta__text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-lg) 0;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (max-width: 767px) {
  .services-card {
    padding: var(--space-lg);
  }

  .services-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs main {
  width: 100%;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: var(--fw-regular);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-regular);
}

.legal-docs ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
  list-style-type: disc;
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.legal-docs strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

.legal-docs section {
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.legal-docs .contact-section p strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs h1 {
    margin-bottom: var(--space-md);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: var(--lh-normal);
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-success-light);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  stroke-width: 2;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-sm);
}

.thank-lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-success);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: center;
  min-width: 200px;
  line-height: var(--lh-normal);
}

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

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

.btn-primary:active {
  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);
  }

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

  .thank-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-lg);
  }

  .thank-icon svg {
    width: 56px;
    height: 56px;
  }

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

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-xl);
  }

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

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-xl);
  }

  .thank-icon svg {
    width: 64px;
    height: 64px;
  }

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

@media (min-width: 1024px) {
  .thank-page {
    min-height: 100vh;
    padding: var(--space-2xl);
  }

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

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--lh-normal);
  overflow-x: hidden;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  animation: float-up 3s ease-in-out infinite;
}

.error-code {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}

.error-illustration {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

.illustration-svg {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
}

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

.error-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-medium);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
}

.error-description strong {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  line-height: var(--lh-tight);
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes float-up {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes gentle-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

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

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-illustration {
    width: 140px;
    height: 140px;
  }

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

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }

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

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-illustration {
    width: 160px;
    height: 160px;
  }

  .error-content {
    margin-top: var(--space-4xl);
  }

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

@media (prefers-reduced-motion: reduce) {
  .error-code-wrapper,
  .error-illustration,
  .btn {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .error-section {
    padding: var(--space-md);
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  .error-illustration {
    width: 100px;
    height: 100px;
  }

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

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

  .btn {
    width: 100%;
  }
}

.contact-write-to-us {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-write-to-us-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  padding: 0 var(--space-md);
}

.contact-write-to-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.contact-write-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-write-to-us-hero-content {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: var(--space-4xl) 0;
  }

  .contact-write-to-us-hero-content {
    padding: 0;
  }
}

.contact-write-to-us-main {
  width: 100%;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-write-to-us-content {
  padding: 0 var(--space-md);
}

.contact-write-to-us-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-write-to-us-form-wrapper {
  width: 100%;
}

.contact-write-to-us-form-header {
  margin-bottom: var(--space-lg);
}

.contact-write-to-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.contact-write-to-us-form-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-write-to-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-write-to-us-label {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  display: block;
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  background-color: var(--color-bg-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: var(--lh-normal);
}

.contact-write-to-us-form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.contact-write-to-us-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-write-to-us-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.contact-write-to-us-checkbox-text {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-write-to-us-privacy-link:hover,
.contact-write-to-us-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-write-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-write-to-us-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.contact-write-to-us-submit:active {
  transform: translateY(0);
}

.contact-write-to-us-submit-text {
  display: inline-block;
}

.contact-write-to-us-submit-icon {
  font-size: var(--fs-sm);
  transition: transform var(--transition-base);
}

.contact-write-to-us-submit:hover .contact-write-to-us-submit-icon {
  transform: translateX(3px);
}

.contact-write-to-us-info-wrapper {
  width: 100%;
}

.contact-write-to-us-info-header {
  margin-bottom: var(--space-lg);
}

.contact-write-to-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.contact-write-to-us-info-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-write-to-us-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-write-to-us-info-item {
  display: flex;
  gap: var(--space-md);
}

.contact-write-to-us-info-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-write-to-us-info-icon {
  font-size: var(--fs-lg);
  color: var(--color-primary);
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-item-title {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-write-to-us-info-link {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
  display: inline-block;
}

.contact-write-to-us-info-link:hover,
.contact-write-to-us-info-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-info-detail {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin: var(--space-xs) 0 0 0;
  line-height: var(--lh-normal);
}

.contact-write-to-us-info-box {
  background-color: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-write-to-us-info-box-title {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

.contact-write-to-us-info-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-write-to-us-info-box-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

.contact-write-to-us-info-box-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-success);
  font-size: var(--fs-sm);
}

@media (min-width: 768px) {
  .contact-write-to-us-main {
    padding: var(--space-3xl) 0;
  }

  .contact-write-to-us-content {
    padding: 0 var(--space-lg);
  }

  .contact-write-to-us-grid {
    flex-direction: row;
    gap: var(--space-3xl);
  }

  .contact-write-to-us-form-wrapper {
    flex: 1;
    min-width: 0;
  }

  .contact-write-to-us-info-wrapper {
    flex: 1;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: var(--space-4xl) 0;
  }

  .contact-write-to-us-content {
    padding: 0;
  }

  .contact-write-to-us-grid {
    gap: var(--space-4xl);
  }
}

@media (max-width: 767px) {
  .contact-write-to-us-form {
    gap: var(--space-sm);
  }

  .contact-write-to-us-submit {
    margin-top: var(--space-sm);
  }
}

.main-werkgesprekken-smalltalk-nederlands {
  width: 100%;
  overflow: hidden;
}

.hero-section-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-werkgesprekken-smalltalk-nederlands {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-werkgesprekken-smalltalk-nederlands a {
  color: #2563eb;
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumbs-werkgesprekken-smalltalk-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-werkgesprekken-smalltalk-nederlands span {
  color: #cbd5e1;
}

.meta-badge-werkgesprekken-smalltalk-nederlands {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 20px;
  font-size: clamp(0.7rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-separator-werkgesprekken-smalltalk-nederlands {
  color: #cbd5e1;
  margin: 0 0.5rem;
}

.meta-reading-werkgesprekken-smalltalk-nederlands,
.meta-date-werkgesprekken-smalltalk-nederlands {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin: clamp(1rem, 3vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 90%;
}

.hero-image-wrapper-werkgesprekken-smalltalk-nederlands {
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.intro-section-werkgesprekken-smalltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

  .intro-text-werkgesprekken-smalltalk-nederlands,
  .intro-image-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-block-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-block-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.content-image-werkgesprekken-smalltalk-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-werkgesprekken-smalltalk-nederlands {
    flex-direction: column;
  }

  .content-text-block-werkgesprekken-smalltalk-nederlands,
  .content-image-block-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.topics-section-werkgesprekken-smalltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.topics-content-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.topics-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
}

.topics-intro-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.topics-grid-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.topic-card-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
}

.topic-card-werkgesprekken-smalltalk-nederlands:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.topic-card-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.topic-card-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .topic-card-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .topic-card-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
  }
}

.techniques-section-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.techniques-wrapper-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.techniques-text-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-paragraph-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.technique-item-werkgesprekken-smalltalk-nederlands {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.technique-item-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.technique-item-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.techniques-image-werkgesprekken-smalltalk-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .techniques-wrapper-werkgesprekken-smalltalk-nederlands {
    flex-direction: column;
  }

  .techniques-text-werkgesprekken-smalltalk-nederlands,
  .techniques-image-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-werkgesprekken-smalltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: column;
}

.mistakes-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-intro-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.mistakes-wrapper-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.mistake-item-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #dc2626;
  border-radius: 8px;
}

.mistake-item-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.mistake-item-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.strategies-section-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.strategies-wrapper-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategies-paragraph-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.strategy-box-werkgesprekken-smalltalk-nederlands {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategy-box-werkgesprekken-smalltalk-nederlands:last-child {
  margin-bottom: 0;
}

.strategy-box-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.strategy-box-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
}

.strategies-image-werkgesprekken-smalltalk-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .strategies-wrapper-werkgesprekken-smalltalk-nederlands {
    flex-direction: column;
  }

  .strategies-text-werkgesprekken-smalltalk-nederlands,
  .strategies-image-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-werkgesprekken-smalltalk-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-werkgesprekken-smalltalk-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: #1e293b;
  border-radius: 8px;
}

.quote-text-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-werkgesprekken-smalltalk-nederlands {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

.conclusion-section-werkgesprekken-smalltalk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-werkgesprekken-smalltalk-nederlands {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-paragraph-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
}

.conclusion-checklist-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.conclusion-checklist-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.conclusion-list-werkgesprekken-smalltalk-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conclusion-list-item-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.conclusion-list-item-werkgesprekken-smalltalk-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.conclusion-list-item-werkgesprekken-smalltalk-nederlands:last-child {
  margin-bottom: 0;
}

.conclusion-final-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  font-style: italic;
}

.related-section-werkgesprekken-smalltalk-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.related-subtitle-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.related-grid-werkgesprekken-smalltalk-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.related-card-werkgesprekken-smalltalk-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-werkgesprekken-smalltalk-nederlands:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-werkgesprekken-smalltalk-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-werkgesprekken-smalltalk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-werkgesprekken-smalltalk-nederlands {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.related-card-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .related-card-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-werkgesprekken-smalltalk-nederlands {
    flex: 1 1 100%;
  }
}

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

.disclaimer-content-werkgesprekken-smalltalk-nederlands {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0ea5e9;
}

.disclaimer-title-werkgesprekken-smalltalk-nederlands {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.disclaimer-text-werkgesprekken-smalltalk-nederlands {
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
}

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

  .intro-section-werkgesprekken-smalltalk-nederlands,
  .content-section-werkgesprekken-smalltalk-nederlands,
  .topics-section-werkgesprekken-smalltalk-nederlands,
  .techniques-section-werkgesprekken-smalltalk-nederlands,
  .mistakes-section-werkgesprekken-smalltalk-nederlands,
  .strategies-section-werkgesprekken-smalltalk-nederlands,
  .conclusion-section-werkgesprekken-smalltalk-nederlands,
  .related-section-werkgesprekken-smalltalk-nederlands {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .quote-section-werkgesprekken-smalltalk-nederlands {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

@media (max-width: 640px) {
  .hero-title-werkgesprekken-smalltalk-nederlands {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .intro-title-werkgesprekken-smalltalk-nederlands,
  .content-title-werkgesprekken-smalltalk-nederlands,
  .techniques-title-werkgesprekken-smalltalk-nederlands,
  .strategies-title-werkgesprekken-smalltalk-nederlands {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .topics-title-werkgesprekken-smalltalk-nederlands,
  .mistakes-title-werkgesprekken-smalltalk-nederlands,
  .conclusion-title-werkgesprekken-smalltalk-nederlands,
  .related-title-werkgesprekken-smalltalk-nederlands {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
}