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

:root {
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #f59e0b;
  --color-primary-light: #fcd34d;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #60a5fa;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  font-weight: 400;
  overflow-x: hidden;
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

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

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

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

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

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

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

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

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

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

a:hover {
  color: var(--color-primary-light);
}

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

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-light);
}

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

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

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

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

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bg-gradient {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

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

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

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

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

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

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

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

.font-weight-400 {
  font-weight: 400;
}

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

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

.font-weight-700 {
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.pt-xs {
  padding-top: var(--space-xs);
}

.pt-sm {
  padding-top: var(--space-sm);
}

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

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

.pt-xl {
  padding-top: var(--space-xl);
}

.pb-xs {
  padding-bottom: var(--space-xs);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

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

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

.pb-xl {
  padding-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

.rounded-2xl {
  border-radius: var(--radius-2xl);
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-secondary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-color: rgba(59, 130, 246, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.3);
}

input,
textarea,
select {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

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

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

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

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

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

th {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
}

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

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

pre {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  }
}

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

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

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

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

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

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

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

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

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

@media (max-width: 640px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-large {
    padding: var(--space-2xl) 0;
  }
}

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

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
  opacity: 0.5;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.transform {
  transform: translate(0);
}

.transition-all {
  transition: all var(--transition-base);
}

.duration-fast {
  transition-duration: var(--transition-fast);
}

.duration-base {
  transition-duration: var(--transition-base);
}

.duration-slow {
  transition-duration: var(--transition-slow);
}
.header-luister-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  z-index: 100;
  overflow: hidden;
}

.header-luister-hub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 10vh, 80px);
}

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

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

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

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

.header-luister-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: flex-end;
  margin: 0 clamp(2rem, 4vw, 3rem);
}

.header-luister-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-luister-hub-cta-button {
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  white-space: nowrap;
}

.header-luister-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

.header-luister-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: color var(--transition-base);
  flex-shrink: 0;
}

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

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

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

.header-luister-hub-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-luister-hub-mobile-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

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

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

.header-luister-hub-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.header-luister-hub-mobile-link:hover {
  background: rgba(245, 158, 11, 0.08);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

.header-luister-hub-mobile-cta {
  padding: 1rem clamp(1.5rem, 4vw, 2rem);
  margin: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  display: block;
}

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

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

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

  .header-luister-hub-desktop-nav {
    display: flex;
  }

  .header-luister-hub-container {
    height: clamp(70px, 10vh, 90px);
  }
}

@media (max-width: 767px) {
  .header-luister-hub-mobile-menu {
    padding-top: clamp(60px, 10vh, 80px);
  }
}

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

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.hero-subtitle-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
}

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

.hero-buttons-index .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  white-space: nowrap;
}

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

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

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

.stat-label-index {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  font-weight: 500;
}

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

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

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

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

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

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

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

.features-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8f9fa;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #f59e0b;
  display: flex;
  justify-content: center;
}

.card-title-index {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  font-weight: 600;
  margin: 0;
}

.card-text-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.about-description-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.highlight-item-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
  border-radius: 4px;
}

.highlight-title-index {
  color: #f59e0b;
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.25rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-text-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  margin: 0;
  line-height: 1.5;
}

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

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

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

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

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

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

.process-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.step-number-index {
  color: #f59e0b;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  min-width: 80px;
}

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

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

.step-text-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.testimonials-subtitle-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f59e0b;
}

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

.quote-text-index {
  color: #e2e8f0;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.quote-author-index {
  color: #f59e0b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  font-weight: 600;
  display: block;
}

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

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

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

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

