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

:root {
  
  
  
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-dark-card: rgba(255, 255, 255, 0.04);
  --color-bg-light-card: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  
  
  --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 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: 1rem;
}

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);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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 {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

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

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

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

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

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

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--color-text-dark-primary);
}

.hero-section .hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}

.hero-section .hero-description {
  color: var(--color-text-dark-muted);
  max-width: 550px;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-lg);
}

.features-section,
.benefits-section,
.about-section,
.contact-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.features-section:nth-of-type(even),
.benefits-section:nth-of-type(even),
.about-section:nth-of-type(even),
.contact-section:nth-of-type(even) {
  background: var(--color-bg-light-secondary);
}

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

.features-section h2 {
  color: var(--color-text-light-primary);
}

.features-section h3 {
  color: var(--color-text-light-primary);
}

.features-section p,
.features-section .feature-description {
  color: var(--color-text-light-secondary);
}

.benefits-section h2 {
  color: var(--color-text-light-primary);
}

.benefits-section p,
.benefits-section .benefit-text {
  color: var(--color-text-light-secondary);
}

.about-section h2 {
  color: var(--color-text-light-primary);
}

.about-section p {
  color: var(--color-text-light-secondary);
}

.contact-section h2 {
  color: var(--color-text-light-primary);
}

.contact-section p {
  color: var(--color-text-light-secondary);
}

.card {
  background: var(--color-bg-light-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.card-title {
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.card-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.feature-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.feature-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-block-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-block-title {
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

.feature-block-description {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-label {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: clamp(0.625rem, 1vw, 0.875rem) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: var(--color-text-light-primary);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

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

.list-check {
  list-style: none;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--color-text-light-secondary);
}

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

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
}

.section-header h2 {
  color: var(--color-text-light-primary);
}

.section-header p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group a,
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-dark-card: rgba(255, 255, 255, 0.04);
  --color-bg-light-card: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --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 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --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);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.header-language-hub {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-language-hub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.header-language-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 300ms ease;
}

.header-language-hub-brand:hover {
  opacity: 0.85;
}

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

.header-language-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
}

.header-language-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-language-hub-nav-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

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

.header-language-hub-nav-link:hover {
  color: var(--color-text-dark-primary);
}

.header-language-hub-nav-link:hover::after {
  width: 100%;
}

.header-language-hub-cta-button {
  background: var(--color-primary);
  color: #000000;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-language-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.header-language-hub-cta-button:active {
  transform: translateY(0);
}

.header-language-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 300ms ease;
}

.header-language-hub-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-language-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg-dark-primary);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(3.5rem, 10vw, 5rem);
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

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

.header-language-hub-mobile-header {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(1rem, 4vw, 1.5rem);
}

.header-language-hub-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 300ms ease;
}

.header-language-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-language-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.header-language-hub-mobile-link {
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  transition: color 300ms ease;
  padding: 0.5rem 0;
}

.header-language-hub-mobile-link:hover {
  color: var(--color-text-dark-primary);
}

