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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #0d9488;
  --color-primary-hover: #059669;
  --color-secondary: #2563eb;
  --color-accent-warm: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-light:hover {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

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

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

.flex {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

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

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

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

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

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

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

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

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

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-xl {
  width: 3.5rem;
  height: 3.5rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(13, 148, 136, 0.15);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-warm);
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

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

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

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

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

.contact-form-submit {
  background: var(--color-secondary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex {
    flex-direction: column;
  }
  
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 1440px) {
  .show-large {
    display: block;
  }
}
:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #0d9488;
  --color-primary-hover: #059669;
  --color-secondary: #2563eb;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header-taal-portal {
  position: static;
  background: var(--color-bg-primary);
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.header-taal-portal-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.header-taal-portal-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.header-taal-portal-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease-in-out;
  position: relative;
}

.header-taal-portal-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease-in-out;
}

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

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

.header-taal-portal-cta-button {
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}

.header-taal-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.header-taal-portal-cta-button:active {
  transform: translateY(0);
}

.header-taal-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 101;
}

.header-taal-portal-toggle-icon {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all 300ms ease-in-out;
}

.header-taal-portal-mobile-toggle[aria-expanded="true"] .header-taal-portal-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.header-taal-portal-mobile-toggle[aria-expanded="true"] .header-taal-portal-toggle-icon:nth-child(2) {
  opacity: 0;
}

.header-taal-portal-mobile-toggle[aria-expanded="true"] .header-taal-portal-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.header-taal-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
}

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

.header-taal-portal-mobile-header {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}

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

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

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

.header-taal-portal-mobile-link {
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid #e2e8f0;
  transition: color 200ms ease;
}

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

.header-taal-portal-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 300ms ease;
  display: block;
}

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

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

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

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

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

  .header-taal-portal-logo-text {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .header-taal-portal-container {
    padding: 1.5rem clamp(2rem, 5vw, 3rem);
  }

  .header-taal-portal-nav-link {
    font-size: 1rem;
  }

  .header-taal-portal-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

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

    .dutch-language-hub {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0f0a1e;
  overflow: hidden;
  width: 100%;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 350px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(167, 243, 208, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a5b4fc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #a5b4fc;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.featured-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
  width: 100%;
}

.featured-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-1 {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.featured-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a5b4fc;
  line-height: 1.6;
  flex: 1;
}

.featured-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 300ms ease;
  width: fit-content;
}

.featured-card-link-index:hover {
  color: #c4b5fd;
  transform: translateX(4px);
}

.featured-cta-index {
  position: relative;
  z-index: 10;
  text-align: center;
}

.benefits-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f0a1e;
  overflow: hidden;
  width: 100%;
}