.posts-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.post-image-index {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.post-title-index {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.post-description-index {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.post-link-index {
  color: #f59e0b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.post-link-index:hover {
  color: #fcd34d;
  transform: translateX(2px);
}

.posts-footer-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.posts-footer-index .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

.faq-subtitle-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question-index {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.faq-answer-index {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #f59e0b 0%, #f59e0b 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  color: #000000;
  max-width: 700px;
  width: 100%;
}

.cta-title-index {
  color: #000000;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.cta-text-index {
  color: rgba(0, 0, 0, 0.8);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-index {
  background: #000000;
  color: #f59e0b;
  padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button-index:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #fcd34d;
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #0a0f1e;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.65rem clamp(1rem, 1.5vw, 1.25rem);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #f59e0b;
  color: #000000;
}

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

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

.cookie-btn-decline:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: center;
  }

  .cookie-banner-text {
    text-align: center;
    width: 100%;
  }

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

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

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

  .step-number-index {
    min-width: auto;
    font-size: 2.5rem;
  }

  .testimonials-grid-index,
  .posts-cards-index,
  .features-cards-index {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card-index,
  .post-card-index,
  .feature-card-index {
    width: 100%;
    max-width: 400px;
  }
}

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

  .hero-buttons-index .btn {
    width: 100%;
  }

  .faq-items-index {
    gap: 1rem;
  }

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

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

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

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

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

.footer-contact {
  max-width: 400px;
}

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

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

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.625rem, 1.5vw, 1rem);
  }
}

@media (max-width: 767px) {
  .footer-content {
    gap: clamp(2rem, 4vw, 2.5rem);
  }

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

  .footer-nav-list li,
  .footer-legal-list li {
    flex: 0 0 auto;
  }

  .footer-nav-list a,
  .footer-legal-list a {
    padding: 0.25rem 0;
  }
}
    

.category-page-dutch-listening {
  background: #0a0f1e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

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

.hero-section-dutch-listening {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-dutch-listening {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  text-align: center;
}

.hero-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-subtitle-dutch-listening {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 0;
}

.hero-description-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hero-visual-dutch-listening {
  flex: 1 1 100%;
  width: 100%;
  height: 300px;
  position: relative;
}

.hero-accent-dutch-listening {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.btn-primary {
  background: #f59e0b;
  color: #000000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #f59e0b;
  border-color: #f59e0b;
}

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #fcd34d;
  color: #fcd34d;
}

.btn-small {
  padding: clamp(0.5rem, 0.8vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.875rem);
}

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

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

.posts-header-dutch-listening {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.posts-subtitle-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.card-dutch-listening {
  flex: 1 1 clamp(280px, 45%, 400px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-dutch-listening:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}

.card-dutch-listening img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin: -clamp(1.5rem, 3vw, 2rem) -clamp(1.5rem, 3vw, 2rem) 0 -clamp(1.5rem, 3vw, 2rem);
}

.card-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-description-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.card-meta-dutch-listening {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.875rem);
  color: #64748b;
  padding: 1rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.card-reading-time-dutch-listening,
.card-level-dutch-listening,
.card-date-dutch-listening {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.card-reading-time-dutch-listening i,
.card-level-dutch-listening i,
.card-date-dutch-listening i {
  color: #f59e0b;
}

.insight-section-dutch-listening {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-dutch-listening {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.insight-quote-block-dutch-listening {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.insight-quote-text-dutch-listening {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.insight-attribution-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #94a3b8;
  margin-bottom: 0;
}

.insight-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.insight-text-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.checklist-content-dutch-listening {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.checklist-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
}

.checklist-intro-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checklist-items-dutch-listening {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.checklist-item-dutch-listening {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.checklist-icon-dutch-listening {
  flex-shrink: 0;
  width: clamp(2rem, 4vw, 2.5rem);
  height: clamp(2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  margin-top: 0.25rem;
}

.checklist-text-dutch-listening {
  flex: 1;
}

.checklist-item-title-dutch-listening {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0a0f1e;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.checklist-item-desc-dutch-listening {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

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

  .hero-visual-dutch-listening {
    height: 250px;
  }

  .posts-grid-dutch-listening {
    flex-direction: column;
  }

  .card-dutch-listening {
    flex: 1 1 100%;
  }

  .insight-content-dutch-listening {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-dutch-listening {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .card-dutch-listening {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (min-width: 1024px) {
  .hero-content-dutch-listening {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .hero-text-dutch-listening {
    flex: 1 1 50%;
    text-align: left;
    max-width: none;
  }

  .hero-visual-dutch-listening {
    flex: 1 1 50%;
    height: 400px;
  }

  .posts-grid-dutch-listening {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .card-dutch-listening {
    flex: 1 1 calc(25% - clamp(1rem, 3vw, 1.5rem));
    max-width: 350px;
  }
}

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

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

.main-podcasts-nederlands-oefenen {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

.breadcrumbs-podcasts-nederlands-oefenen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  flex-wrap: wrap;
}

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

.breadcrumbs-podcasts-nederlands-oefenen a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs-podcasts-nederlands-oefenen span {
  color: var(--color-text-muted);
}

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

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

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

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

.hero-title-podcasts-nederlands-oefenen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-podcasts-nederlands-oefenen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-podcasts-nederlands-oefenen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
}

.meta-item-podcasts-nederlands-oefenen {
  color: var(--color-text-secondary);
}

.meta-divider-podcasts-nederlands-oefenen {
  color: var(--color-text-muted);
}

.hero-image-podcasts-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-block-podcasts-nederlands-oefenen,
  .hero-image-block-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-podcasts-nederlands-oefenen {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-highlights-podcasts-nederlands-oefenen {
  flex: 1 1 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-card-podcasts-nederlands-oefenen {
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  text-align: center;
}

.highlight-number-podcasts-nederlands-oefenen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-card-podcasts-nederlands-oefenen p {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

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

  .intro-text-podcasts-nederlands-oefenen,
  .intro-highlights-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.methods-text-podcasts-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-podcasts-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-paragraph-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.methods-image-img-podcasts-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .methods-content-podcasts-nederlands-oefenen {
    flex-direction: column;
  }

  .methods-text-podcasts-nederlands-oefenen,
  .methods-image-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.podcasts-content-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.podcasts-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.podcast-card-podcasts-nederlands-oefenen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.podcast-card-podcasts-nederlands-oefenen:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.podcast-level-podcasts-nederlands-oefenen {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.9rem);
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
  align-self: flex-start;
}

.podcast-name-podcasts-nederlands-oefenen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
}

.podcast-description-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.podcast-features-podcasts-nederlands-oefenen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item-podcasts-nederlands-oefenen {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.feature-item-podcasts-nederlands-oefenen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

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

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

.strategy-image-podcasts-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-text-podcasts-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-paragraph-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.strategy-steps-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-box-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-podcasts-nederlands-oefenen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: clamp(3rem, 5vw, 4rem);
  text-align: center;
}

.step-content-podcasts-nederlands-oefenen {
  flex: 1;
}

.step-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.step-text-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.strategy-image-img-podcasts-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .strategy-content-podcasts-nederlands-oefenen {
    flex-direction: column-reverse;
  }

  .strategy-image-podcasts-nederlands-oefenen,
  .strategy-text-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.advanced-content-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.advanced-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advanced-intro-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.techniques-wrapper-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.technique-item-podcasts-nederlands-oefenen {
  flex: 1 1 260px;
  max-width: 340px;
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.technique-name-podcasts-nederlands-oefenen {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.technique-description-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.advanced-image-podcasts-nederlands-oefenen {
  width: 100%;
  display: flex;
  justify-content: center;
}

.advanced-image-img-podcasts-nederlands-oefenen {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.featured-quote-podcasts-nederlands-oefenen {
  border-left: 4px solid var(--color-primary);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: 0;
  margin-bottom: 0;
  text-align: left;
}

.quote-text-podcasts-nederlands-oefenen {
  font-size: clamp(1.1rem, 1.8vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 0;
}

.quote-author-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

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

.tips-content-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.tips-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-list-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.tip-item-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.tip-icon-podcasts-nederlands-oefenen {
  flex-shrink: 0;
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.tip-body-podcasts-nederlands-oefenen {
  flex: 1;
  padding-top: clamp(0.25rem, 0.5vw, 0.5rem);
}

.tip-heading-podcasts-nederlands-oefenen {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.tip-text-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-content-podcasts-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-podcasts-nederlands-oefenen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.conclusion-cta-podcasts-nederlands-oefenen {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-podcasts-nederlands-oefenen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #000000;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button-podcasts-nederlands-oefenen:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

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

.related-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-podcasts-nederlands-oefenen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-podcasts-nederlands-oefenen:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

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

.related-card-image-podcasts-nederlands-oefenen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-podcasts-nederlands-oefenen {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-podcasts-nederlands-oefenen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.related-card-link-podcasts-nederlands-oefenen:hover {
  color: var(--color-primary-light);
}

.disclaimer-section-podcasts-nederlands-oefenen {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-podcasts-nederlands-oefenen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.disclaimer-title-podcasts-nederlands-oefenen {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.disclaimer-text-podcasts-nederlands-oefenen {
  font-size: clamp(0.85rem, 0.95vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-meta-podcasts-nederlands-oefenen {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-divider-podcasts-nederlands-oefenen {
    display: none;
  }
}

@media (max-width: 640px) {
  .podcasts-grid-podcasts-nederlands-oefenen {
    flex-direction: column;
    align-items: center;
  }

  .podcast-card-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-wrapper-podcasts-nederlands-oefenen {
    flex-direction: column;
    align-items: center;
  }

  .technique-item-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-list-podcasts-nederlands-oefenen {
    gap: 1.25rem;
  }

  .related-cards-podcasts-nederlands-oefenen {
    flex-direction: column;
    align-items: center;
  }

  .related-card-podcasts-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-effectief-luisteren-nederlands {
  background: #f8fafc;
  color: #0f172a;
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

.breadcrumbs-effectief-luisteren-nederlands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-effectief-luisteren-nederlands a {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
}

.breadcrumbs-effectief-luisteren-nederlands a:hover {
  color: #f59e0b;
}

.breadcrumbs-effectief-luisteren-nederlands span {
  color: #64748b;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

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

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

.hero-badge-effectief-luisteren-nederlands {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title-effectief-luisteren-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.hero-subtitle-effectief-luisteren-nederlands {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-effectief-luisteren-nederlands {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-effectief-luisteren-nederlands {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.meta-separator-effectief-luisteren-nederlands {
  color: #64748b;
}

.hero-image-block-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 45%;
}

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

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

  .hero-text-block-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-block-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-effectief-luisteren-nederlands {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

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

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

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

.intro-text-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
}

.intro-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.intro-text-body-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 45%;
}

.intro-image-effectief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .intro-text-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.methods-header-effectief-luisteren-nederlands {
  text-align: center;
}

.methods-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.methods-subtitle-effectief-luisteren-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
}

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

.method-card-effectief-luisteren-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.method-card-effectief-luisteren-nederlands:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.card-number-effectief-luisteren-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: var(--font-heading);
  line-height: 1;
}

.card-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.card-description-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.card-list-effectief-luisteren-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-list-effectief-luisteren-nederlands li {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  padding-left: 1.5rem;
  position: relative;
  margin: 0;
}

.card-list-effectief-luisteren-nederlands li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

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

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

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

.practice-text-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
}

.practice-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.practice-text-body-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.practice-steps-effectief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-effectief-luisteren-nederlands {
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem;
  border-radius: 8px;
}

.step-label-effectief-luisteren-nederlands {
  color: #f59e0b;
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
  display: block;
}

.step-text-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.practice-conclusion-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.practice-image-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 45%;
}

.practice-image-effectief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .practice-text-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.resources-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.resources-intro-effectief-luisteren-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}

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

.resource-card-effectief-luisteren-nederlands {
  flex: 1 1 240px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all var(--transition-base);
}

.resource-card-effectief-luisteren-nederlands:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.resource-icon-effectief-luisteren-nederlands {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
}

.resource-name-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.resource-info-effectief-luisteren-nederlands {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.progress-text-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
}

.progress-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.progress-intro-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.progress-timeline-effectief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-point-effectief-luisteren-nederlands {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  padding: 1.25rem;
  border-radius: 8px;
}

.timeline-period-effectief-luisteren-nederlands {
  color: #3b82f6;
  font-weight: 700;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0.5rem;
}

.timeline-description-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.progress-image-effectief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 45%;
}

.progress-image-effectief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .progress-content-effectief-luisteren-nederlands {
    flex-direction: column;
  }

  .progress-text-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .progress-image-effectief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.common-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

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

.mistake-card-effectief-luisteren-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ef4444;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.mistake-card-effectief-luisteren-nederlands:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
  transform: translateY(-4px);
}

.mistake-name-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.mistake-text-effectief-luisteren-nederlands {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.common-image-effectief-luisteren-nederlands {
  margin-top: 2rem;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

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

.disclaimer-content-effectief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
}

.disclaimer-box-effectief-luisteren-nederlands {
  background: #f0f9ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-effectief-luisteren-nederlands {
  color: #1e40af;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  font-family: var(--font-heading);
}

.disclaimer-text-effectief-luisteren-nederlands {
  color: #1e3a8a;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.related-header-effectief-luisteren-nederlands {
  text-align: center;
}

.related-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.related-subtitle-effectief-luisteren-nederlands {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin: 0;
}

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

.related-card-effectief-luisteren-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-effectief-luisteren-nederlands:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.related-card-image-effectief-luisteren-nederlands {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-title-effectief-luisteren-nederlands {
  color: #0f172a;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  margin: 0;
  font-family: var(--font-heading);
}

.related-card-text-effectief-luisteren-nederlands {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  margin: 0;
}

.related-card-link-effectief-luisteren-nederlands {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  display: inline-block;
  margin-top: 0.5rem;
  transition: color var(--transition-base);
}

.related-card-link-effectief-luisteren-nederlands:hover {
  color: #fcd34d;
}

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

@media (max-width: 640px) {
  .hero-title-effectief-luisteren-nederlands {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .intro-title-effectief-luisteren-nederlands,
  .methods-title-effectief-luisteren-nederlands,
  .practice-title-effectief-luisteren-nederlands,
  .progress-title-effectief-luisteren-nederlands,
  .common-title-effectief-luisteren-nederlands,
  .resources-title-effectief-luisteren-nederlands,
  .related-title-effectief-luisteren-nederlands {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
  }
}

.main-conversatie-nederlands-oefenen {
  width: 100%;
  background: #0a0f1e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.hero-section-conversatie-nederlands-oefenen {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-conversatie-nederlands-oefenen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.breadcrumbs-conversatie-nederlands-oefenen a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}

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

.breadcrumbs-conversatie-nederlands-oefenen span {
  color: #64748b;
}

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

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

.hero-meta-conversatie-nederlands-oefenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-conversatie-nederlands-oefenen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-conversatie-nederlands-oefenen i {
  color: #f59e0b;
}

.hero-img-conversatie-nederlands-oefenen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

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

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

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

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

.intro-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-conversatie-nederlands-oefenen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.benefits-section-conversatie-nederlands-oefenen {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.benefits-text-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.benefits-paragraph-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.benefits-list-conversatie-nederlands-oefenen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.list-item-conversatie-nederlands-oefenen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
  font-size: 1.25em;
}

.benefits-img-conversatie-nederlands-oefenen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .benefits-content-conversatie-nederlands-oefenen {
    flex-direction: column;
  }

  .benefits-text-conversatie-nederlands-oefenen,
  .benefits-image-conversatie-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: 'Playfair Display', serif;
}

.step-wrapper-conversatie-nederlands-oefenen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-reverse-conversatie-nederlands-oefenen {
  flex-direction: row-reverse;
}

.step-column-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-image-conversatie-nederlands-oefenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-number-conversatie-nederlands-oefenen {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.step-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.step-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
}

.step-img-conversatie-nederlands-oefenen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .step-wrapper-conversatie-nederlands-oefenen,
  .step-reverse-conversatie-nederlands-oefenen {
    flex-direction: column;
  }

  .step-column-conversatie-nederlands-oefenen,
  .step-image-conversatie-nederlands-oefenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-conversatie-nederlands-oefenen {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.techniques-content-conversatie-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.techniques-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: 'Playfair Display', serif;
}

.technique-card-conversatie-nederlands-oefenen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 200ms ease-in-out;
}

.technique-card-conversatie-nederlands-oefenen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f59e0b;
  transform: translateY(-4px);
}

.technique-card-title-conversatie-nederlands-oefenen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.technique-card-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.quote-section-conversatie-nederlands-oefenen {
  background: linear-gradient(135deg, #0a0f1e 0%, #111d2f 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-conversatie-nederlands-oefenen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-conversatie-nederlands-oefenen {
  border-left: 4px solid #f59e0b;
  border-right: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(245, 158, 11, 0.05);
  border-radius: 8px;
  margin: 0;
}

.quote-text-conversatie-nederlands-oefenen {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.quote-author-conversatie-nederlands-oefenen {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #f59e0b;
  font-style: normal;
  font-weight: 600;
}

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

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

.conclusion-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.cta-box-conversatie-nederlands-oefenen {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.6;
}

.cta-button-conversatie-nederlands-oefenen {
  background: #f59e0b;
  color: #000000;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 200ms ease-in-out;
  display: inline-block;
  text-decoration: none;
}

.cta-button-conversatie-nederlands-oefenen:hover {
  background: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.related-section-conversatie-nederlands-oefenen {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-conversatie-nederlands-oefenen {
  text-align: center;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.related-card-conversatie-nederlands-oefenen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-conversatie-nederlands-oefenen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f59e0b;
  transform: translateY(-4px);
}

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

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

.related-card-body-conversatie-nederlands-oefenen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-grow: 1;
}

.related-card-title-conversatie-nederlands-oefenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-conversatie-nederlands-oefenen {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  transition: color 200ms ease-in-out;
  margin-top: auto;
}

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

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

@media (min-width: 768px) and (max-width: 1024px) {
  .related-card-conversatie-nederlands-oefenen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.disclaimer-section-conversatie-nederlands-oefenen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-conversatie-nederlands-oefenen {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-conversatie-nederlands-oefenen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-conversatie-nederlands-oefenen {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

@media (max-width: 640px) {
  .hero-section-conversatie-nederlands-oefenen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .intro-section-conversatie-nederlands-oefenen,
  .benefits-section-conversatie-nederlands-oefenen,
  .practical-section-conversatie-nederlands-oefenen,
  .techniques-section-conversatie-nederlands-oefenen,
  .quote-section-conversatie-nederlands-oefenen,
  .conclusion-section-conversatie-nederlands-oefenen,
  .related-section-conversatie-nederlands-oefenen,
  .disclaimer-section-conversatie-nederlands-oefenen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.main-geavanceerde-luistertechnieken {
  background: #f8fafc;
  color: #1e293b;
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

.breadcrumbs-geavanceerde-luistertechnieken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-geavanceerde-luistertechnieken a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}

.breadcrumbs-geavanceerde-luistertechnieken a:hover {
  color: #f59e0b;
}

.breadcrumbs-geavanceerde-luistertechnieken span {
  color: #64748b;
}

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

.hero-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-level-badge-geavanceerde-luistertechnieken {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

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

.hero-subtitle-geavanceerde-luistertechnieken {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-meta-geavanceerde-luistertechnieken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-geavanceerde-luistertechnieken {
  color: #94a3b8;
}

.meta-separator-geavanceerde-luistertechnieken {
  color: #64748b;
}

.hero-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

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

  .hero-text-geavanceerde-luistertechnieken,
  .hero-image-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.intro-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

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

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

.technique-section-geavanceerde-luistertechnieken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.technique-content-geavanceerde-luistertechnieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.technique-paragraph-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.technique-list-geavanceerde-luistertechnieken {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.technique-list-geavanceerde-luistertechnieken li {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.technique-list-geavanceerde-luistertechnieken li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}

.technique-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .technique-content-geavanceerde-luistertechnieken {
    flex-direction: column;
  }

  .technique-text-geavanceerde-luistertechnieken,
  .technique-image-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.accent-content-geavanceerde-luistertechnieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.accent-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.accent-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.accent-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.accent-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.accent-paragraph-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .accent-content-geavanceerde-luistertechnieken {
    flex-direction: column;
  }

  .accent-image-geavanceerde-luistertechnieken,
  .accent-text-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.speed-section-geavanceerde-luistertechnieken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.speed-content-geavanceerde-luistertechnieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.speed-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.speed-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.speed-paragraph-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.speed-highlight-geavanceerde-luistertechnieken {
  background: #e0f2fe;
  border-left: 4px solid #0284c7;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.speed-highlight-text-geavanceerde-luistertechnieken {
  color: #0c4a6e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.speed-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.speed-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .speed-content-geavanceerde-luistertechnieken {
    flex-direction: column;
  }

  .speed-text-geavanceerde-luistertechnieken,
  .speed-image-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practice-header-geavanceerde-luistertechnieken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.practice-subtitle-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.practice-cards-geavanceerde-luistertechnieken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-geavanceerde-luistertechnieken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 200ms ease-in-out;
}

.practice-card-geavanceerde-luistertechnieken:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-number-geavanceerde-luistertechnieken {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.card-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-heading);
}

.card-text-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .practice-card-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.resources-content-geavanceerde-luistertechnieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.resources-text-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.resources-paragraph-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.resources-image-geavanceerde-luistertechnieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .resources-content-geavanceerde-luistertechnieken {
    flex-direction: column;
  }

  .resources-text-geavanceerde-luistertechnieken,
  .resources-image-geavanceerde-luistertechnieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-geavanceerde-luistertechnieken {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.conclusion-text-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-geavanceerde-luistertechnieken {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.conclusion-highlight-text-geavanceerde-luistertechnieken {
  color: #78350f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

.related-section-geavanceerde-luistertechnieken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.related-subtitle-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

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

.related-card-geavanceerde-luistertechnieken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 200ms ease-in-out;
}

.related-card-geavanceerde-luistertechnieken:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.related-card-image-geavanceerde-luistertechnieken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-geavanceerde-luistertechnieken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease-in-out;
}

.related-card-geavanceerde-luistertechnieken:hover .related-card-img-geavanceerde-luistertechnieken {
  transform: scale(1.05);
}

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

.related-card-title-geavanceerde-luistertechnieken {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-heading);
}

.related-card-text-geavanceerde-luistertechnieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

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

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

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

.disclaimer-content-geavanceerde-luistertechnieken {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-geavanceerde-luistertechnieken {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-geavanceerde-luistertechnieken {
  color: #1e40af;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
  font-family: var(--font-heading);
}

.disclaimer-text-geavanceerde-luistertechnieken {
  color: #1e3a8a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.75;
  margin: 0;
}

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

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

@media (max-width: 640px) {
  .hero-title-geavanceerde-luistertechnieken {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .intro-title-geavanceerde-luistertechnieken,
  .technique-title-geavanceerde-luistertechnieken,
  .accent-title-geavanceerde-luistertechnieken,
  .speed-title-geavanceerde-luistertechnieken,
  .practice-title-geavanceerde-luistertechnieken,
  .resources-title-geavanceerde-luistertechnieken,
  .conclusion-title-geavanceerde-luistertechnieken,
  .related-title-geavanceerde-luistertechnieken {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
}

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

.dutch-learning-journey-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  max-width: 700px;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 2rem auto 0;
}

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

.stat-item-about {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

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

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  margin-top: 0.5rem;
}

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

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

.section-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundation-text-about {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

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

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

.methodology-text-about {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.process-steps-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.process-step-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #0a0f1e;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

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

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card-about:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
}

.card-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #f59e0b;
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
}

.featured-quote-about {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 700px;
  margin: 2rem auto 0;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  display: block;
  font-style: normal;
}

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

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

.impact-text-about {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.impact-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: #3b82f6;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #1e293b;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.7;
}

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

  .stat-item-about {
    flex: 1 1 120px;
  }

  .process-steps-about {
    flex-direction: column;
    align-items: center;
  }

  .process-step-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .expertise-cards-about {
    flex-direction: column;
    align-items: center;
  }

  .expertise-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-stats-about {
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 180px;
  }

  .process-steps-about {
    gap: 1.5rem;
  }

  .process-step-about {
    flex: 1 1 45%;
  }

  .expertise-cards-about {
    gap: 1.5rem;
  }

  .expertise-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1025px) {
  .process-step-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.faq-hero-subtitle {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-container {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: left;
  transition: all var(--transition-base);
}

.faq-question:hover .faq-question-text {
  color: var(--color-primary);
}

.faq-question-text {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: var(--line-height-normal);
  flex: 1;
  transition: color var(--transition-base);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
  .faq-container {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-question {
    padding: var(--space-lg);
  }

  .faq-answer-text {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.faq-cta-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.faq-cta-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.faq-cta-button:hover {
  background-color: transparent;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

.services-hero {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

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

.services-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .services-hero {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 6rem 2rem;
  }
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-content {
    padding: 5rem 1.5rem;
  }
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.1);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-highlights li {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.service-card-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 600;
}

.services-approach {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.approach-content {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-approach {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-approach {
    padding: 5rem 1.5rem;
  }
}

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

.approach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.approach-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.approach-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.services-cta {
  background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  padding: 3rem 1.5rem;
  overflow: hidden;
  position: relative;
}

.services-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.cta-description {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem 1.5rem;
  }
}

.legal-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
}

.legal-portal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-portal .legal-portal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-portal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-portal .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-portal section {
  margin-bottom: var(--space-3xl);
}

.legal-portal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-2xl);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
}

.legal-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-portal ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-portal .contact-section {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-portal .contact-section h2 {
  margin-top: 0;
}

.legal-portal .contact-section p {
  margin-bottom: var(--space-sm);
}

.legal-portal .contact-section strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-portal {
    padding: var(--space-xl) var(--space-lg);
  }

  .legal-portal .container {
    padding: 0 var(--space-lg);
  }

  .legal-portal h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-portal section {
    margin-bottom: var(--space-3xl);
  }

  .legal-portal .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-portal {
    padding: var(--space-2xl) var(--space-lg);
  }

  .legal-portal .container {
    padding: 0;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

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

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin: 0 auto;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleInIcon 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: var(--line-height-tight);
  margin: 0;
}

.thank-you-lead {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: var(--line-height-normal);
  margin: 0;
}

.thank-you-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
}

.thank-you-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

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

@keyframes scaleInIcon {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-xl) var(--space-md);
  }

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

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

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

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-you-content {
    gap: var(--space-2xl);
  }

  .success-icon svg {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
  }

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

  .thank-you-content {
    gap: var(--space-3xl);
  }

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

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0;
  }

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

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  position: relative;
  z-index: 3;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 650px;
  margin: 0 auto;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  width: 100%;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(245, 158, 11, 0.3);
}

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

.error-illustration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.floating-element {
  position: absolute;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

.floating-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

@media (max-width: 640px) {
  .error-section {
    padding: var(--space-lg) var(--space-sm);
    min-height: 100vh;
  }

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

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

  .floating-element {
    display: none;
  }

  .error-decoration {
    width: clamp(150px, 45vw, 300px);
    height: clamp(150px, 45vw, 300px);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
  }

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

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

  .floating-element {
    opacity: 0.08;
  }
}

@media (min-width: 1025px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

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

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .floating-element {
    opacity: 0.12;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

.contact-page-connect {
  background-color: var(--color-bg-primary);
  width: 100%;
}

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

.contact-page-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-page-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-page-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-page-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  width: 100%;
}

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

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

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page-form-privacy {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-page-submit {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  width: 100%;
  margin-top: var(--space-md);
}

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

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

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

.contact-page-info-box {
  background-color: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-page-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-page-info-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-page-info-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-page-info-extra {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-info-extra-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-page-info-extra-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-page-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-page-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  align-items: center;
}

.contact-page-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.contact-page-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

.contact-page-cta-button {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 1rem 2.5rem;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
}

.contact-page-cta-button:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.contact-page-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-2xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

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

  .contact-page-submit {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-3xl);
    align-items: stretch;
  }

  .contact-page-form-wrapper {
    flex: 0 1 auto;
    min-width: 400px;
  }

  .contact-page-info-wrapper {
    flex: 0 1 auto;
    min-width: 350px;
  }

  .contact-page-info-box {
    height: 100%;
  }

  .contact-page-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-page-grid {
    flex-direction: column;
  }

  .contact-page-form-wrapper {
    flex: 1 1 100%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-page-info-box {
    padding: var(--space-xl);
  }

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

  .contact-page-submit {
    padding: 0.875rem 1.5rem;
  }
}