.header-language-hub-mobile-cta {
  background: var(--color-primary);
  color: #000000;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: var(--space-md);
}

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

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

  .header-language-hub-mobile-toggle {
    display: none;
  }

  .header-language-hub-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-language-hub-container {
    padding: 1rem clamp(2rem, 5vw, 3rem);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .header-language-hub-desktop-nav {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .header-language-hub-nav-link {
    font-size: 1rem;
  }

  .header-language-hub-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@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%;
  background: #ffffff;
}

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

.hero-ambient-glow-index {
  position: absolute;
  top: -20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-left-index {
  position: absolute;
  top: 25%;
  left: 10%;
  width: 200px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-right-index {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 180px;
  height: 220px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-radiant-orb-index {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.09);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-line-index {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-secondary-glow-index {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  font-weight: 500;
}

.hero-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  max-width: 550px;
  line-height: 1.7;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f59e0b;
  display: block;
  line-height: 1;
}

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

.hero-cta-group-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

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

.btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

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

.features-accent-top-left-index {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-top-right-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-center-index {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-subtle-shape-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 30% 70% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.features-glow-bottom-index {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-line-accent-index {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.features-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.features-card-icon-index {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

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

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

.learning-path-glow-left-index {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-glow-right-index {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-accent-index {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 180px;
  height: 220px;
  background: rgba(34, 197, 94, 0.07);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.learning-path-line-center-index {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.learning-path-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.learning-path-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.learning-path-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.learning-path-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.learning-path-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.learning-path-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-path-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 300ms ease;
}

.learning-path-step-index:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}

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

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

.learning-path-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.learning-path-step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .learning-path-step-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .learning-path-step-number-index {
    min-width: auto;
  }
}

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

.featured-glow-accent-index {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-shape-right-index {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 220px;
  height: 260px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.featured-subtle-line-index {
  position: absolute;
  bottom: 40%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.featured-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.featured-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.featured-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.featured-card-index img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

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

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

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

.featured-view-all-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.featured-view-all-index:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.benefits-glow-top-index {
  position: absolute;
  top: -100px;
  right: 10%;
  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;
}

.benefits-shape-accent-index {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 250px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.benefits-floating-element-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line-decoration-index {
  position: absolute;
  top: 50%;
  left: 0;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-corner-glow-index {
  position: absolute;
  bottom: 5%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-text-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.benefits-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.benefits-list-item-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.benefits-list-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list-text-index {
  flex: 1;
}

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

.benefits-image-block-index img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .benefits-content-index {
    flex-direction: column;
  }
  
  .benefits-text-block-index,
  .benefits-image-block-index {
    flex: 1 1 100%;
  }
}

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

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

.testimonial-glow-right-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-shape-center-index {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 240px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-accent-line-index {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonial-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin: 0 auto;
}

.testimonial-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.testimonial-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.testimonial-quote-index {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  margin: clamp(1rem, 2vw, 2rem) 0;
  text-align: left;
}

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

.testimonial-cite-index {
  font-size: 0.95rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

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

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

.testimonial-stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #2563eb;
}

.testimonial-stat-label-index {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

.cta-glow-accent-index {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-left-index {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 240px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.cta-shape-right-index {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 220px;
  height: 260px;
  background: rgba(34, 197, 94, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.cta-floating-element-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.cta-button-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
}

.cta-button-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-button-index:active {
  transform: translateY(-1px);
}

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

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

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

.contact-shape-accent-index {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 200px;
  height: 240px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.contact-subtle-decoration-index {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.contact-form-wrapper-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-title-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.contact-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-input-index,
.contact-textarea-index {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 300ms ease;
  background: #ffffff;
  color: #1e293b;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-submit-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

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

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

.contact-info-title-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.contact-info-item-index {
  display: flex;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 3px solid #2563eb;
  transition: all 300ms ease;
}

.contact-info-item-index:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.contact-info-icon-index {
  font-size: 1.5rem;
  flex-shrink: 0;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-text-index strong {
  color: #1e293b;
  font-size: 0.95rem;
}

.contact-info-text-index p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-info-link-index {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: all 300ms ease;
}

.contact-info-link-index:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-content-index {
    flex-direction: column;
  }
  
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 600px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept-index {
  background: #f59e0b;
  color: #0f172a;
}

.cookie-btn-accept-index:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

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

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

@media (max-width: 768px) {
  .hero-cta-group-index {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group-index a {
    width: 100%;
  }
  
  .learning-path-line-center-index {
    display: none;
  }
  
  .contact-content-index {
    flex-direction: column;
  }
  
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

@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-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

.footer-about {
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about-title {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
}

.footer-nav-section {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

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

.footer-nav-link {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1), 
              padding-left 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

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

.footer-contact-section {
  flex: 1 1 280px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.875rem;
}

.footer-contact-value {
  color: var(--color-text-dark-secondary);
  word-break: break-word;
}

.footer-legal-section {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-legal-link {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              border-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

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

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

.footer-copyright {
  width: 100%;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright-text {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer {
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(2.5rem, 6vw, 3.5rem) 0;
  }

  .footer-content {
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: flex-start;
  }

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

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0 4rem 0;
  }

  .footer-content {
    gap: 4rem;
    justify-content: space-between;
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-about-title {
    font-size: 1.375rem;
  }

  .footer-about-text {
    font-size: 1rem;
  }

  .footer-nav-link {
    font-size: 0.9375rem;
  }

  .footer-legal-link {
    font-size: 0.9375rem;
  }

  .footer-copyright {
    padding-top: 3rem;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-about,
  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    width: 100%;
    flex: 1 1 100%;
  }

  .footer-about {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-contact-item {
    gap: 0.375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }
}
    

.category-page-dutch-language-training {
  width: 100%;
}

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

.hero-glow-accent-1 {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-accent-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

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

.hero-shape-organic-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-dutch-training {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

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

.hero-subtitle-dutch-training {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #fbbf24;
  font-weight: 600;
}

.hero-description-dutch-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats-dutch-training {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-dutch-training {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.stat-label-dutch-training {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  opacity: 0.9;
}

.hero-cta-group-dutch-training {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-dutch-training {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #f59e0b;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-dutch-training:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary-dutch-training {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid #06b6d4;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-dutch-training:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #22d3ee;
  transform: translateY(-3px);
}

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

.posts-shape-1 {
  position: absolute;
  top: -50px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  pointer-events: none;
  z-index: 1;
}

.posts-shape-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

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

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

.posts-subtitle-dutch-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
}

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

.card-dutch-training {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.card-image-dutch-training {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f5f9;
}

.card-title-dutch-training {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

.card-link-dutch-training {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-link-dutch-training:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateX(4px);
}

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

.learning-shape-1 {
  position: absolute;
  top: 5%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.learning-shape-2 {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

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

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

.learning-subtitle-dutch-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
}

.learning-steps-dutch-training {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.learning-step-dutch-training {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.learning-step-dutch-training:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.learning-step-number-dutch-training {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-step-content-dutch-training {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.learning-step-title-dutch-training {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

.resources-glow-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.resources-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.resources-header-dutch-training {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.resources-title-dutch-training {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.resources-content-dutch-training {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resources-quote-dutch-training {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: #f8fafc;
  border-radius: 8px;
}

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

.quote-author-dutch-training {
  font-size: 0.9rem;
  color: #64748b;
  font-style: normal;
}

.resources-benefits-dutch-training {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-heading-dutch-training {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1e293b;
}

.benefits-list-dutch-training {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-dutch-training {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1.025rem);
  color: #475569;
}

.benefit-check-dutch-training {
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefit-text-dutch-training {
  line-height: 1.6;
}

.resources-cta-dutch-training {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-heading-dutch-training {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-text-dutch-training {
  font-size: clamp(0.875rem, 1vw, 1.025rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.resources-cta-dutch-training .btn-primary-dutch-training {
  background: #ffffff;
  color: #d97706;
  margin: 0 auto;
}

.resources-cta-dutch-training .btn-primary-dutch-training:hover {
  background: #f0f0f0;
}

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

  .hero-cta-group-dutch-training a {
    width: 100%;
    text-align: center;
  }

  .learning-step-dutch-training {
    flex-direction: column;
    gap: 1rem;
  }

  .learning-step-number-dutch-training {
    margin-bottom: 0.5rem;
  }

  .posts-grid-dutch-training {
    justify-content: center;
  }

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

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-dutch-training {
    justify-content: center;
  }

  .card-dutch-training {
    flex: 1 1 350px;
  }
}

@media (min-width: 1024px) {
  .posts-grid-dutch-training {
    justify-content: center;
  }

  .card-dutch-training {
    flex: 1 1 340px;
    max-width: 400px;
  }
}

a:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

button:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

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

.main-telefoongesprekken-nederlands {
  width: 100%;
}

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

.hero-section-telefoongesprekken-nederlands::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-telefoongesprekken-nederlands::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title-telefoongesprekken-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-telefoongesprekken-nederlands {
  color: #cbd5e1;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.4;
}

.hero-description-telefoongesprekken-nederlands {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-meta-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-telefoongesprekken-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-telefoongesprekken-nederlands i {
  font-size: 0.9rem;
}

.hero-stats-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-telefoongesprekken-nederlands {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
}

.stat-label-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-wrapper-telefoongesprekken-nederlands {
  margin-top: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-featured-image-telefoongesprekken-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.breadcrumb-link-telefoongesprekken-nederlands {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-separator-telefoongesprekken-nederlands {
  color: #64748b;
}

.breadcrumb-current-telefoongesprekken-nederlands {
  color: #cbd5e1;
}

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

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

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

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

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

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

.intro-highlight-telefoongesprekken-nederlands {
  padding: 1.5rem;
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-telefoongesprekken-nederlands {
  color: #065f46;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.intro-image-element-telefoongesprekken-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.essentials-header-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

.section-tag-telefoongesprekken-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

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

.essentials-subtitle-telefoongesprekken-nederlands {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
}

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

.essentials-text-telefoongesprekken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.essentials-image-telefoongesprekken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.essentials-subheading-telefoongesprekken-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.essentials-paragraph-telefoongesprekken-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.essentials-list-telefoongesprekken-nederlands {
  list-style: none;
  margin: 1.5rem 0;
}

.list-item-telefoongesprekken-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-telefoongesprekken-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

.essentials-image-element-telefoongesprekken-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .essentials-content-telefoongesprekken-nederlands {
    flex-direction: column;
  }

  .essentials-text-telefoongesprekken-nederlands,
  .essentials-image-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-telefoongesprekken-nederlands {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-section-telefoongesprekken-nederlands::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.strategies-header-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.strategies-title-telefoongesprekken-nederlands {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.strategies-steps-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.strategy-step-telefoongesprekken-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.strategy-step-telefoongesprekken-nederlands:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
}

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

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

.step-title-telefoongesprekken-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.step-text-telefoongesprekken-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-step-telefoongesprekken-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-telefoongesprekken-nederlands {
    min-width: auto;
  }
}

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

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

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

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

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

.practical-subheading-telefoongesprekken-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.practical-paragraph-telefoongesprekken-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.practical-image-element-telefoongesprekken-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .practical-text-telefoongesprekken-nederlands,
  .practical-image-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-header-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

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

.tips-grid-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tip-card-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  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;
}

.tip-card-telefoongesprekken-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.tip-icon-telefoongesprekken-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 10px;
  font-size: 1.5rem;
}

.tip-card-title-telefoongesprekken-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

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

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

.cta-section-telefoongesprekken-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-telefoongesprekken-nederlands::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title-telefoongesprekken-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-text-telefoongesprekken-nederlands {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

.cta-button-telefoongesprekken-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #f59e0b;
  color: #0f172a;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
  margin: 1rem auto 0;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.cta-button-telefoongesprekken-nederlands:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

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

.related-header-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.related-cards-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.related-card-content-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-telefoongesprekken-nederlands:hover .related-card-content-telefoongesprekken-nederlands {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-title-telefoongesprekken-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

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

.related-card-link-telefoongesprekken-nederlands {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-telefoongesprekken-nederlands:hover .related-card-link-telefoongesprekken-nederlands {
  gap: 1rem;
  color: #d97706;
}

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

.disclaimer-section-telefoongesprekken-nederlands {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 4rem) 0;
}

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

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

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

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

  .intro-section-telefoongesprekken-nederlands,
  .essentials-section-telefoongesprekken-nederlands,
  .strategies-section-telefoongesprekken-nederlands,
  .practical-section-telefoongesprekken-nederlands,
  .tips-section-telefoongesprekken-nederlands,
  .related-section-telefoongesprekken-nederlands,
  .disclaimer-section-telefoongesprekken-nederlands {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .cta-section-telefoongesprekken-nederlands {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }
}

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

  .intro-section-telefoongesprekken-nederlands,
  .essentials-section-telefoongesprekken-nederlands,
  .strategies-section-telefoongesprekken-nederlands,
  .practical-section-telefoongesprekken-nederlands,
  .tips-section-telefoongesprekken-nederlands,
  .related-section-telefoongesprekken-nederlands,
  .disclaimer-section-telefoongesprekken-nederlands {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .cta-section-telefoongesprekken-nederlands {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

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

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

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

.hero-section-formele-informele-comunicatie-werk {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-formele-informele-comunicatie-werk::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-section-formele-informele-comunicatie-werk::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-formele-informele-comunicatie-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-formele-informele-comunicatie-werk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-formele-informele-comunicatie-werk {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumb-link-formele-informele-comunicatie-werk:hover {
  color: #f59e0b;
}

.breadcrumb-separator-formele-informele-comunicatie-werk {
  color: #64748b;
}

.breadcrumb-current-formele-informele-comunicatie-werk {
  color: #cbd5e1;
  font-weight: 500;
}

.hero-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #f59e0b;
  font-weight: 600;
}

.hero-description-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 550px;
}

.hero-stats-formele-informele-comunicatie-werk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-formele-informele-comunicatie-werk {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hero-stat-number-formele-informele-comunicatie-werk {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.hero-stat-label-formele-informele-comunicatie-werk {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-image-formele-informele-comunicatie-werk {
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-featured-image-formele-informele-comunicatie-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-stats-formele-informele-comunicatie-werk {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.intro-section-formele-informele-comunicatie-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

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

.intro-paragraph-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-featured-image-formele-informele-comunicatie-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.formele-section-formele-informele-comunicatie-werk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.formele-text-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.formele-image-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.formele-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.formele-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.formele-description-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.formele-list-formele-informele-comunicatie-werk {
  list-style: none;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.formele-list-item-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.formele-list-item-formele-informele-comunicatie-werk::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1em;
}

.formele-strong-formele-informele-comunicatie-werk {
  color: #0f172a;
  font-weight: 600;
}

.formele-context-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #64748b;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  border-radius: 0 8px 8px 0;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.formele-featured-image-formele-informele-comunicatie-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .formele-content-formele-informele-comunicatie-werk {
    flex-direction: column;
  }
  
  .formele-text-formele-informele-comunicatie-werk,
  .formele-image-formele-informele-comunicatie-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.informele-section-formele-informele-comunicatie-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.informele-image-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.informele-text-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.informele-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.informele-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.informele-description-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.informele-list-formele-informele-comunicatie-werk {
  list-style: none;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.informele-list-item-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.informele-list-item-formele-informele-comunicatie-werk::before {
  content: '';
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
  font-size: 1.2em;
}

.informele-strong-formele-informele-comunicatie-werk {
  color: #0f172a;
  font-weight: 600;
}

.informele-context-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #64748b;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  border-radius: 0 8px 8px 0;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.informele-featured-image-formele-informele-comunicatie-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .informele-content-formele-informele-comunicatie-werk {
    flex-direction: column;
  }
  
  .informele-image-formele-informele-comunicatie-werk,
  .informele-text-formele-informele-comunicatie-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .informele-image-formele-informele-comunicatie-werk {
    order: 0;
  }
}

.scenario-section-formele-informele-comunicatie-werk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.scenario-header-formele-informele-comunicatie-werk {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.scenario-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.scenario-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.scenario-cards-formele-informele-comunicatie-werk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.scenario-card-formele-informele-comunicatie-werk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.scenario-card-formele-informele-comunicatie-werk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scenario-card-icon-formele-informele-comunicatie-werk {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
}

.scenario-card-title-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.scenario-card-text-formele-informele-comunicatie-werk {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: #475569;
}

.scenario-strong-formele-informele-comunicatie-werk {
  color: #1e293b;
  font-weight: 600;
}

.scenario-card-tip-formele-informele-comunicatie-werk {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: #64748b;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid #e2e8f0;
  font-style: italic;
}

@media (max-width: 768px) {
  .scenario-card-formele-informele-comunicatie-werk {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tips-section-formele-informele-comunicatie-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tips-header-formele-informele-comunicatie-werk {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.tips-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.tips-content-formele-informele-comunicatie-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.tips-image-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-list-formele-informele-comunicatie-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tips-featured-image-formele-informele-comunicatie-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tips-item-formele-informele-comunicatie-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1rem, 2vw, 1.25rem);
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
}

.tips-item-title-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.tips-item-text-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .tips-content-formele-informele-comunicatie-werk {
    flex-direction: column;
  }
  
  .tips-image-formele-informele-comunicatie-werk,
  .tips-list-formele-informele-comunicatie-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-formele-informele-comunicatie-werk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.highlight-quote-formele-informele-comunicatie-werk {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f59e0b;
  background: #ffffff;
  margin: 0;
  border-radius: 0 8px 8px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.highlight-quote-cite-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
  text-align: right;
  font-weight: 500;
}

.conclusion-section-formele-informele-comunicatie-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-formele-informele-comunicatie-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 750px;
  margin: 0 auto;
}

.conclusion-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.conclusion-text-formele-informele-comunicatie-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
}

.conclusion-cta-formele-informele-comunicatie-werk {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-btn-formele-informele-comunicatie-werk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #f59e0b;
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.conclusion-btn-formele-informele-comunicatie-werk:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.disclaimer-section-formele-informele-comunicatie-werk {
  background: #f8fafc;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.disclaimer-content-formele-informele-comunicatie-werk {
  max-width: 750px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-formele-informele-comunicatie-werk {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
  color: #64748b;
}

.related-section-formele-informele-comunicatie-werk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-formele-informele-comunicatie-werk {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-formele-informele-comunicatie-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-formele-informele-comunicatie-werk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-formele-informele-comunicatie-werk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: clamp(8px, 2vw, 12px);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-formele-informele-comunicatie-werk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}

.related-card-title-formele-informele-comunicatie-werk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-link-formele-informele-comunicatie-werk {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-formele-informele-comunicatie-werk:hover {
  color: #f59e0b;
}

.related-card-text-formele-informele-comunicatie-werk {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .related-card-formele-informele-comunicatie-werk {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-formele-informele-comunicatie-werk {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-formele-informele-comunicatie-werk,
  .formele-section-formele-informele-comunicatie-werk,
  .informele-section-formele-informele-comunicatie-werk,
  .scenario-section-formele-informele-comunicatie-werk,
  .tips-section-formele-informele-comunicatie-werk,
  .highlight-section-formele-informele-comunicatie-werk,
  .conclusion-section-formele-informele-comunicatie-werk,
  .disclaimer-section-formele-informele-comunicatie-werk,
  .related-section-formele-informele-comunicatie-werk {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-formele-informele-comunicatie-werk {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
  
  .intro-section-formele-informele-comunicatie-werk,
  .formele-section-formele-informele-comunicatie-werk,
  .informele-section-formele-informele-comunicatie-werk,
  .scenario-section-formele-informele-comunicatie-werk,
  .tips-section-formele-informele-comunicatie-werk,
  .highlight-section-formele-informele-comunicatie-werk,
  .conclusion-section-formele-informele-comunicatie-werk,
  .disclaimer-section-formele-informele-comunicatie-werk,
  .related-section-formele-informele-comunicatie-werk {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

.main-dagelijkse-conversaties-nederlands {
  width: 100%;
  font-family: var(--font-primary);
  line-height: 1.6;
}

.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);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

.hero-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-dagelijkse-conversaties-nederlands::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-dagelijkse-conversaties-nederlands::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  position: relative;
  z-index: 2;
}

.breadcrumb-link-dagelijkse-conversaties-nederlands {
  color: var(--color-text-dark-muted);
  transition: color 0.3s ease;
}

.breadcrumb-link-dagelijkse-conversaties-nederlands:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-dagelijkse-conversaties-nederlands {
  color: var(--color-text-dark-muted);
}

.breadcrumb-current-dagelijkse-conversaties-nederlands {
  color: var(--color-primary);
  font-weight: 600;
}

.hero-content-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-bottom: 2rem;
}

.hero-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-dark-primary);
  line-height: 1.1;
}

.hero-subtitle-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-primary);
  font-weight: 600;
  font-family: var(--font-heading);
}

.hero-description-dagelijkse-conversaties-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

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

.meta-badge-dagelijkse-conversaties-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.meta-badge-dagelijkse-conversaties-nederlands i {
  color: var(--color-primary);
}

.hero-stats-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-dagelijkse-conversaties-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-dagelijkse-conversaties-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  opacity: 0.9;
}

.hero-image-container-dagelijkse-conversaties-nederlands {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.hero-image-dagelijkse-conversaties-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.introduction-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-dagelijkse-conversaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-dagelijkse-conversaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
}

.intro-description-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image-dagelijkse-conversaties-nederlands img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.list-check-dagelijkse-conversaties-nederlands {
  list-style: none;
  margin-top: 1.5rem;
}

.list-check-dagelijkse-conversaties-nederlands li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-light-secondary);
}

.list-check-dagelijkse-conversaties-nederlands li::before {
  content: '';
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-section-one-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-header-dagelijkse-conversaties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.content-title-one-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.content-subtitle-one-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

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

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

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

.content-paragraph-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-highlight-dagelijkse-conversaties-nederlands {
  background: #eff6ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.content-subheading-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  font-family: var(--font-heading);
}

.content-image-one-dagelijkse-conversaties-nederlands img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section-two-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.content-image-two-dagelijkse-conversaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.content-title-two-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
}

.content-image-two-dagelijkse-conversaties-nederlands img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategies-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-header-dagelijkse-conversaties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.strategies-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.strategies-subtitle-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

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

.strategy-text-dagelijkse-conversaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-dagelijkse-conversaties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-section-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  font-family: var(--font-heading);
}

.strategy-text-content-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.strategy-image-dagelijkse-conversaties-nederlands img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practical-phrases-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.phrases-header-dagelijkse-conversaties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.phrases-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
}

.phrases-grid-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.phrase-card-dagelijkse-conversaties-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.phrase-card-dagelijkse-conversaties-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phrase-category-dagelijkse-conversaties-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.phrase-list-dagelijkse-conversaties-nederlands {
  list-style: none;
}

.phrase-list-dagelijkse-conversaties-nederlands li {
  color: var(--color-text-light-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.phrase-list-dagelijkse-conversaties-nederlands li:last-child {
  border-bottom: none;
}

.conclusion-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.conclusion-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  text-align: center;
}

.conclusion-quote-dagelijkse-conversaties-nederlands {
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-text-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.conclusion-cta-dagelijkse-conversaties-nederlands {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-heading-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.cta-text-dagelijkse-conversaties-nederlands {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.btn-cta-dagelijkse-conversaties-nederlands {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-dagelijkse-conversaties-nederlands:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-dagelijkse-conversaties-nederlands {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-left: 4px solid #cbd5e1;
  border-radius: 8px;
}

.disclaimer-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.disclaimer-text-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.7;
}

.related-posts-section-dagelijkse-conversaties-nederlands {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-dagelijkse-conversaties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.related-subtitle-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

.related-posts-grid-dagelijkse-conversaties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-post-card-dagelijkse-conversaties-nederlands {
  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 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-post-card-dagelijkse-conversaties-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.related-card-title-dagelijkse-conversaties-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.related-card-description-dagelijkse-conversaties-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.related-card-link-dagelijkse-conversaties-nederlands {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-dagelijkse-conversaties-nederlands:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .intro-content-wrapper-dagelijkse-conversaties-nederlands,
  .content-wrapper-one-dagelijkse-conversaties-nederlands,
  .content-wrapper-two-dagelijkse-conversaties-nederlands,
  .strategies-wrapper-dagelijkse-conversaties-nederlands {
    flex-direction: column;
  }
  
  .intro-text-dagelijkse-conversaties-nederlands,
  .intro-image-dagelijkse-conversaties-nederlands,
  .content-text-one-dagelijkse-conversaties-nederlands,
  .content-image-one-dagelijkse-conversaties-nederlands,
  .content-text-two-dagelijkse-conversaties-nederlands,
  .content-image-two-dagelijkse-conversaties-nederlands,
  .strategy-text-dagelijkse-conversaties-nederlands,
  .strategy-image-dagelijkse-conversaties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-wrapper-two-dagelijkse-conversaties-nederlands .content-image-two-dagelijkse-conversaties-nederlands {
    order: 0;
  }
  
  .hero-stats-dagelijkse-conversaties-nederlands {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .phrase-card-dagelijkse-conversaties-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .related-post-card-dagelijkse-conversaties-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .phrases-grid-dagelijkse-conversaties-nederlands {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
  }
  
  .phrase-card-dagelijkse-conversaties-nederlands {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
  
  .related-posts-grid-dagelijkse-conversaties-nederlands {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 2rem);
  }
  
  .related-post-card-dagelijkse-conversaties-nederlands {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

.main-nederlandse-bedrijfstermen {
  width: 100%;
}

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

.hero-section-nederlandse-bedrijfstermen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-nederlandse-bedrijfstermen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-nederlandse-bedrijfstermen .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column !important;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start !important;
}

.breadcrumbs-nederlandse-bedrijfstermen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  margin-bottom: 1rem;
}

.breadcrumb-link-nederlandse-bedrijfstermen {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-bedrijfstermen:hover {
  color: #f59e0b;
}

.breadcrumb-separator-nederlandse-bedrijfstermen {
  color: #475569;
}

.breadcrumb-current-nederlandse-bedrijfstermen {
  color: #f59e0b;
  font-weight: 500;
}

.hero-content-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 650px;
}

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

.hero-subtitle-nederlandse-bedrijfstermen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #f59e0b;
  font-weight: 600;
}

.hero-description-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-stats-nederlandse-bedrijfstermen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-stat-item-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-nederlandse-bedrijfstermen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.hero-stat-label-nederlandse-bedrijfstermen {
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-image-nederlandse-bedrijfstermen {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

@media (min-width: 768px) {
  .hero-section-nederlandse-bedrijfstermen .container {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }

  .hero-image-nederlandse-bedrijfstermen {
    flex: 1;
    margin-top: 0;
    max-width: 45%;
  }

  .hero-content-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }
}

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

.intro-section-nederlandse-bedrijfstermen .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.intro-text-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 550px;
}

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

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

.intro-description-nederlandse-bedrijfstermen:last-of-type {
  margin-bottom: 0;
}

.intro-image-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.intro-section-image-nederlandse-bedrijfstermen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (min-width: 768px) {
  .intro-content-nederlandse-bedrijfstermen {
    flex-direction: row;
    align-items: center;
  }

  .intro-text-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }

  .intro-image-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }
}

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

.categories-header-nederlandse-bedrijfstermen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.categories-tag-nederlandse-bedrijfstermen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.categories-subtitle-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.categories-cards-nederlandse-bedrijfstermen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.category-card-nederlandse-bedrijfstermen {
  flex: 1 1 300px;
  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;
}

.category-card-nederlandse-bedrijfstermen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.category-card-icon-nederlandse-bedrijfstermen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #06b6d4);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.5rem;
}

.category-card-title-nederlandse-bedrijfstermen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

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

.category-terms-list-nederlandse-bedrijfstermen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.category-term-item-nederlandse-bedrijfstermen {
  font-size: 0.9375rem;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.category-term-item-nederlandse-bedrijfstermen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 600;
}

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

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

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

.practical-text-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 550px;
}

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

.practical-description-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practical-terms-list-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.practical-term-item-nederlandse-bedrijfstermen {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.practical-term-title-nederlandse-bedrijfstermen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.practical-term-meaning-nederlandse-bedrijfstermen {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.practical-term-context-nederlandse-bedrijfstermen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.practical-image-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.practical-section-image-nederlandse-bedrijfstermen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (min-width: 768px) {
  .practical-wrapper-nederlandse-bedrijfstermen {
    flex-direction: row;
    align-items: flex-start;
  }

  .practical-text-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }

  .practical-image-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }
}

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

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

.dialogue-tag-nederlandse-bedrijfstermen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

.dialogue-text-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 550px;
}

.dialogue-intro-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dialogue-box-nederlandse-bedrijfstermen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.dialogue-line-nederlandse-bedrijfstermen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.dialogue-line-nederlandse-bedrijfstermen:last-child {
  margin-bottom: 0;
}

.dialogue-image-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.dialogue-section-image-nederlandse-bedrijfstermen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (min-width: 768px) {
  .dialogue-content-wrapper-nederlandse-bedrijfstermen {
    flex-direction: row;
    align-items: flex-start;
  }

  .dialogue-text-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }

  .dialogue-image-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }
}

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

.tips-header-nederlandse-bedrijfstermen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.tips-subtitle-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.tips-list-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tips-item-nederlandse-bedrijfstermen {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.tips-number-nederlandse-bedrijfstermen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.tips-content-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tips-item-title-nederlandse-bedrijfstermen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.tips-item-text-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

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

.featured-quote-nederlandse-bedrijfstermen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  font-style: italic;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.quote-author-nederlandse-bedrijfstermen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

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

.resources-wrapper-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.resources-text-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 550px;
}

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

.resources-description-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.resources-image-block-nederlandse-bedrijfstermen {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.resources-section-image-nederlandse-bedrijfstermen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (min-width: 768px) {
  .resources-wrapper-nederlandse-bedrijfstermen {
    flex-direction: row;
    align-items: flex-start;
  }

  .resources-text-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }

  .resources-image-block-nederlandse-bedrijfstermen {
    flex: 1;
    max-width: none;
  }
}

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

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

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

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

.conclusion-cta-group-nederlandse-bedrijfstermen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.conclusion-cta-link-nederlandse-bedrijfstermen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #f59e0b;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.conclusion-cta-link-nederlandse-bedrijfstermen:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(245, 158, 11, 0.3);
}

.conclusion-cta-link-secondary-nederlandse-bedrijfstermen {
  background: transparent;
  color: #0f172a;
  border: 2px solid #f59e0b;
}

.conclusion-cta-link-secondary-nederlandse-bedrijfstermen:hover {
  background: #fef3c7;
}

@media (min-width: 768px) {
  .conclusion-cta-group-nederlandse-bedrijfstermen {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .conclusion-cta-link-nederlandse-bedrijfstermen,
  .conclusion-cta-link-secondary-nederlandse-bedrijfstermen {
    flex: 0 1 auto;
  }
}

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

.related-header-nederlandse-bedrijfstermen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.related-subtitle-nederlandse-bedrijfstermen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.related-cards-nederlandse-bedrijfstermen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-nederlandse-bedrijfstermen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-nederlandse-bedrijfstermen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.related-card-link-nederlandse-bedrijfstermen {
  display: inline-flex;
  align-items: center;
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-nederlandse-bedrijfstermen:hover {
  color: #d97706;
  transform: translateX(4px);
}

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

.disclaimer-section-nederlandse-bedrijfstermen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-nederlandse-bedrijfstermen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

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

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

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

  .practical-wrapper-nederlandse-bedrijfstermen {
    flex-direction: column;
  }

  .dialogue-content-wrapper-nederlandse-bedrijfstermen {
    flex-direction: column;
  }

  .resources-wrapper-nederlandse-bedrijfstermen {
    flex-direction: column;
  }
}

.main-culturele-nuances-nederlandse-communicatie {
  width: 100%;
  background: #ffffff;
}

.hero-section-culturele-nuances-nederlandse-communicatie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-culturele-nuances-nederlandse-communicatie::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-section-culturele-nuances-nederlandse-communicatie::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-culturele-nuances-nederlandse-communicatie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.hero-title-culturele-nuances-nederlandse-communicatie {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-culturele-nuances-nederlandse-communicatie {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.4;
}

.hero-meta-culturele-nuances-nederlandse-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-md);
}

.meta-badge-culturele-nuances-nederlandse-communicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-culturele-nuances-nederlandse-communicatie i {
  color: #f59e0b;
}

.hero-image-wrapper-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-featured-image-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumb-link-culturele-nuances-nederlandse-comunicatie {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-culturele-nuances-nederlandse-comunicatie:hover {
  color: #f59e0b;
}

.breadcrumb-separator-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
}

.breadcrumb-current-culturele-nuances-nederlandse-comunicatie {
  color: #cbd5e1;
}

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

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

.intro-text-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.intro-description-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-image-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-culturele-nuances-nederlandse-comunicatie {
    flex-direction: column;
  }
  
  .intro-text-culturele-nuances-nederlandse-comunicatie,
  .intro-image-culturele-nuances-nederlandse-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.directness-section-culturele-nuances-nederlandse-comunicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.directness-text-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.directness-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.directness-description-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.directness-highlight-culturele-nuances-nederlandse-comunicatie {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  margin-bottom: var(--space-lg);
}

.highlight-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.highlight-list-culturele-nuances-nederlandse-comunicatie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-culturele-nuances-nederlandse-comunicatie::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.directness-tip-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: var(--space-md);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid #3b82f6;
}

.directness-image-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.directness-image-element-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .directness-content-culturele-nuances-nederlandse-comunicatie {
    flex-direction: column;
  }
  
  .directness-text-culturele-nuances-nederlandse-comunicatie,
  .directness-image-culturele-nuances-nederlandse-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.equality-section-culturele-nuances-nederlandse-comunicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.equality-wrapper-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.equality-image-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.equality-image-element-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.equality-text-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.equality-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.equality-description-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.equality-quote-culturele-nuances-nederlandse-comunicatie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #f59e0b;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-culturele-nuances-nederlandse-comunicatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-culturele-nuances-nederlandse-comunicatie {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .equality-wrapper-culturele-nuances-nederlandse-comunicatie {
    flex-direction: column;
  }
  
  .equality-image-culturele-nuances-nederlandse-comunicatie,
  .equality-text-culturele-nuances-nederlandse-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.pragmatism-section-culturele-nuances-nederlandse-comunicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.pragmatism-header-culturele-nuances-nederlandse-comunicatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.pragmatism-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.pragmatism-subtitle-culturele-nuances-nederlandse-comunicatie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.pragmatism-cards-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pragmatism-card-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.pragmatism-card-culturele-nuances-nederlandse-comunicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pragmatism-card-number-culturele-nuances-nederlandse-comunicatie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.pragmatism-card-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.pragmatism-card-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pragmatism-card-culturele-nuances-nederlandse-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.applications-section-culturele-nuances-nederlandse-comunicatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.applications-wrapper-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.applications-content-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.applications-text-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.applications-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.applications-description-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.applications-list-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.applications-item-culturele-nuances-nederlandse-comunicatie {
  padding: var(--space-md);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 4px solid #06b6d4;
}

.applications-item-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.applications-item-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.applications-image-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.applications-image-element-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .applications-text-culturele-nuances-nederlandse-comunicatie,
  .applications-image-culturele-nuances-nederlandse-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-culturele-nuances-nederlandse-comunicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.conclusion-highlights-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-xl);
}

.conclusion-highlight-box-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  border-top: 3px solid #f59e0b;
}

.conclusion-highlight-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.conclusion-highlight-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.conclusion-cta-culturele-nuances-nederlandse-comunicatie {
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.conclusion-cta-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.conclusion-cta-button-culturele-nuances-nederlandse-comunicatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #f59e0b;
  color: #0f172a;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.conclusion-cta-button-culturele-nuances-nederlandse-comunicatie:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.disclaimer-section-culturele-nuances-nederlandse-comunicatie {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-culturele-nuances-nederlandse-comunicatie {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: #f0f9ff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.disclaimer-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.related-header-culturele-nuances-nederlandse-comunicatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.related-subtitle-culturele-nuances-nederlandse-comunicatie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-culturele-nuances-nederlandse-comunicatie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-culturele-nuances-nederlandse-comunicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-image-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-element-culturele-nuances-nederlandse-comunicatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-culturele-nuances-nederlandse-comunicatie:hover .related-card-img-element-culturele-nuances-nederlandse-comunicatie {
  transform: scale(1.05);
}

.related-card-content-culturele-nuances-nederlandse-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-culturele-nuances-nederlandse-comunicatie {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-culturele-nuances-nederlandse-comunicatie {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-culturele-nuances-nederlandse-comunicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
}

.related-card-link-culturele-nuances-nederlandse-comunicatie:hover {
  color: #d97706;
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-culturele-nuances-nederlandse-communicatie {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .intro-section-culturele-nuances-nederlandse-comunicatie,
  .directness-section-culturele-nuances-nederlandse-comunicatie,
  .equality-section-culturele-nuances-nederlandse-comunicatie,
  .pragmatism-section-culturele-nuances-nederlandse-comunicatie,
  .applications-section-culturele-nuances-nederlandse-comunicatie,
  .conclusion-section-culturele-nuances-nederlandse-comunicatie,
  .disclaimer-section-culturele-nuances-nederlandse-comunicatie,
  .related-section-culturele-nuances-nederlandse-comunicatie {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-culturele-nuances-nederlandse-communicatie {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .intro-section-culturele-nuances-nederlandse-comunicatie,
  .directness-section-culturele-nuances-nederlandse-comunicatie,
  .equality-section-culturele-nuances-nederlandse-comunicatie,
  .pragmatism-section-culturele-nuances-nederlandse-comunicatie,
  .applications-section-culturele-nuances-nederlandse-comunicatie,
  .conclusion-section-culturele-nuances-nederlandse-comunicatie,
  .disclaimer-section-culturele-nuances-nederlandse-comunicatie,
  .related-section-culturele-nuances-nederlandse-comunicatie {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

a {
  transition: all 0.3s ease;
}

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

*:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.dutch-language-academy-about {
  width: 100%;
}

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

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

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

.hero-language-title-about {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
}

.hero-language-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 768px) {
  .hero-language-about {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}

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

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

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.foundation-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-story-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.story-text-about {
  flex: 1 1 300px;
  min-width: 0;
}

.story-paragraph-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-paragraph-about:last-child {
  margin-bottom: 0;
}

.story-visual-about {
  flex: 1 1 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .foundation-story-about {
    flex-direction: column;
  }
  
  .story-text-about,
  .story-visual-about {
    flex: 1 1 100%;
  }
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.methodology-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.step-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .methodology-section-about {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.approach-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.approach-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.card-title-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.card-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .approach-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.impact-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.impact-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.impact-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.impact-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  border-radius: 12px;
  display: block;
}

.impact-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-light-secondary);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 8px;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 500;
}

@media (min-width: 768px) {
  .impact-section-about {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.commitment-title-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-light-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

  .legal-portal {
    width: 100%;
    font-family: var(--font-primary);
  }

  
  .legal-portal-hero {
    background: var(--color-bg-dark-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

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

  .legal-portal-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-portal-hero h1 {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text-dark-primary);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-hero-meta {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-dark-muted);
  }

  
  .legal-portal-content {
    background: var(--color-bg-light-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

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

  .legal-portal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    max-width: 900px;
  }

  
  .legal-portal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-portal-section h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text-light-primary);
    line-height: 1.3;
  }

  .legal-portal-section p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-light-secondary);
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-section li {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-light-secondary);
    line-height: 1.7;
    margin-left: 1.5rem;
  }

  .legal-portal-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  
  .legal-portal-contact {
    background: var(--color-bg-light-secondary);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .legal-portal-contact h2 {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text-light-primary);
  }

  .legal-portal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-portal-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .legal-portal-contact-label {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 500;
    color: var(--color-text-light-primary);
  }

  .legal-portal-contact-value {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-light-secondary);
  }

  
  @media (min-width: 768px) {
    .legal-portal-hero {
      padding: 5rem 0;
    }

    .legal-portal-content {
      padding: 5rem 0;
    }

    .legal-portal-content-wrapper {
      gap: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .legal-portal-hero {
      padding: 6rem 0;
    }

    .legal-portal-content {
      padding: 6rem 0;
    }
  }

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(40px, 10vw, 64px);
  color: var(--color-success);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps strong {
  color: var(--color-text-dark-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2.5rem, 5vw, 4rem);
  }

  .thank-icon {
    margin-bottom: clamp(0.75rem, 2.5vw, 1.5rem);
  }

  .btn {
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(3rem, 6vw, 5rem);
  }

  .btn {
    padding: 1rem 2.5rem;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.error-visual {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  animation: float 3s ease-in-out infinite;
  font-family: var(--font-heading);
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 25vw, 250px);
  height: clamp(150px, 25vw, 250px);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
  margin: 0;
}

.error-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  backdrop-filter: blur(10px);
}

.suggestion-title {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
  font-family: var(--font-heading);
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 1rem);
  text-align: left;
}

.suggestion-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestion-list i {
  color: var(--color-success);
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-large {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

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

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

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }
  
  .error-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  
  .error-suggestions {
    padding: clamp(2rem, 4vw, 3rem);
  }
  
  .suggestion-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .error-code {
    animation: float 3.5s ease-in-out infinite;
  }
  
  .error-decoration {
    animation: rotate 25s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration {
    animation: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

@media print {
  .error-section::before,
  .error-section::after {
    display: none;
  }
  
  .error-decoration {
    display: none;
  }
}