.benefits-glow-1 {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(167, 243, 208, 0.05);
  border-radius: 50% 50% 30% 70% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.benefits-text-block-index {
  flex: 1 1 400px;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefits-intro-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-index {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-number-index {
  font-size: 2rem;
  font-weight: 800;
  color: #8b5cf6;
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

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

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

.benefit-text-index {
  font-size: 0.9375rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.benefits-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.benefits-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.process-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
  width: 100%;
}

.process-glow-1 {
  position: absolute;
  top: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 30%;
  z-index: 2;
  pointer-events: none;
}

.process-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.process-step-index {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(4px);
}

.process-step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

.process-step-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.process-step-text-index {
  font-size: 0.9375rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.quote-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f0a1e;
  overflow: hidden;
  width: 100%;
}

.quote-glow-1 {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-1 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(167, 243, 208, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.quote-content-index {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-index {
  padding: 2.5rem;
  border-left: 4px solid #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.quote-text-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-index {
  font-size: 0.9375rem;
  color: #a5b4fc;
  font-style: normal;
}

.quote-meta-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quote-badge-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #c4b5fd;
}

.quote-badge-index i {
  color: #8b5cf6;
}

.integration-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
  width: 100%;
}

.integration-glow-1 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.integration-shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(167, 243, 208, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.integration-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.integration-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.integration-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
}

.integration-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.integration-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.integration-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.integration-text-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.integration-phase-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.integration-phase-index:last-child {
  border-bottom: none;
}

.integration-phase-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.integration-phase-text-index {
  font-size: 0.9375rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.resources-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f0a1e;
  overflow: hidden;
  width: 100%;
}

.resources-glow-1 {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.resources-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.resources-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.resources-accent-1 {
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.resources-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.resources-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.resources-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.resources-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
}

.resources-features-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.resource-feature-index {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-feature-index:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.resource-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  color: #8b5cf6;
  font-size: 1.5rem;
}

.resource-feature-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.resource-feature-text-index {
  font-size: 0.9375rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.resources-cta-index {
  position: relative;
  z-index: 10;
  text-align: center;
}

.resources-cta-text-index {
  font-size: 1rem;
  color: #a5b4fc;
  margin-bottom: 1rem;
}

.contact-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1a1035;
  overflow: hidden;
  width: 100%;
}

.contact-glow-1 {
  position: absolute;
  top: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-1 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(167, 243, 208, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.contact-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a5b4fc;
}

.contact-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 10;
}

.contact-form-wrapper-index {
  flex: 1 1 350px;
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-index {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.form-input-index,
.form-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 300ms ease;
}

.form-input-index::placeholder,
.form-textarea-index::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input-index:focus,
.form-textarea-index:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

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

.contact-form-submit-index {
  padding: 1rem 2rem;
  background: #8b5cf6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-top: 0.5rem;
}

.contact-form-submit-index:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-form-submit-index:active {
  transform: translateY(0);
}

.contact-info-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.contact-faq-item-index:last-of-type {
  border-bottom: none;
}

.contact-faq-question-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-faq-answer-index {
  font-size: 0.875rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.contact-privacy-index {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.contact-privacy-text-index {
  font-size: 0.8125rem;
  color: #a5b4fc;
}

.contact-privacy-link-index {
  color: #8b5cf6;
  text-decoration: none;
  transition: all 300ms ease;
}

.contact-privacy-link-index:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: #8b5cf6;
  color: #ffffff;
}

.btn-primary:hover {
  background: #a78bfa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-outline {
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
}

.btn-outline:hover {
  background: #8b5cf6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #0f0a1e;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

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

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

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 300ms ease;
  border: none;
}

.cookie-btn-accept {
  background: #8b5cf6;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #a78bfa;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: #a5b4fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-btn-decline:hover {
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.1);
}

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

  .benefits-content-index {
    flex-direction: column;
  }

  .benefits-image-block-index {
    min-height: 300px;
  }

  .integration-content-index {
    flex-direction: column;
  }

  .integration-image-block-index {
    min-height: 300px;
  }

  .contact-content-index {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

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

  .process-step-index {
    flex-direction: column;
  }

  .benefit-item-index {
    gap: 1rem;
  }

  .benefit-number-index {
    font-size: 1.75rem;
  }
}

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

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.footer-content {
  display: block;
  width: 100%;
}

.footer-about-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(13, 148, 136, 0.08);
}

.footer-about-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.footer-nav-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-nav-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: var(--font-heading);
}

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

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

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

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-contact-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-contact-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: var(--font-heading);
}

.footer-contact-info {
  display: block;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.footer-legal-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-legal-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: var(--font-heading);
}

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

.footer-legal-link {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

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

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-copyright-section {
  padding-top: clamp(2rem, 5vw, 2.5rem);
  border-top: 1px solid rgba(13, 148, 136, 0.08);
  text-align: center;
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

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

  .footer-about-section {
    flex: 1 1 280px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-nav-section {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .footer-contact-section {
    flex: 1 1 220px;
    margin-bottom: 0;
  }

  .footer-legal-section {
    flex: 1 1 240px;
    margin-bottom: 0;
  }

  .footer-copyright-section {
    flex: 1 1 100%;
    padding-top: clamp(2rem, 4vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(13, 148, 136, 0.08);
  }
}

@media (min-width: 1024px) {
  .footer-nav-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer a {
  position: relative;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer a:hover::after {
  width: 100%;
}

@media print {
  .footer {
    background: transparent;
    border: none;
  }

  .footer a {
    text-decoration: underline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer a,
  .footer a::after {
    transition: none;
  }
}
    

.main.category-page-dutch-international-students {
  background: #ffffff;
}

.hero-section-dutch-students {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #ffffff;
}

.hero-deco-gradient-dutch {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-dutch {
  position: absolute;
  top: 15%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-dutch {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-dutch {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 150px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line-dutch {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content-dutch-students {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-tag-dutch {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 24px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-dutch {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.1;
}

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

.hero-stats-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-item-dutch {
  flex: 0 1 auto;
}

.stat-number-dutch {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-dutch {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta-dutch .btn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
}

.posts-section-dutch-students {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.posts-deco-mesh-dutch {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-glow-dutch {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.posts-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-dutch {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.posts-grid-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-dutch-students {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-students:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.card-dutch-students img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-dutch {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.meta-badge-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-dutch i {
  font-size: 0.875rem;
}

.card-link-dutch {
  display: inline-block;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-dutch:hover {
  color: #059669;
  transform: translateX(4px);
}

.learning-path-section-dutch-students {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.learning-deco-accent-dutch {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-deco-shape-dutch {
  position: absolute;
  bottom: 10%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.learning-header-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.learning-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.learning-steps-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-step-dutch {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-dutch:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.learning-step-number-dutch {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.learning-step-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

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

.insights-section-dutch-students {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0f172a;
}

.insights-deco-glow-dutch {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insights-deco-mesh-dutch {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.insights-content-dutch {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-dutch {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: rgba(13, 148, 136, 0.08);
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

.quote-text-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-dutch {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  opacity: 0.9;
}

.insights-description-dutch {
  margin-top: 2rem;
}

.insights-subtitle-dutch {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insights-text-dutch {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.resources-section-dutch-students {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.resources-deco-accent-dutch {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.resources-header-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.resources-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.resources-subtitle-dutch {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.resources-grid-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resource-item-dutch {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-item-dutch:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.resource-icon-dutch {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 12px;
  color: #0d9488;
  font-size: 1.75rem;
}

.resource-title-dutch {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.resource-text-dutch {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

  .hero-cta-dutch .btn {
    width: 100%;
  }

  .hero-stats-dutch {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .card-dutch-students {
    flex: 1 1 100%;
    max-width: none;
  }

  .learning-step-dutch {
    gap: 1rem;
    padding: 1.25rem;
  }

  .learning-step-number-dutch {
    min-width: 50px;
  }

  .resource-item-dutch {
    flex: 1 1 100%;
    max-width: none;
  }

  .posts-grid-dutch {
    gap: 1.25rem;
  }
}

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

.main-nederlandse-cultuur-integratie {
  width: 100%;
  background: #ffffff;
}

section, [class*="-section-nederlandse-cultuur-integratie"] {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-nederlandse-cultuur-integratie a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-cultuur-integratie a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-cultuur-integratie span {
  color: #cbd5e1;
}

.hero-section-nederlandse-cultuur-integratie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-description-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
}

.hero-meta-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item-nederlandse-cultuur-integratie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.meta-item-nederlandse-cultuur-integratie i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-nederlandse-cultuur-integratie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-nederlandse-cultuur-integratie {
    flex-direction: column;
  }
  
  .hero-text-block-nederlandse-cultuur-integratie,
  .hero-image-block-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 1rem;
  }
}

.intro-section-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-description-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-secondary-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.intro-image-element-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column;
  }
  
  .intro-text-nederlandse-cultuur-integratie,
  .intro-image-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cultural-section-nederlandse-cultuur-integratie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.cultural-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-image-element-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cultural-text-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cultural-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.cultural-content-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.cultural-highlight-nederlandse-cultuur-integratie {
  background: #dbeafe;
  border-left: 4px solid #0d9488;
  padding: 1.5rem;
  border-radius: 8px;
}

.cultural-highlight-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.8;
  margin: 0;
}

.cultural-additional-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .cultural-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column-reverse;
  }
  
  .cultural-image-nederlandse-cultuur-integratie,
  .cultural-text-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.values-section-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.values-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

.values-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.values-cards-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.values-card-nederlandse-cultuur-integratie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-card-nederlandse-cultuur-integratie:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-card-icon-nederlandse-cultuur-integratie {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 12px;
  color: #0d9488;
  font-size: 1.75rem;
}

.values-card-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.values-card-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values-card-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.social-section-nederlandse-cultuur-integratie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.social-text-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.social-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.social-steps-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-step-nederlandse-cultuur-integratie {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.social-step-number-nederlandse-cultuur-integratie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.social-step-content-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-step-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.social-step-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.social-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.social-image-element-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .social-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column;
  }
  
  .social-text-nederlandse-cultuur-integratie,
  .social-image-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .social-step-nederlandse-cultuur-integratie {
    flex-direction: row;
  }
}

.integration-section-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.integration-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

.integration-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.integration-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.integration-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-image-element-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.integration-content-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.integration-intro-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.integration-list-nederlandse-cultuur-integratie {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.integration-list-item-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.integration-list-item-nederlandse-cultuur-integratie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

@media (max-width: 768px) {
  .integration-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column;
  }
  
  .integration-image-nederlandse-cultuur-integratie,
  .integration-content-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-nederlandse-cultuur-integratie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.challenges-text-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.challenges-highlight-box-nederlandse-cultuur-integratie {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.challenges-highlight-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.challenges-highlight-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

.challenges-body-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.challenges-secondary-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.challenges-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-element-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .challenges-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column;
  }
  
  .challenges-text-nederlandse-cultuur-integratie,
  .challenges-image-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.traditions-section-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.traditions-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

.traditions-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.traditions-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.traditions-cards-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.traditions-card-nederlandse-cultuur-integratie {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.traditions-card-nederlandse-cultuur-integratie:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.traditions-card-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .traditions-card-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-nederlandse-cultuur-integratie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-nederlandse-cultuur-integratie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.conclusion-quote-nederlandse-cultuur-integratie {
  background: #ffffff;
  border-left: 4px solid #0d9488;
  padding: 2rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.conclusion-quote-text-nederlandse-cultuur-integratie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

.conclusion-closing-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.conclusion-cta-nederlandse-cultuur-integratie {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary-nederlandse-cultuur-integratie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #0d9488;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-nederlandse-cultuur-integratie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.disclaimer-section-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-content-nederlandse-cultuur-integratie {
  max-width: 900px;
  margin: 0 auto;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
}

.disclaimer-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e40af;
  line-height: 1.8;
  margin: 0;
}

.related-section-nederlandse-cultuur-integratie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-cultuur-integratie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-nederlandse-cultuur-integratie:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.related-card-content-nederlandse-cultuur-integratie {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

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

.related-card-text-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

@media (min-width: 768px) {
  .hero-meta-nederlandse-cultuur-integratie {
    flex-direction: row;
  }
}

.main-basis-nederlands-grammatica {
  width: 100%;
  overflow: hidden;
}

.main-basis-nederlands-grammatica section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid #f1f5f9;
}

.breadcrumbs-basis-nederlands-grammatica {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-basis-nederlands-grammatica a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-basis-nederlands-grammatica a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-basis-nederlands-grammatica span {
  color: #cbd5e1;
}

.breadcrumbs-basis-nederlands-grammatica > span:last-child {
  color: #64748b;
  font-weight: 500;
}

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

.hero-text-wrapper-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-title-basis-nederlands-grammatica {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.hero-subtitle-basis-nederlands-grammatica {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.hero-meta-basis-nederlands-grammatica {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-basis-nederlands-grammatica {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-basis-nederlands-grammatica i {
  font-size: 0.875rem;
}

.hero-image-basis-nederlands-grammatica {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-wrapper-basis-nederlands-grammatica,
  .hero-image-wrapper-basis-nederlands-grammatica {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-basis-nederlands-grammatica {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-block-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-block-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-text-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-basis-nederlands-grammatica {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

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

  .intro-text-block-basis-nederlands-grammatica,
  .intro-image-block-basis-nederlands-grammatica {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-basis-nederlands-grammatica {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-basis-nederlands-grammatica {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.fundamentals-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-steps-basis-nederlands-grammatica {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fundamentals-step-basis-nederlands-grammatica {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.fundamentals-step-number-basis-nederlands-grammatica {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-basis-nederlands-grammatica {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamentals-step-title-basis-nederlands-grammatica {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.fundamentals-step-text-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fundamentals-step-basis-nederlands-grammatica {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .fundamentals-step-number-basis-nederlands-grammatica {
    min-width: auto;
  }
}

.practice-section-basis-nederlands-grammatica {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.practice-text-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-image-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.practice-description-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.btn-primary-basis-nederlands-grammatica {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-primary-basis-nederlands-grammatica:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.2);
}

.practice-image-element-basis-nederlands-grammatica {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .practice-wrapper-basis-nederlands-grammatica {
    flex-direction: column;
  }

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

.features-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-features-basis-nederlands-grammatica {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.features-card-basis-nederlands-grammatica {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.features-card-basis-nederlands-grammatica:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #0d9488;
}

.features-card-icon-basis-nederlands-grammatica {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

.features-card-title-basis-nederlands-grammatica {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

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

.content-deep-basis-nederlands-grammatica {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.content-deep-text-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-deep-image-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-deep-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-deep-description-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.content-deep-image-element-basis-nederlands-grammatica {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-deep-wrapper-basis-nederlands-grammatica {
    flex-direction: column;
  }

  .content-deep-text-basis-nederlands-grammatica,
  .content-deep-image-basis-nederlands-grammatica {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.common-mistakes-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

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

.mistakes-text-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mistakes-image-basis-nederlands-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-intro-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.mistakes-list-basis-nederlands-grammatica {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mistakes-item-basis-nederlands-grammatica {
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #0d9488;
  border-radius: 4px;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.mistakes-item-basis-nederlands-grammatica strong {
  color: #0f172a;
  font-weight: 600;
}

.mistakes-image-element-basis-nederlands-grammatica {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

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

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

.quote-section-basis-nederlands-grammatica {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-quote-basis-nederlands-grammatica {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #ffffff;
  margin: 0;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-basis-nederlands-grammatica {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-basis-nederlands-grammatica {
  font-size: 0.9375rem;
  color: #e0e0e0;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .featured-quote-basis-nederlands-grammatica {
    padding: 1.5rem;
  }
}

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

.section-header-resources-basis-nederlands-grammatica {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.resources-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.resources-subtitle-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.resources-cards-basis-nederlands-grammatica {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resources-card-basis-nederlands-grammatica {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.resources-card-basis-nederlands-grammatica:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.resources-card-icon-basis-nederlands-grammatica {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

.resources-card-title-basis-nederlands-grammatica {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.resources-card-text-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

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

.conclusion-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #f1f5f9;
}

.conclusion-content-basis-nederlands-grammatica {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-text-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.cta-button-basis-nederlands-grammatica {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.25rem);
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.cta-button-basis-nederlands-grammatica:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.2);
}

.disclaimer-section-basis-nederlands-grammatica {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.disclaimer-title-basis-nederlands-grammatica {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-basis-nederlands-grammatica {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-section-basis-nederlands-grammatica {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #f1f5f9;
}

.section-header-related-basis-nederlands-grammatica {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-basis-nederlands-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-basis-nederlands-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
}

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

.related-card-basis-nederlands-grammatica {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-basis-nederlands-grammatica:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #0d9488;
}

.related-card-image-basis-nederlands-grammatica {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

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

.related-card-content-basis-nederlands-grammatica {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-basis-nederlands-grammatica {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-basis-nederlands-grammatica {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-basis-nederlands-grammatica {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.related-link-basis-nederlands-grammatica:hover {
  color: #059669;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .hero-section-basis-nederlands-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-basis-nederlands-grammatica,
  .fundamentals-section-basis-nederlands-grammatica,
  .practice-section-basis-nederlands-grammatica,
  .features-section-basis-nederlands-grammatica,
  .content-deep-basis-nederlands-grammatica,
  .common-mistakes-section-basis-nederlands-grammatica,
  .conclusion-section-basis-nederlands-grammatica,
  .related-section-basis-nederlands-grammatica {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-basis-nederlands-grammatica {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .intro-section-basis-nederlands-grammatica,
  .fundamentals-section-basis-nederlands-grammatica,
  .practice-section-basis-nederlands-grammatica,
  .features-section-basis-nederlands-grammatica,
  .content-deep-basis-nederlands-grammatica,
  .common-mistakes-section-basis-nederlands-grammatica,
  .conclusion-section-basis-nederlands-grammatica,
  .related-section-basis-nederlands-grammatica {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

.main-dagelijkse-nederlands-conversatie {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumbs-dagelijkse-nederlands-conversatie a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-dagelijkse-nederlands-conversatie a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-dagelijkse-nederlands-conversatie span {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.hero-section-dagelijkse-nederlands-conversatie {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 550px;
}

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

.hero-subtitle-dagelijkse-nederlands-conversatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.article-meta-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.meta-badge-dagelijkse-nederlands-conversatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-dagelijkse-nederlands-conversatie i {
  font-size: 1rem;
}

.hero-image-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 500px;
}

.hero-image-dagelijkse-nederlands-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

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

.intro-content-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 550px;
}

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

.intro-description-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 500px;
}

.intro-image-dagelijkse-nederlands-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

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

.foundation-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-dagelijkse-nederlands-conversatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.foundation-subtitle-dagelijkse-nederlands-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-content-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.foundation-text-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 550px;
}

.foundation-subheading-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.foundation-subheading-dagelijkse-nederlands-conversatie:first-child {
  margin-top: 0;
}

.foundation-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.foundation-image-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 500px;
}

.foundation-image-dagelijkse-nederlands-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

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

.situations-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.situations-grid-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.situation-card-dagelijkse-nederlands-conversatie {
  flex: 1 1 250px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.situation-card-dagelijkse-nederlands-conversatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.situation-icon-dagelijkse-nederlands-conversatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 10px;
  font-size: 1.5rem;
}

.situation-card-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.situation-card-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.patterns-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.patterns-content-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.patterns-text-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 550px;
}

.patterns-subheading-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.patterns-subheading-dagelijkse-nederlands-conversatie:first-child {
  margin-top: 0;
}

.patterns-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.patterns-image-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 500px;
}

.patterns-image-dagelijkse-nederlands-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

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

.cultural-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.cultural-content-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cultural-image-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 500px;
  order: -1;
}

.cultural-image-dagelijkse-nederlands-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

.cultural-text-block-dagelijkse-nederlands-conversatie {
  flex: 1 1 300px;
  max-width: 550px;
}

.cultural-subheading-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.cultural-subheading-dagelijkse-nederlands-conversatie:first-child {
  margin-top: 0;
}

.cultural-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.practice-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.practice-subtitle-dagelijkse-nederlands-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.practice-steps-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.practice-step-dagelijkse-nederlands-conversatie {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.practice-step-number-dagelijkse-nederlands-conversatie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.practice-step-content-dagelijkse-nederlands-conversatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-step-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.practice-step-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.conclusion-content-dagelijkse-nederlands-conversatie {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-quote-dagelijkse-nederlands-conversatie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.conclusion-quote-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.conclusion-quote-cite-dagelijkse-nederlands-conversatie {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

.disclaimer-content-dagelijkse-nederlands-conversatie {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.disclaimer-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.related-header-dagelijkse-nederlands-conversatie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-dagelijkse-nederlands-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
}

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

.related-card-dagelijkse-nederlands-conversatie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-dagelijkse-nederlands-conversatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.related-card-image-dagelijkse-nederlands-conversatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-dagelijkse-nederlands-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-dagelijkse-nederlands-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-dagelijkse-nederlands-conversatie {
  display: inline-block;
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-dagelijkse-nederlands-conversatie:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-dagelijkse-nederlands-conversatie,
  .intro-content-dagelijkse-nederlands-conversatie,
  .foundation-content-dagelijkse-nederlands-conversatie,
  .patterns-content-dagelijkse-nederlands-conversatie,
  .cultural-content-dagelijkse-nederlands-conversatie {
    flex-direction: column;
  }

  .hero-text-block-dagelijkse-nederlands-conversatie,
  .hero-image-block-dagelijkse-nederlands-conversatie,
  .intro-text-block-dagelijkse-nederlands-conversatie,
  .intro-image-block-dagelijkse-nederlands-conversatie,
  .foundation-text-block-dagelijkse-nederlands-conversatie,
  .foundation-image-block-dagelijkse-nederlands-conversatie,
  .patterns-text-block-dagelijkse-nederlands-conversatie,
  .patterns-image-block-dagelijkse-nederlands-conversatie,
  .cultural-text-block-dagelijkse-nederlands-conversatie,
  .cultural-image-block-dagelijkse-nederlands-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cultural-image-block-dagelijkse-nederlands-conversatie {
    order: 0;
  }

  .situation-card-dagelijkse-nederlands-conversatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .practice-step-dagelijkse-nederlands-conversatie {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-step-number-dagelijkse-nederlands-conversatie {
    min-width: auto;
  }

  .related-card-dagelijkse-nederlands-conversatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .situation-card-dagelijkse-nederlands-conversatie {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }

  .situation-card-dagelijkse-nederlands-conversatie:nth-child(odd:last-child) {
    flex: 1 1 100%;
  }

  .related-card-dagelijkse-nederlands-conversatie {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .related-card-dagelijkse-nederlands-conversatie {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.main-nederlands-werk-comunicatie {
  width: 100%;
}

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

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

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

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

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

.hero-image-nederlands-werk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.breadcrumbs-nederlands-werk-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlands-werk-comunicatie {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-werk-comunicatie:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-werk-comunicatie {
  color: #cbd5e1;
}

.breadcrumb-current-nederlands-werk-comunicatie {
  color: #64748b;
}

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

.hero-subtitle-nederlands-werk-comunicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-netherlands-werk-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlands-werk-comunicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stats-nederlands-werk-comunicatie {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item-nederlands-werk-comunicatie {
  flex: 0 1 auto;
}

.stat-number-nederlands-werk-comunicatie {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-nederlands-werk-comunicatie {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

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

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

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

.intro-image-nederlands-werk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

.intro-description-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-text-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

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

.content-one-text-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-nederlands-werk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-one-title-nederlands-werk-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-one-description-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-one-highlights-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-nederlands-werk-comunicatie {
  padding: 1rem;
  background: #f1f5f9;
  border-left: 4px solid #0d9488;
  border-radius: 8px;
}

.highlight-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.highlight-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

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

.content-two-image-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-nederlands-werk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.content-two-text-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-nederlands-werk-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-two-description-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.steps-container-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number-nederlands-werk-comunicatie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.step-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.section-header-nederlands-werk-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlands-werk-comunicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.content-three-title-nederlands-werk-comunicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-nederlands-werk-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-nederlands-werk-comunicatie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-nederlands-werk-comunicatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #0d9488;
}

.feature-icon-nederlands-werk-comunicatie {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 1.5rem;
}

.feature-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.feature-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.featured-quote-nederlands-werk-comunicatie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: rgba(13, 148, 136, 0.1);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-nederlands-werk-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.quote-author-nederlands-werk-comunicatie {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

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

.content-four-text-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-image-block-nederlands-werk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-image-nederlands-werk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-four-title-nederlands-werk-comunicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-four-description-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.culture-points-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.culture-point-nederlands-werk-comunicatie {
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
}

.culture-point-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.culture-point-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.tools-title-nederlands-werk-comunicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.tools-grid-nederlands-werk-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-nederlands-werk-comunicatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tool-card-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.tool-list-nederlands-werk-comunicatie {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-item-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.tool-item-nederlands-werk-comunicatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

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

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

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

.conclusion-text-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-emphasis-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-section-nederlands-werk-comunicatie {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: 2px solid #0d9488;
}

.cta-title-nederlands-werk-comunicatie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-nederlands-werk-comunicatie {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-nederlands-werk-comunicatie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

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

.related-header-nederlands-werk-comunicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlands-werk-comunicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-nederlands-werk-comunicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-post-card-nederlands-werk-comunicatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-post-card-nederlands-werk-comunicatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.related-post-image-nederlands-werk-comunicatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-nederlands-werk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-post-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.related-post-description-nederlands-werk-comunicatie {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.related-post-link-nederlands-werk-comunicatie {
  display: inline-block;
  margin-top: auto;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.related-post-link-nederlands-werk-comunicatie:hover {
  color: #059669;
  text-decoration: underline;
}

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

.disclaimer-content-nederlands-werk-comunicatie {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f1f5f9;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.disclaimer-title-nederlands-werk-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-werk-comunicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.8;
}

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

  .hero-text-block-nederlands-werk-comunicatie,
  .hero-image-block-nederlands-werk-comunicatie,
  .intro-text-block-nederlands-werk-comunicatie,
  .intro-image-block-nederlands-werk-comunicatie,
  .content-one-text-block-nederlands-werk-comunicatie,
  .content-one-image-block-nederlands-werk-comunicatie,
  .content-two-image-block-nederlands-werk-comunicatie,
  .content-two-text-block-nederlands-werk-comunicatie,
  .content-four-text-block-nederlands-werk-comunicatie,
  .content-four-image-block-nederlands-werk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-nederlands-werk-comunicatie {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-nederlands-werk-comunicatie {
    font-size: 2rem;
  }

  .feature-card-nederlands-werk-comunicatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .tool-card-nederlands-werk-comunicatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-post-card-nederlands-werk-comunicatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-geavanceerd-nederlands-nuances {
  width: 100%;
  background: #ffffff;
}

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

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

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

.hero-text-block-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-geavanceerd-nederlands-nuances {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-geavanceerd-nederlands-nuances {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-geavanceerd-nederlands-nuances {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-geavanceerd-nederlands-nuances {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-geavanceerd-nederlands-nuances i {
  font-size: 0.875rem;
}

.hero-image-block-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: block;
}

.breadcrumbs-geavanceerd-nederlands-nuances {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

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

.breadcrumbs-geavanceerd-nederlands-nuances a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-geavanceerd-nederlands-nuances span {
  color: #cbd5e1;
}

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

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

.intro-text-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.section-header-geavanceerd-nederlands-nuances {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-geavanceerd-nederlands-nuances {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.idioms-section-geavanceerd-nederlands-nuances {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.idioms-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.idioms-subtitle-geavanceerd-nederlands-nuances {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.idioms-text-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.idioms-subheading-geavanceerd-nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.idioms-text-body-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.idioms-list-geavanceerd-nederlands-nuances {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.idioms-list-item-geavanceerd-nederlands-nuances {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
}

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

.idioms-image-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.idioms-image-img-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.nuances-section-geavanceerd-nederlands-nuances {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.nuances-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

.nuances-image-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.nuances-image-img-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.nuances-text-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.nuances-subheading-geavanceerd-nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.nuances-text-body-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-geavanceerd-nederlands-nuances {
  background: #eff6ff;
  border-left: 4px solid #0d9488;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-geavanceerd-nederlands-nuances {
  font-size: 0.9375rem;
  color: #0f172a;
  line-height: 1.8;
  margin: 0;
}

.register-section-geavanceerd-nederlands-nuances {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.register-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

.register-text-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.register-subheading-geavanceerd-Nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.register-text-body-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.register-list-geavanceerd-nederlands-nuances {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.register-list-item-geavanceerd-nederlands-nuances {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 0.875rem;
  padding-left: 1.75rem;
  position: relative;
}

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

.register-image-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.register-image-img-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.cultural-section-geavanceerd-nederlands-nuances {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cultural-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

.cultural-image-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-image-img-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.cultural-text-geavanceerd-nederlands-nuances {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-subheading-geavanceerd-nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.cultural-text-body-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-block-geavanceerd-nederlands-nuances {
  padding: 2rem;
  border-left: 4px solid #0d9488;
  background: #f0fdf4;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-geavanceerd-nederlands-nuances {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-cite-geavanceerd-nederlands-nuances {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.conversation-section-geavanceerd-nederlands-nuances {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conversation-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.conversation-wrapper-geavanceerd-nederlands-nuances {
  margin-top: 2rem;
}

.conversation-steps-geavanceerd-nederlands-nuances {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conversation-step-geavanceerd-nederlands-nuances {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.conversation-step-number-geavanceerd-nederlands-nuances {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.conversation-step-content-geavanceerd-nederlands-nuances {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.conversation-step-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.conversation-step-text-geavanceerd-nederlands-nuances {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.8;
}

.conclusion-section-geavanceerd-nederlands-nuances {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-geavanceerd-nederlands-nuances {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.conclusion-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-geavanceerd-nederlands-nuances {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-text-geavanceerd-nederlands-nuances {
  font-size: 0.9375rem;
  color: #f0fdfa;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-geavanceerd-nederlands-nuances .btn {
  background: #ffffff;
  color: #0d9488;
}

.cta-box-geavanceerd-nederlands-nuances .btn:hover {
  background: #f0fdfa;
  transform: translateY(-2px);
}

.related-section-geavanceerd-nederlands-nuances {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-geavanceerd-nederlands-nuances {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

.related-card-geavanceerd-nederlands-nuances {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-geavanceerd-nederlands-nuances:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.related-card-image-geavanceerd-nederlands-nuances {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-geavanceerd-nederlands-nuances {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-geavanceerd-nederlands-nuances {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

.related-card-link-geavanceerd-nederlands-nuances:hover {
  color: #059669;
  text-decoration: underline;
}

.disclaimer-section-geavanceerd-nederlands-nuances {
  background: #f0fdf4;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid #dcfce7;
  overflow: hidden;
}

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

.disclaimer-title-geavanceerd-nederlands-nuances {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #15803d;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-geavanceerd-nederlands-nuances {
  font-size: 0.875rem;
  color: #3f6319;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-geavanceerd-nederlands-nuances,
  .intro-content-geavanceerd-nederlands-nuances,
  .idioms-content-geavanceerd-nederlands-nuances,
  .nuances-content-geavanceerd-nederlands-nuances,
  .register-content-geavanceerd-nederlands-nuances,
  .cultural-content-geavanceerd-nederlands-nuances {
    flex-direction: column;
  }

  .hero-text-block-geavanceerd-nederlands-nuances,
  .hero-image-block-geavanceerd-nederlands-nuances,
  .intro-text-geavanceerd-nederlands-nuances,
  .intro-image-geavanceerd-nederlands-nuances,
  .idioms-text-geavanceerd-nederlands-nuances,
  .idioms-image-geavanceerd-nederlands-nuances,
  .nuances-image-geavanceerd-nederlands-nuances,
  .nuances-text-geavanceerd-nederlands-nuances,
  .register-text-geavanceerd-nederlands-nuances,
  .register-image-geavanceerd-nederlands-nuances,
  .cultural-image-geavanceerd-nederlands-nuances,
  .cultural-text-geavanceerd-nederlands-nuances {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conversation-step-geavanceerd-nederlands-nuances {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .conversation-step-number-geavanceerd-nederlands-nuances {
    min-width: auto;
  }

  .related-card-geavanceerd-nederlands-nuances {
    flex: 1 1 100%;
    max-width: none;
  }

  .section-header-geavanceerd-nederlands-nuances {
    margin-bottom: 2rem;
  }

  .breadcrumbs-geavanceerd-nederlands-nuances {
    font-size: 0.8125rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-geavanceerd-nederlands-nuances {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .intro-section-geavanceerd-nederlands-nuances,
  .idioms-section-geavanceerd-nederlands-nuances,
  .nuances-section-geavanceerd-nederlands-nuances,
  .register-section-geavanceerd-nederlands-nuances,
  .cultural-section-geavanceerd-nederlands-nuances,
  .conversation-section-geavanceerd-nederlands-nuances,
  .conclusion-section-geavanceerd-nederlands-nuances {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .related-section-geavanceerd-nederlands-nuances,
  .disclaimer-section-geavanceerd-nederlands-nuances {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #0d9488;
  --color-primary-hover: #059669;
  --color-secondary: #2563eb;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

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

.language-journey-hero-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #111827;
  position: relative;
  overflow: hidden;
}

.language-journey-hero-about .container {
  position: relative;
  z-index: 2;
}

.hero-intro-content-about {
  max-width: 700px;
}

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

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2.5rem;
}

.stat-item-about {
  flex: 1 1 auto;
  min-width: 120px;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  font-weight: 500;
}

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

@media (min-width: 768px) {
  .language-journey-hero-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .language-journey-hero-about .container {
    display: flex;
    align-items: center;
    gap: 3rem;
  }

  .hero-intro-content-about {
    flex: 1;
  }

  .hero-image-about {
    flex: 1;
    margin-top: 0;
  }
}

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

.mission-approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mission-block-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.mission-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.mission-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.methodology-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1.5rem;
}

.methodology-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.card-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.card-description-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methodology-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.learning-framework-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.framework-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.framework-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.framework-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.framework-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.framework-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #38bdf8;
  flex-shrink: 0;
  line-height: 1;
  min-width: 70px;
}

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

.step-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.step-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.promise-wrapper-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.promise-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.promise-intro-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.value-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-heading-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.value-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.featured-quote-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.quote-block-about {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-text-about {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  font-style: normal;
}

.disclaimer-notice-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.disclaimer-box-about {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .learning-framework-section-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .mission-approach-section-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .integration-promise-section-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .featured-quote-section-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .methodology-grid-about {
    gap: 2.5rem;
  }

  .value-card-about {
    flex: 1 1 auto;
    max-width: none;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #0d9488;
  --color-secondary: #2563eb;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.policy-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.policy-hero-section {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.policy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.policy-hero-section h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-hero-section .policy-last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: italic;
}

@media (min-width: 768px) {
  .policy-hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .policy-hero-section {
    padding: 6rem 0;
  }
}

.policy-content-section {
  width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.policy-section-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.policy-section-block h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-section-block p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-section-block ul {
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.policy-section-block li {
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  color: var(--color-text-secondary);
}

.policy-contact-section {
  width: 100%;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.policy-contact-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.policy-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.policy-contact-item strong {
  color: #0f172a;
  font-weight: 600;
}

@media (min-width: 768px) {
  .policy-contact-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .policy-contact-section {
    padding: 5rem 0;
  }
}

.policy-footer-note {
  width: 100%;
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.policy-footer-note-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-footer-note p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .policy-hub .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .thank-section {
    background: var(--color-bg-primary);
    width: 100%;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

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

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 600px;
    margin: 0 auto;
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    animation: icon-bounce 0.8s ease-out;
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  .thank-section h1 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-lead {
    color: var(--color-primary);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  .thank-description {
    color: var(--color-text-secondary);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-next-steps {
    width: 100%;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .thank-next-steps h2 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.3;
  }

  .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.25rem);
  }

  .steps-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
  }

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 1rem);
    flex-shrink: 0;
  }

  .step-text {
    color: var(--color-text-primary);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
    line-height: 1.5;
    padding-top: 0.25rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    gap: 0.5rem;
    white-space: nowrap;
  }

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

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

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

  @keyframes icon-bounce {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .thank-content {
      gap: clamp(2rem, 5vw, 3rem);
    }

    .thank-next-steps {
      padding: clamp(2rem, 4vw, 2.5rem);
    }

    .steps-list li {
      gap: clamp(1.25rem, 3vw, 1.75rem);
    }

    .step-number {
      min-width: 2.75rem;
      width: 2.75rem;
      height: 2.75rem;
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-section {
      padding: 6rem 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .thank-content {
      gap: 2.5rem;
    }

    .thank-next-steps {
      padding: 2.5rem;
    }

    .step-number {
      min-width: 3rem;
      width: 3rem;
      height: 3rem;
    }
  }

.main.error-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin: 0 auto;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin: 0;
  animation: float-error 3s ease-in-out infinite;
}

.error-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  animation: spin-slow 8s linear infinite;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin: clamp(1rem, 3vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 600;
  line-height: 1.5;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1.0625rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 clamp(2rem, 5vw, 3rem) 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  background: #ffffff;
  color: #0d9488;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.3rem, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  border: 2px solid #ffffff;
}

.btn-large:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.error-suggestions {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.suggestions-label {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.suggestions-list li {
  font-size: clamp(0.8125rem, 1.2vw + 0.3rem, 0.9375rem);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.5;
}

.suggestions-list i {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

@keyframes float-error {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(2rem, 6vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-code-wrapper {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .error-code {
    letter-spacing: -3px;
  }

  .error-decoration {
    animation: spin-slow 10s linear infinite;
  }

  .btn-large {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .error-suggestions {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 4rem;
  }

  .btn-large {
    margin-bottom: 4rem;
  }

  .error-suggestions {
    margin-top: 3rem;
  }

  .error-suggestions:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  }

  .btn-large {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .btn-large:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration {
    animation: none;
  }

  .btn-large {
    transition: none;
  }
}

@media (max-height: 600px) {
  .error-section {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .error-code {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .error-decoration {
    width: 50px;
    height: 50px;
  }

  .error-title {
    margin: 0.75rem 0 0.5rem 0;
  }

  .error-suggestions {
    display: none;
  }
}

.header-taal-portal-mobile-toggle[aria-expanded="true"]{
  display: none;
} 

.main-nederlands-werk-communicatie {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-nederlands-werk-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlands-werk-communicatie {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-werk-communicatie:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-werk-communicatie {
  color: #cbd5e1;
}

.breadcrumb-current-nederlands-werk-communicatie {
  color: #64748b;
  font-weight: 500;
}

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

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

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

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

.hero-subtitle-nederlands-werk-communicatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-netherlands-werk-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlands-werk-communicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlands-werk-communicatie i {
  font-size: 0.875rem;
}

.hero-stats-nederlands-werk-communicatie {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item-nederlands-werk-communicatie {
  flex: 0 1 auto;
}

.stat-number-nederlands-werk-communicatie {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-nederlands-werk-communicatie {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-nederlands-werk-communicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.intro-description-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-text-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-nederlands-werk-communicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

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

.content-one-text-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-nederlands-werk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-one-description-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-one-highlights-nederlands-werk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-nederlands-werk-communicatie {
  padding: 1rem;
  background: #f1f5f9;
  border-left: 4px solid #0d9488;
  border-radius: 8px;
}

.highlight-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.highlight-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.content-one-image-nederlands-werk-communicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

.content-two-image-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-text-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-nederlands-werk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-two-description-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.steps-container-nederlands-werk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-nederlands-werk-communicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number-nederlands-werk-communicatie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-nederlands-werk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.step-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.content-two-image-nederlands-werk-communicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

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

.section-header-nederlands-werk-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlands-werk-communicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.content-three-title-nederlands-werk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-nederlands-werk-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.feature-card-nederlands-werk-communicatie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-nederlands-werk-communicatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #0d9488;
}

.feature-icon-nederlands-werk-communicatie {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-size: 1.5rem;
}

.feature-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.feature-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.featured-quote-nederlands-werk-communicatie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: rgba(13, 148, 136, 0.1);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-nederlands-werk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.quote-author-nederlands-werk-communicatie {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

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

.content-four-text-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-image-block-nederlands-werk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-nederlands-werk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-four-description-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.culture-points-nederlands-werk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.culture-point-nederlands-werk-communicatie {
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
}

.culture-point-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.culture-point-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.content-four-image-nederlands-werk-communicatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.section-header-nederlands-werk-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-nederlands-werk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.tools-grid-nederlands-werk-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-nederlands-werk-communicatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tool-card-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.tool-list-nederlands-werk-communicatie {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-item-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.tool-item-nederlands-werk-communicatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

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

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

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

.conclusion-text-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-emphasis-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-section-nederlands-werk-communicatie {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border: 2px solid #0d9488;
}

.cta-title-nederlands-werk-communicatie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-nederlands-werk-communicatie {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-nederlands-werk-communicatie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

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

.related-header-nederlands-werk-communicatie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlands-werk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-nederlands-werk-communicatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-post-card-nederlands-werk-communicatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-post-card-nederlands-werk-communicatie:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.related-post-image-nederlands-werk-communicatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-nederlands-werk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-post-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.related-post-description-nederlands-werk-communicatie {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.related-post-link-nederlands-werk-communicatie {
  display: inline-block;
  margin-top: auto;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.related-post-link-nederlands-werk-communicatie:hover {
  color: #059669;
  text-decoration: underline;
}

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

.disclaimer-content-nederlands-werk-communicatie {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f1f5f9;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.disclaimer-title-nederlands-werk-communicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-werk-communicatie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.8;
}

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

  .hero-text-block-nederlands-werk-communicatie,
  .hero-image-block-nederlands-werk-communicatie,
  .intro-text-block-nederlands-werk-communicatie,
  .intro-image-block-nederlands-werk-communicatie,
  .content-one-text-block-nederlands-werk-communicatie,
  .content-one-image-block-nederlands-werk-communicatie,
  .content-two-image-block-nederlands-werk-communicatie,
  .content-two-text-block-nederlands-werk-communicatie,
  .content-four-text-block-nederlands-werk-communicatie,
  .content-four-image-block-nederlands-werk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-nederlands-werk-communicatie {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-nederlands-werk-communicatie {
    font-size: 2rem;
  }

  .feature-card-nederlands-werk-communicatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .tool-card-nederlands-werk-communicatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-post-card-nederlands-werk-communicatie {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-nederlands-werk-communicatie {
    flex-direction: column;
    gap: 1.5rem;
  }
}