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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(0, 0, 0, 0.02);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --color-success: #059669;
  --color-warning: #f59e0b;
  --color-error: #dc2626;
  --color-info: #2563eb;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  --font-4xl: 3rem;
  
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --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-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-tooltip: 1070;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: var(--font-4xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-3xl);
  font-weight: 700;
}

h3 {
  font-size: var(--font-2xl);
  font-weight: 700;
}

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

h5 {
  font-size: var(--font-lg);
  font-weight: 600;
}

h6 {
  font-size: var(--font-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

em, i {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

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

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

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

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

.card-border {
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  border: 2px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.badge-success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-success);
}

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

.badge-error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-error);
}

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-medium);
  border-left: 4px solid;
}

.alert-success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-success);
  border-left-color: var(--color-success);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
  border-left-color: var(--color-warning);
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-error);
  border-left-color: var(--color-error);
}

.alert-info {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-info);
  border-left-color: var(--color-info);
}

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

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

.text-xs { font-size: var(--font-xs); }
.text-sm { font-size: var(--font-sm); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }

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

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

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

.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }

.line-clamp-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hidden { display: none !important; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.block { display: block; }

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

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

@media (min-width: 769px) {
  .show-mobile { display: none; }
}

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

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

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

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

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

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

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

th {
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  border-bottom: 2px solid rgba(13, 148, 136, 0.2);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  color: var(--color-text-secondary);
}

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

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

code {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

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

pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: rgba(13, 148, 136, 0.1);
  margin: var(--space-xl) 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img.img-fluid {
  width: 100%;
}

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

.link-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.link-icon::after {
  content: '';
  transition: transform var(--transition-fast);
}

.link-icon:hover::after {
  transform: translateX(4px);
}

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

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

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

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

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

.animate-slide-in-down {
  animation: slideInDown var(--transition-base);
}

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

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

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

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

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

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

@media (prefers-color-scheme: light) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}
.header-spraak-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: relative;
  z-index: var(--z-sticky);
}

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

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

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

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

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

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

.header-spraak-portal-nav-link {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

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

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

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

.header-spraak-portal-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1.25rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-spraak-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  flex-shrink: 0;
  z-index: calc(var(--z-fixed) + 1);
}

.header-spraak-portal-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-xs);
  transition: all var(--transition-base);
}

.header-spraak-portal-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-spraak-portal-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-spraak-portal-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-spraak-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
  padding-top: clamp(4rem, 10vw, 5rem);
  border-left: 1px solid var(--color-bg-secondary);
}

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

.header-spraak-portal-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: clamp(4rem, 10vw, 5rem);
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

.header-spraak-portal-mobile-close:active {
  transform: scale(0.9);
}

.header-spraak-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.header-spraak-portal-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: background var(--transition-fast);
}

.header-spraak-portal-mobile-link:active {
  background: var(--color-bg-secondary);
}

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

.header-spraak-portal-mobile-cta:active {
  background: var(--color-primary-hover);
  transform: scale(0.98);
}

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

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

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

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

@media (max-width: 767px) {
  .header-spraak-portal-container {
    padding: 0 1rem;
  }

  .header-spraak-portal-logo-text {
    font-size: 1.125rem;
  }
}

    .dutch-workplace-hub {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

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

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

  .hero-image-index {
    min-height: 250px;
  }

  .hero-img-index {
    max-height: 350px;
  }

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

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

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

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

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

.about-text-main-index {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-text-secondary-index {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.benefit-item-index {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
}

.benefit-icon-index {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.benefit-text-index {
  line-height: 1.6;
}

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

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

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

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

  .about-image-index {
    min-height: 250px;
  }

  .about-img-index {
    max-height: 350px;
  }
}

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

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

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

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

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

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

.feature-icon-index {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.feature-card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
}

.feature-card-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.blog-preview-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-preview-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.blog-preview-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-base);
  color: inherit;
}

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

.blog-preview-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.blog-preview-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  margin: 0;
}

.blog-preview-card-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.blog-preview-link-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: auto;
}

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

.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: 800px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.testimonial-card-index:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote-index {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

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

.testimonial-name-index {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.testimonial-role-index {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

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

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

.how-it-works-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-it-works-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.step-item-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.faq-item-index {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.faq-question-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

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

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

.stats-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stats-subtitle-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.stats-card-index {
  flex: 1 1 240px;
  max-width: 320px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.stats-number-index {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stats-label-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
}

.stats-desc-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

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

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

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

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  flex: 1 1 200px;
  line-height: 1.6;
}

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

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

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

.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 {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    justify-content: stretch;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100%;
  }
}

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

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

  .stat-label-index {
    font-size: 0.75rem;
  }

  .step-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  border-bottom: 2px solid transparent;
}

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

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

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

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

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

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

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

  .footer-contact {
    flex: 1 1 250px;
    min-width: 240px;
  }

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

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.75rem, 1vw, 1.25rem);
  }

  .footer-link {
    display: block;
  }
}

@media (max-width: 480px) {
  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
  }

  .footer-link {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  }

  .footer-about p,
  .footer-contact p {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
  }
}
    

.category-page-dutch-workplace-communication {
  width: 100%;
}

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

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

@media (min-width: 768px) {
  .hero-content-dutch-workplace-communication {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-dutch-workplace-communication {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-dutch-workplace-communication {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-dutch-workplace-communication {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #f1f5f9;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.hero-description-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.hero-accent-dutch-workplace-communication {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.accent-box-dutch-workplace-communication {
  background: #0f172a;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
}

.accent-text-dutch-workplace-communication {
  color: #e2e8f0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 767px) {
  .hero-accent-dutch-workplace-communication {
    min-height: 200px;
  }

  .accent-box-dutch-workplace-communication {
    max-width: 100%;
  }
}

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

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

.posts-header-dutch-workplace-communication {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-dutch-workplace-communication {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.posts-intro-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-dutch-workplace-communication {
  flex: 1 1 280px;
  max-width: 400px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card-dutch-workplace-communication:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.card-image-dutch-workplace-communication {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.card-title-dutch-workplace-communication {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #1e293b;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.card-description-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

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

.card-meta-item-dutch-workplace-communication {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.card-meta-item-dutch-workplace-communication i {
  color: #0d9488;
  font-size: 0.9rem;
}

.card-link-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.card-link-dutch-workplace-communication:hover {
  color: #0f766e;
  text-decoration: underline;
}

.card-link-dutch-workplace-communication::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-dutch-workplace-communication:hover::after {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .card-dutch-workplace-communication {
    flex: 1 1 100%;
    max-width: none;
  }
}

.insights-section-dutch-workplace-communication {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-dutch-workplace-communication {
  text-align: center;
}

.insights-title-dutch-workplace-communication {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.insights-quote-dutch-workplace-communication {
  background: #ffffff;
  border-left: 5px solid #0d9488;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text-dutch-workplace-communication {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.quote-author-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  margin: 0;
  font-weight: 600;
}

.insights-body-dutch-workplace-communication {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-text-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

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

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

.tips-header-dutch-workplace-communication {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tips-title-dutch-workplace-communication {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.tips-intro-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.tips-grid-dutch-workplace-communication {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-item-dutch-workplace-communication {
  flex: 1 1 240px;
  max-width: 300px;
  background: #1e293b;
  border-top: 3px solid #0d9488;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-item-dutch-workplace-communication:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.15);
}

.tip-number-dutch-workplace-communication {
  width: 40px;
  height: 40px;
  background: #0d9488;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tip-title-dutch-workplace-communication {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.tip-text-dutch-workplace-communication {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .tip-item-dutch-workplace-communication {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: #0f766e;
}

blockquote {
  margin: 0;
  padding: 0;
}

.main-presentaties-nederlands-geven {
  background: #fffbeb;
  overflow: hidden;
}

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

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

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

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

.hero-img-presentaties-nederlands-geven {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.hero-subtitle-presentaties-nederlands-geven {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta-presentaties-nederlands-geven {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}

.meta-item-presentaties-nederlands-geven {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-presentaties-nederlands-geven {
  color: #475569;
}

.breadcrumbs-presentaties-nederlands-geven {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-presentaties-nederlands-geven a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-presentaties-nederlands-geven a:hover {
  color: #cbd5e1;
}

.breadcrumbs-presentaties-nederlands-geven span {
  color: #475569;
}

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

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

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

.intro-content-presentaties-nederlands-geven {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.intro-text-presentaties-nederlands-geven {
  max-width: 900px;
  margin: 0 auto;
}

.intro-title-presentaties-nederlands-geven {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

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

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

.preparation-text-presentaties-nederlands-geven {
  flex: 1 1 50%;
  max-width: 50%;
}

.preparation-image-presentaties-nederlands-geven {
  flex: 1 1 50%;
  max-width: 50%;
}

.preparation-img-presentaties-nederlands-geven {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.preparation-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.preparation-paragraph-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.preparation-list-presentaties-nederlands-geven {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.list-item-presentaties-nederlands-geven {
  font-size: 0.95rem;
  color: #57534e;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.list-item-presentaties-nederlands-geven:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

@media (max-width: 768px) {
  .preparation-wrapper-presentaties-nederlands-geven {
    flex-direction: column;
  }

  .preparation-text-presentaties-nederlands-geven,
  .preparation-image-presentaties-nederlands-geven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.breathing-image-presentaties-nederlands-geven {
  flex: 1 1 50%;
  max-width: 50%;
}

.breathing-img-presentaties-nederlands-geven {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.breathing-text-presentaties-nederlands-geven {
  flex: 1 1 50%;
  max-width: 50%;
}

.breathing-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.breathing-paragraph-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.breathing-paragraph-presentaties-nederlands-geven:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .breathing-wrapper-presentaties-nederlands-geven {
    flex-direction: column-reverse;
  }

  .breathing-image-presentaties-nederlands-geven,
  .breathing-text-presentaties-nederlands-geven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.language-img-presentaties-nederlands-geven {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.language-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.language-paragraph-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.language-highlight-presentaties-nederlands-geven {
  background: #ccfbf1;
  border-left: 4px solid #0d9488;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-presentaties-nederlands-geven {
  font-size: 0.95rem;
  color: #065f46;
  margin: 0;
}

.highlight-text-presentaties-nederlands-geven strong {
  color: #047857;
  font-weight: 600;
}

@media (max-width: 768px) {
  .language-wrapper-presentaties-nederlands-geven {
    flex-direction: column;
  }

  .language-text-presentaties-nederlands-geven,
  .language-image-presentaties-nederlands-geven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.body-language-img-presentaties-nederlands-geven {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.body-language-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.body-language-paragraph-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.body-language-paragraph-presentaties-nederlands-geven:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .body-language-wrapper-presentaties-nederlands-geven {
    flex-direction: column-reverse;
  }

  .body-language-image-presentaties-nederlands-geven,
  .body-language-text-presentaties-nederlands-geven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practice-content-presentaties-nederlands-geven {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.practice-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.practice-intro-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}

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

.practice-card-presentaties-nederlands-geven {
  flex: 1 1 280px;
  max-width: 320px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.practice-card-presentaties-nederlands-geven:hover {
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

.card-title-presentaties-nederlands-geven {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 700;
  margin: 0;
}

.card-text-presentaties-nederlands-geven {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.practice-closing-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .practice-cards-presentaties-nederlands-geven {
    flex-direction: column;
    align-items: stretch;
  }

  .practice-card-presentaties-nederlands-geven {
    max-width: 100%;
  }
}

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

.conclusion-content-presentaties-nederlands-geven {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-box-presentaties-nederlands-geven {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-presentaties-nederlands-geven {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-presentaties-nederlands-geven {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #f0f9ff;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.conclusion-text-presentaties-nederlands-geven:last-child {
  margin-bottom: 0;
}

.disclaimer-section-presentaties-nederlands-geven {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-title-presentaties-nederlands-geven {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-presentaties-nederlands-geven {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-section-presentaties-nederlands-geven {
  background: #f8f6f1;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.related-title-presentaties-nederlands-geven {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.related-card-presentaties-nederlands-geven {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-presentaties-nederlands-geven:hover {
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

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

.related-img-presentaties-nederlands-geven {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-info-presentaties-nederlands-geven {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-presentaties-nederlands-geven {
  font-size: 1rem;
  color: #1c1917;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.related-card-text-presentaties-nederlands-geven {
  font-size: 0.875rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.related-link-presentaties-nederlands-geven {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-link-presentaties-nederlands-geven:hover {
  color: #065f46;
}

@media (max-width: 768px) {
  .related-cards-presentaties-nederlands-geven {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-presentaties-nederlands-geven {
    max-width: 100%;
  }
}

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

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

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

@media (max-width: 768px) {
  .main-presentaties-nederlands-geven {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .main-presentaties-nederlands-geven {
    font-size: 15px;
  }
}

.main-zakelijk-gesprek-nederlands {
  width: 100%;
  background: #fffbeb;
  color: #1c1917;
  font-family: 'Poppins', sans-serif;
}

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

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

.breadcrumbs-zakelijk-gesprek-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
}

.breadcrumbs-zakelijk-gesprek-nederlands a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs-zakelijk-gesprek-nederlands a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-zakelijk-gesprek-nederlands span {
  color: #a8a29e;
}

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

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

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

.hero-lead-zakelijk-gesprek-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #57534e;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-meta-zakelijk-gesprek-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.meta-item-zakelijk-gesprek-nederlands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #57534e;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.meta-item-zakelijk-gesprek-nederlands i {
  color: #0d9488;
  font-size: 1.25rem;
}

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

.hero-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

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

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

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

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

.intro-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.intro-paragraph-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.intro-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
}

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

.formality-section-zakelijk-gesprek-nederlands {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.formality-text-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.formality-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.formality-paragraph-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.formality-highlight-zakelijk-gesprek-nederlands {
  background: rgba(13, 148, 136, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0d9488;
}

.highlight-title-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 1rem;
}

.highlight-list-zakelijk-gesprek-nederlands {
  list-style: none;
  margin-left: 0;
}

.list-item-zakelijk-gesprek-nederlands {
  color: #57534e;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-zakelijk-gesprek-nederlands:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.formality-image-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.formality-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
}

@media (max-width: 768px) {
  .formality-content-zakelijk-gesprek-nederlands {
    flex-direction: column;
  }
  
  .formality-text-zakelijk-gesprek-nederlands,
  .formality-image-zakelijk-gesprek-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.opening-image-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.opening-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
}

.opening-text-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.opening-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.opening-paragraph-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.opening-steps-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-zakelijk-gesprek-nederlands {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fffbeb;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.step-number-zakelijk-gesprek-nederlands {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d9488;
  min-width: 60px;
  font-family: 'Playfair Display', serif;
}

.step-info-zakelijk-gesprek-nederlands {
  flex: 1;
}

.step-title-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.step-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .opening-content-zakelijk-gesprek-nederlands {
    flex-direction: column;
  }
  
  .opening-image-zakelijk-gesprek-nederlands,
  .opening-text-zakelijk-gesprek-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .opening-image-zakelijk-gesprek-nederlands {
    order: 0;
  }
}

.key-phrases-section-zakelijk-gesprek-nederlands {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.key-phrases-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
}

.key-phrases-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 2rem;
  text-align: center;
}

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

.phrases-text-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-intro-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.phrase-group-zakelijk-gesprek-nederlands {
  margin-bottom: 1.5rem;
}

.phrase-category-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 1rem;
}

.phrase-list-zakelijk-gesprek-nederlands {
  list-style: none;
  margin-left: 0;
}

.phrase-item-zakelijk-gesprek-nederlands {
  color: #57534e;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.phrase-item-zakelijk-gesprek-nederlands:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.phrase-item-zakelijk-gesprek-nederlands strong {
  color: #1c1917;
  font-weight: 600;
}

.phrases-image-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
}

@media (max-width: 768px) {
  .phrases-wrapper-zakelijk-gesprek-nederlands {
    flex-direction: column;
  }
  
  .phrases-text-zakelijk-gesprek-nederlands,
  .phrases-image-zakelijk-gesprek-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.listening-image-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-img-zakelijk-gesprek-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.1);
}

.listening-text-zakelijk-gesprek-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
}

.listening-paragraph-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.listening-tips-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tip-card-zakelijk-gesprek-nederlands {
  background: #fffbeb;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.tip-title-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.tip-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.listening-conclusion-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-style: italic;
}

@media (max-width: 768px) {
  .listening-content-zakelijk-gesprek-nederlands {
    flex-direction: column;
  }
  
  .listening-image-zakelijk-gesprek-nederlands,
  .listening-text-zakelijk-gesprek-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-zakelijk-gesprek-nederlands {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
}

.mistakes-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 2rem;
  text-align: center;
}

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

.mistake-card-zakelijk-gesprek-nederlands {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  text-align: center;
}

.mistake-number-zakelijk-gesprek-nederlands {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mistake-heading-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.mistake-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

.closing-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.closing-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  text-align: center;
}

.closing-paragraph-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.closing-checklist-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.check-item-zakelijk-gesprek-nederlands {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-mark-zakelijk-gesprek-nederlands {
  color: #0d9488;
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 30px;
}

.check-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.closing-quote-zakelijk-gesprek-nederlands {
  background: #fffbeb;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  margin-top: 2rem;
  text-align: center;
}

.quote-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.cta-section-zakelijk-gesprek-nederlands {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-text-zakelijk-gesprek-nederlands {
  color: #f0fdf4;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-button-zakelijk-gesprek-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #0d9488;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button-zakelijk-gesprek-nederlands:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-zakelijk-gesprek-nederlands {
  background: #fef3c7;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  margin: 0;
}

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

.related-content-zakelijk-gesprek-nederlands {
  display: flex;
  flex-direction: column;
}

.related-title-zakelijk-gesprek-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-card-zakelijk-gesprek-nederlands {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  transition: all 0.3s ease;
}

.related-card-zakelijk-gesprek-nederlands:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

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

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

.related-info-zakelijk-gesprek-nederlands {
  padding: 1.5rem;
}

.related-card-title-zakelijk-gesprek-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-zakelijk-gesprek-nederlands {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-link-zakelijk-gesprek-nederlands {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.related-link-zakelijk-gesprek-nederlands:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

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

@media (max-width: 480px) {
  .hero-section-zakelijk-gesprek-nederlands {
    padding: 2rem 0;
  }
  
  .intro-section-zakelijk-gesprek-nederlands,
  .formality-section-zakelijk-gesprek-nederlands,
  .opening-section-zakelijk-gesprek-nederlands,
  .key-phrases-section-zakelijk-gesprek-nederlands,
  .listening-section-zakelijk-gesprek-nederlands,
  .common-mistakes-section-zakelijk-gesprek-nederlands,
  .closing-section-zakelijk-gesprek-nederlands,
  .cta-section-zakelijk-gesprek-nederlands,
  .related-section-zakelijk-gesprek-nederlands {
    padding: 2rem 0;
  }
  
  .meta-item-zakelijk-gesprek-nederlands {
    gap: 0.5rem;
  }
  
  .step-card-zakelijk-gesprek-nederlands {
    flex-direction: column;
    padding: 1rem;
  }
  
  .step-number-zakelijk-gesprek-nederlands {
    font-size: 2rem;
    min-width: auto;
  }
}

.main-feedback-nederlands-werkplek {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fffbeb;
}

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

.hero-section-feedback-nederlands-werkplek {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-feedback-nederlands-werkplek a {
  color: #ccfbf1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-feedback-nederlands-werkplek a:hover {
  color: #ffffff;
}

.breadcrumbs-feedback-nederlands-werkplek span {
  color: #a7f3d0;
}

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

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

.hero-badge-feedback-nederlands-werkplek {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(207, 250, 254, 0.2);
  color: #ccfbf1;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta-feedback-nederlands-werkplek {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-feedback-nederlands-werkplek {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a7f3d0;
  font-size: 0.875rem;
}

.meta-item-feedback-nederlands-werkplek i {
  font-size: 1rem;
}

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

.hero-image-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.intro-text-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-tag-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

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

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

.methods-header-feedback-nederlands-werkplek {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methods-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-subtitle-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.methods-text-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-paragraph-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.method-step-feedback-nederlands-werkplek {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border-left: 4px solid #0d9488;
}

.step-title-feedback-nederlands-werkplek {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f766e;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.methods-image-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-tag-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .methods-content-feedback-nederlands-werkplek {
    flex-direction: column;
  }
  
  .methods-text-feedback-nederlands-werkplek,
  .methods-image-feedback-nederlands-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.receiving-image-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.receiving-image-tag-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

.receiving-text-feedback-Nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.receiving-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.receiving-paragraph-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.receiving-tips-feedback-nederlands-werkplek {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.tips-heading-feedback-nederlands-werkplek {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f766e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-list-feedback-nederlands-werkplek {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-item-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.tips-item-feedback-nederlands-werkplek:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .receiving-content-feedback-nederlands-werkplek {
    flex-direction: column;
  }
  
  .receiving-image-feedback-nederlands-werkplek,
  .receiving-text-feedback-Nederlands-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.common-header-feedback-nederlands-werkplek {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.common-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-subtitle-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.common-text-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-card-feedback-nederlands-werkplek {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border-left: 4px solid #dc2626;
}

.mistake-title-feedback-nederlands-werkplek {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #991b1b;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mistake-text-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.common-image-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-image-tag-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .common-content-feedback-nederlands-werkplek {
    flex-direction: column;
  }
  
  .common-text-feedback-nederlands-werkplek,
  .common-image-feedback-nederlands-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-text-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.example-box-feedback-nederlands-werkplek {
  background: #fef3c7;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  border-left: 4px solid #f59e0b;
}

.example-intro-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #92400e;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.example-bad-feedback-nederlands-werkplek {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: #991b1b;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.example-good-feedback-nederlands-werkplek {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  color: #059669;
  padding-left: 1rem;
}

.practical-image-feedback-nederlands-werkplek {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-tag-feedback-nederlands-werkplek {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .practical-content-feedback-nederlands-werkplek {
    flex-direction: column;
  }
  
  .practical-text-feedback-nederlands-werkplek,
  .practical-image-feedback-nederlands-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-feedback-nederlands-werkplek {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.conclusion-cta-feedback-nederlands-werkplek {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(207, 250, 254, 0.2);
}

.cta-text-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-button-feedback-nederlands-werkplek {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #0f766e;
  border: none;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-feedback-nederlands-werkplek:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  background: #f0fdfa;
}

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

.disclaimer-content-feedback-nederlands-werkplek {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-feedback-nederlands-werkplek {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f766e;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
}

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

.related-content-feedback-nederlands-werkplek {
  text-align: center;
}

.related-title-feedback-nederlands-werkplek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f766e;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-feedback-nederlands-werkplek {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.related-card-feedback-nederlands-werkplek:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.related-image-feedback-nederlands-werkplek {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-image-feedback-nederlands-werkplek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-feedback-nederlands-werkplek {
  padding: 1.5rem;
}

.related-card-title-feedback-nederlands-werkplek {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f766e;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-feedback-nederlands-werkplek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-cards-feedback-nederlands-werkplek {
    flex-direction: column;
    align-items: stretch;
  }
  
  .related-card-feedback-nederlands-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-feedback-nederlands-werkplek {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .breadcrumbs-feedback-nederlands-werkplek {
    font-size: 0.75rem;
  }
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-zakelijke-emails-nederlands {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-subtitle-zakelijke-emails-nederlands {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-zakelijke-emails-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-zakelijke-emails-nederlands i {
  color: #0d9488;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

.hero-img-zakelijke-emails-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.breadcrumbs-zakelijke-emails-nederlands {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-zakelijke-emails-nederlands a {
  color: #0d9488;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-zakelijke-emails-nederlands a:hover {
  color: #14b8a6;
  text-decoration: underline;
}

.breadcrumbs-zakelijke-emails-nederlands span {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-zakelijke-emails-nederlands {
    flex-direction: column;
  }
  
  .hero-text-zakelijke-emails-nederlands,
  .hero-image-zakelijke-emails-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.intro-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

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

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

.intro-img-zakelijke-emails-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

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

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

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

.tips-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

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

.tip-card-zakelijke-emails-nederlands {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
}

.tip-card-zakelijke-emails-nederlands:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-4px);
}

.tip-number-zakelijke-emails-nederlands {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tip-heading-zakelijke-emails-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
  font-weight: 600;
}

.tip-text-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

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

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

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

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

.structure-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.structure-steps-zakelijke-emails-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.step-block-zakelijke-emails-nederlands {
  padding-left: clamp(1.5rem, 2vw, 2rem);
  border-left: 3px solid #0d9488;
}

.step-heading-zakelijke-emails-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-description-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.structure-img-zakelijke-emails-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-content-zakelijke-emails-nederlands {
    flex-direction: column;
    align-items: center;
  }
  
  .structure-text-zakelijke-emails-nederlands,
  .structure-image-zakelijke-emails-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.examples-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.example-pair-zakelijke-emails-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.example-card-zakelijke-emails-nederlands {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid;
}

.example-bad-zakelijke-emails-nederlands {
  border-left-color: #dc2626;
}

.example-good-zakelijke-emails-nederlands {
  border-left-color: #0d9488;
}

.example-label-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  color: #ffffff;
}

.example-text-zakelijke-emails-nederlands {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.example-text-zakelijke-emails-nederlands:last-child {
  margin-bottom: 0;
}

.example-text-zakelijke-emails-nederlands strong {
  color: #f1f5f9;
}

.example-image-zakelijke-emails-nederlands {
  width: 100%;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.example-img-zakelijke-emails-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .example-pair-zakelijke-emails-nederlands {
    flex-direction: column;
  }
  
  .example-card-zakelijke-emails-nederlands {
    flex: 1 1 100%;
  }
}

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

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

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

.mistakes-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.mistake-item-zakelijke-emails-nederlands {
  margin-bottom: clamp(1.5rem, 2vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid #e2e8f0;
}

.mistake-item-zakelijke-emails-nederlands:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mistake-heading-zakelijke-emails-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.mistake-description-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.mistakes-img-zakelijke-emails-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .common-mistakes-content-zakelijke-emails-nederlands {
    flex-direction: column;
    align-items: center;
  }
  
  .mistakes-text-zakelijke-emails-nederlands,
  .mistakes-image-zakelijke-emails-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
}

.quick-tips-zakelijke-emails-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.quick-tip-zakelijke-emails-nederlands {
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1vw, 1rem);
  align-items: flex-start;
}

.tip-icon-zakelijke-emails-nederlands {
  color: #0d9488;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.quick-tip-text-zakelijke-emails-nederlands {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.conclusion-final-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .quick-tips-zakelijke-emails-nederlands {
    grid-template-columns: 1fr;
  }
}

.disclaimer-zakelijke-emails-nederlands {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-zakelijke-emails-nederlands {
  background: #f1f5f9;
  border-left: 4px solid #0d9488;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-text-zakelijke-emails-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.disclaimer-text-zakelijke-emails-nederlands strong {
  color: #1e293b;
  font-weight: 600;
}

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

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

.related-title-zakelijke-emails-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
}

.related-cards-zakelijke-emails-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-items: center;
}

.related-card-zakelijke-emails-nederlands {
  flex: 1 1 calc(33.333% - 2rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-zakelijke-emails-nederlands:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-4px);
}

.related-image-zakelijke-emails-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(13, 148, 136, 0.1);
}

.related-img-zakelijke-emails-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-zakelijke-emails-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}

.related-card-description-zakelijke-emails-nederlands {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-zakelijke-emails-nederlands {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  align-self: flex-start;
  margin-top: auto;
}

.related-link-zakelijke-emails-nederlands:hover {
  color: #14b8a6;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-zakelijke-emails-nederlands {
    grid-template-columns: 1fr;
  }
  
  .related-card-zakelijke-emails-nederlands {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-zakelijke-emails-nederlands {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-zakelijke-emails-nederlands {
    font-size: 0.75rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-meta-zakelijke-emails-nederlands {
    gap: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

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

.communication-mastery-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-dutch-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero-dutch-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

.hero-dutch-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

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

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.story-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.story-block-about {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

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

.story-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: 1.7;
}

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

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

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

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
}

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

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

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

.approach-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.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, 2.5rem);
  align-items: flex-start;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  min-width: 80px;
  line-height: 1;
}

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

.step-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

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

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

.why-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.why-point-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.why-point-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  min-width: 30px;
  margin-top: 0.25rem;
}

.why-point-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  font-style: italic;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  display: block;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  min-width: 25px;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-left: 2.5rem;
}

@media (min-width: 768px) {
  .hero-dutch-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .story-foundation-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-framework-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .approach-methodology-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .why-spraakkundig-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-step-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .disclaimer-section-about {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-dutch-about {
    padding: 6rem 0;
  }

  .story-foundation-about {
    padding: 6rem 0;
  }

  .expertise-framework-about {
    padding: 6rem 0;
  }

  .approach-methodology-about {
    padding: 6rem 0;
  }

  .why-spraakkundig-about {
    padding: 6rem 0;
  }

  .disclaimer-section-about {
    padding: 5rem 0;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  border-bottom: 2px solid var(--color-secondary);
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.5px;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

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

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-card-category {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-year {
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.4;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-secondary);
}

.portfolio-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-secondary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (max-width: 767px) {
  .portfolio-card-image {
    height: 180px;
  }

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

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

.faq-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-sm);
  border-bottom: 1px solid var(--color-bg-secondary);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background-color var(--transition-base);
  font-family: var(--font-primary);
}

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

.faq-question-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  text-align: left;
  line-height: 1.5;
}

.faq-toggle-icon {
  font-size: var(--font-2xl);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: var(--color-bg-overlay);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.faq-image {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

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

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-secondary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-semibold);
  transition: background-color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .faq-image {
    display: block;
  }

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

  .faq-item.active .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.docs-center {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.docs-center main {
  width: 100%;
}

.docs-center .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.docs-center .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.docs-center h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.docs-center .updated {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-regular);
}

.docs-center h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  padding-top: var(--space-lg);
}

.docs-center h2:first-of-type {
  margin-top: var(--space-xl);
}

.docs-center p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
  font-weight: var(--font-weight-regular);
}

.docs-center ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  padding: 0;
}

.docs-center li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-regular);
}

.docs-center .contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.docs-center .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.docs-center .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.docs-center .contact-section strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

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

  .docs-center .content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .docs-center .container {
    padding: 0 var(--space-lg);
  }

  .docs-center .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: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 60%;
  height: 60%;
  stroke: var(--color-primary);
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.thank-content .lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin: 0;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.thank-content .description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
  animation: slideUp 0.6s ease-out 0.3s both;
}

.thank-content .next-steps {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
  animation: slideUp 0.6s ease-out 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-primary);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  gap: var(--space-sm);
  margin-top: var(--space-md);
  animation: slideUp 0.6s ease-out 0.5s both;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }
  
  .thank-content {
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-xl);
  }
  
  .thank-icon {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
  }
  
  .thank-content {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-xl);
  }
  
  .thank-icon {
    width: 140px;
    height: 140px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .thank-content {
    padding: var(--space-4xl) var(--space-3xl);
  }
}

@media (max-width: 639px) {
  .thank-page {
    min-height: auto;
  }
  
  .thank-section {
    padding: var(--space-xl) var(--space-sm);
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .thank-content {
    padding: var(--space-lg) var(--space-sm);
    gap: var(--space-md);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon,
  .thank-content h1,
  .thank-content .lead,
  .thank-content .description,
  .thank-content .next-steps,
  .btn {
    animation: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .btn-primary:active {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
  
  .thank-section {
    background-color: var(--color-bg-primary);
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  overflow: hidden;
}

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: var(--space-md) 0;
}

.error-suggestions {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

.suggestions-title {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.suggestions-list {
  list-style: none;
  margin-left: 0;
}

.suggestions-list li {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.6;
}

.suggestions-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
  }

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

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

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

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

  .error-code {
    font-size: clamp(6rem, 20vw, 8rem);
  }

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

  .suggestions-list li {
    display: inline-block;
    margin: 0 var(--space-md);
    padding: 0;
  }

  .suggestions-list li:before {
    display: none;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-say-hello {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-say-hello-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-say-hello-hero-content {
  text-align: center;
}

.contact-say-hello-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-say-hello-lead {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: var(--space-4xl) 0 var(--space-3xl) 0;
  }
}

.contact-say-hello-main {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-say-hello-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-say-hello-form-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-base);
  transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-say-hello-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-say-hello-form-consent {
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.contact-say-hello-consent-text {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-say-hello-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.contact-say-hello-consent-link:hover,
.contact-say-hello-consent-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

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

.contact-say-hello-submit:active {
  transform: translateY(0);
}

.contact-say-hello-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-say-hello-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-say-hello-info-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.contact-say-hello-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-bg-secondary);
}

.contact-say-hello-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-say-hello-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-say-hello-info-content h3 {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-say-hello-info-content p {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.6;
}

.contact-say-hello-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.contact-say-hello-info-content a:hover,
.contact-say-hello-info-content a:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-meta {
  font-family: var(--font-primary);
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  display: inline-block;
}

.contact-say-hello-info-cta {
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-say-hello-info-cta h3 {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-say-hello-info-cta p {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: var(--space-4xl) 0;
  }
}

.contact-say-hello-faq {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-say-hello-faq-content {
  width: 100%;
}

.contact-say-hello-faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  letter-spacing: -0.02em;
}

.contact-say-hello-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-say-hello-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-say-hello-faq-item {
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-say-hello-faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.contact-say-hello-faq-item h3 {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-say-hello-faq-item p {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-faq {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-faq {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-say-hello-grid {
    flex-direction: column;
  }

  .contact-say-hello-form-wrapper,
  .contact-say-hello-info-wrapper {
    flex: 1 1 100%;
  }
}