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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #94a3b8;
  --color-text-dark-muted: #64748b;
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #9ca3af;
  
  
  --color-primary: #ef6b4b;
  --color-primary-hover: #e55a3a;
  --color-secondary: #4f9ff0;
  --color-secondary-light: #a8d5ff;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  
  --font-primary: 'Lato', 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-full: 9999px;
  
  
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --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;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-light-primary);
  background: var(--color-bg-secondary);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  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);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-3xl) 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-dark-primary);
}

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

.section-dark a {
  color: var(--color-secondary-light);
}

.section-dark a:hover {
  color: var(--color-secondary);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: var(--space-3xl) 0;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-light-primary);
}

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

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

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

.section-light-alt {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: var(--space-3xl) 0;
}

.section-light-alt h1,
.section-light-alt h2,
.section-light-alt h3,
.section-light-alt h4,
.section-light-alt h5,
.section-light-alt h6 {
  color: var(--color-text-light-primary);
}

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

.section-dark-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark-primary);
  padding: var(--space-3xl) 0;
}

.section-dark-accent h1,
.section-dark-accent h2,
.section-dark-accent h3,
.section-dark-accent h4,
.section-dark-accent h5,
.section-dark-accent h6 {
  color: var(--color-text-dark-primary);
}

.section-dark-accent p {
  color: var(--color-text-dark-secondary);
}

.section-dark-accent a {
  color: var(--color-secondary-light);
}

.section-dark-accent a:hover {
  color: var(--color-secondary);
}

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

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

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

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

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.section-dark .card,
.section-dark-accent .card {
  background: var(--color-bg-card-dark);
  color: var(--color-text-dark-primary);
}

.section-dark .card h3,
.section-dark-accent .card h3 {
  color: var(--color-text-dark-primary);
}

.section-dark .card p,
.section-dark-accent .card p {
  color: var(--color-text-dark-secondary);
}

.section-light .card,
.section-light-alt .card {
  background: var(--color-bg-card-light);
  color: var(--color-text-light-primary);
}

.section-light .card h3,
.section-light-alt .card h3 {
  color: var(--color-text-light-primary);
}

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

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 0 3px rgba(239, 107, 75, 0.1);
}

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

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

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

.section-dark .btn-primary:hover {
  background: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(79, 159, 240, 0.2);
}

.section-dark .btn-secondary {
  color: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
}

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-primary);
  color: #ffffff;
}

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

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

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

.section-dark .badge {
  background: var(--color-secondary);
  color: #ffffff;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  width: 100%;
}

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

.section-dark input,
.section-dark textarea,
.section-dark select,
.section-dark-accent input,
.section-dark-accent textarea,
.section-dark-accent select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text-dark-primary);
}

.section-dark input:focus,
.section-dark textarea:focus,
.section-dark select:focus,
.section-dark-accent input:focus,
.section-dark-accent textarea:focus,
.section-dark-accent select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(79, 159, 240, 0.2);
}

.section-dark input::placeholder,
.section-dark textarea::placeholder,
.section-dark-accent input::placeholder,
.section-dark-accent textarea::placeholder {
  color: var(--color-text-dark-muted);
}

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

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

li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

code {
  font-family: 'Courier New', monospace;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

.section-dark code {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary-light);
}

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

.section-dark blockquote {
  border-left-color: var(--color-secondary);
  color: var(--color-text-dark-secondary);
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

.section-dark hr {
  background: rgba(255, 255, 255, 0.1);
}

.accent-underline {
  position: relative;
  display: inline-block;
}

.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(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;
  }
}

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

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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

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

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

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

.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); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.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); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.px-xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.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); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.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); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

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

.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-full { border-radius: var(--radius-full); }

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

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden { display: none; }
.invisible { visibility: hidden; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.max-w-full { max-width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
  
  .section-dark,
  .section-light,
  .section-light-alt,
  .section-dark-accent {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  .btn {
    width: 100%;
  }
  
  .flex,
  .flex-between {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .section-dark,
  .section-light,
  .section-light-alt,
  .section-dark-accent {
    padding: var(--space-xl) 0;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.header-taal-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
}

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

.header-taal-hub-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.header-taal-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.header-taal-hub-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.header-taal-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-taal-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(239, 107, 75, 0.2);
}

.header-taal-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  transition: all 0.3s ease;
}

.header-taal-hub-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-dark-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-taal-hub-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

.header-taal-hub-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark-accent);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  padding-top: 80px;
}

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

.header-taal-hub-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 3vw, 2rem);
  z-index: 102;
}

.header-taal-hub-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.header-taal-hub-mobile-close:active {
  color: var(--color-primary);
}

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

.header-taal-hub-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease;
}

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

.header-taal-hub-mobile-cta {
  margin: 2rem clamp(1rem, 3vw, 2rem) 3rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

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

@media (min-width: 768px) {
  .header-taal-hub-container {
    height: 75px;
  }

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

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

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

  .header-taal-hub-cta-button {
    display: block;
  }

  .header-taal-hub-logo-text {
    font-size: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .header-taal-hub-container {
    height: 80px;
  }

  .header-taal-hub-logo-text {
    font-size: 1.5rem;
  }

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

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

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

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

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

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

.hero-title-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.btn-lg-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(203, 213, 225, 0.2);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #4f9ff0;
}

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

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

.hero-img-index {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-stats-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.partners-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.partners-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.partners-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.partners-logos-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  align-items: center;
}

.partner-badge-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  flex: 1 1 150px;
  min-width: 140px;
}

.partner-badge-index i {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #ef6b4b;
}

.badge-text-index {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 640px) {
  .partners-logos-index {
    flex-direction: column;
  }

  .partner-badge-index {
    flex: 1 1 100%;
  }
}

.benefits-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
}

.benefits-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.benefit-item-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
}

.benefit-item-index i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-image-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-img-index {
  width: 100%;
  max-width: 450px;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.statistics-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.statistics-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.stat-card-index {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 159, 240, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-card-index:hover {
  background: rgba(79, 159, 240, 0.1);
  border-color: rgba(79, 159, 240, 0.4);
  transform: translateY(-4px);
}

.stat-number-large-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #4f9ff0;
}

.stat-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

.blog-preview-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.blog-preview-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(239, 107, 75, 0.1);
  color: #ef6b4b;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-preview-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.blog-preview-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.card-image-index {
  width: 100%;
  height: auto;
  max-height: 220px;
  overflow: hidden;
}

.card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

.card-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-link-index {
  color: #ef6b4b;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: color 0.3s ease;
  text-decoration: none;
}

.card-link-index:hover {
  color: #e55a3a;
  text-decoration: underline;
}

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

.btn-index {
  padding: clamp(0.75rem, 1.5vw, 0.9rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

@media (max-width: 768px) {
  .featured-cards-index {
    flex-direction: column;
    align-items: center;
  }

  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.how-it-works-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-index {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 300px;
  display: flex;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ef6b4b;
  flex-shrink: 0;
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

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

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

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

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

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

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

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

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  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: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(203, 213, 225, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(79, 159, 240, 0.1);
  border-color: rgba(79, 159, 240, 0.3);
  transform: translateY(-4px);
}

.testimonial-quote-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #e2e8f0;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  padding-top: 1rem;
}

.author-name-index {
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.author-detail-index {
  color: #94a3b8;
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .testimonials-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.features-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

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

.feature-card-index:hover {
  background: #f1f5f9;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.feature-icon-index {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #ef6b4b;
  display: flex;
  justify-content: center;
}

.feature-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.feature-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .feature-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2940 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 159, 240, 0.2);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #ffffff;
  margin: 0;
}

.cta-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.cta-btn-index {
  align-self: center;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept-index {
  background: #ef6b4b;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #e55a3a;
}

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

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

@media (max-width: 640px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .cookie-banner-text-index {
    flex: 1 1 100%;
    min-width: auto;
    order: 1;
  }

  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    order: 2;
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

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

a {
  transition: color 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: #ef6b4b;
  color: #ffffff;
  border-color: #ef6b4b;
}

.btn-primary:hover {
  background: #e55a3a;
  border-color: #e55a3a;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-index {
    flex-direction: column;
  }
}

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  color: var(--color-text-dark-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, 6vw, 4rem);
}

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

.footer-about h3,
.footer-nav-section h3,
.footer-contact h3,
.footer-legal-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-link:hover {
  color: var(--color-text-dark-primary);
  transform: translateX(2px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-info p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

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

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

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

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

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3.5rem, 6vw, 5rem);
  }

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

.category-page-dutch-reading-skills {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-title-category {
  color: #0f172a;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-subtitle-category {
  color: #475569;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.hero-description-category {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
  max-width: 650px;
}

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

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

.posts-title-category {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

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

.card-dutch-reading-skills {
  flex: 1 1 clamp(280px, 100%, 380px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-dutch-reading-skills:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

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

.card-body-category {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex-grow: 1;
}

.card-title-category {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

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

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.card-time-category,
.card-level-category,
.card-date-category {
  color: #9ca3af;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-time-category i,
.card-level-category i,
.card-date-category i {
  color: #ef6b4b;
  font-size: 0.875rem;
}

.card-link-category {
  color: #ef6b4b;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.card-link-category:hover {
  color: #e55a3a;
  text-decoration: underline;
}

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

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

.tips-title-category {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

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

.tip-card-category {
  flex: 1 1 clamp(240px, 100%, 280px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tip-card-category:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tip-icon-category {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border-radius: 50%;
  color: #f59e0b;
  font-size: 1.75rem;
}

.tip-name-category {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

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

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

.faq-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-category {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.faq-item-category {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-category[open] {
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.faq-question-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  user-select: none;
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  background: #f8fafc;
  transition: background 0.3s ease;
  list-style: none;
}

.faq-item-category[open] .faq-question-category {
  background: #ffffff;
}

.faq-question-category:hover {
  background: #f1f5f9;
}

.faq-item-category[open] .faq-question-category:hover {
  background: #f8fafc;
}

.faq-question-category::marker {
  display: none;
}

.faq-question-category::after {
  content: '';
  display: inline-block;
  font-size: 0.75rem;
  color: #ef6b4b;
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-item-category[open] .faq-question-category::after {
  transform: rotate(180deg);
}

.faq-answer-category {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.75;
  background: #ffffff;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .hero-title-category {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .posts-title-category,
  .tips-title-category,
  .faq-title-category {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .card-dutch-reading-skills {
    flex: 1 1 clamp(280px, 100%, 350px);
  }

  .tip-card-category {
    flex: 1 1 clamp(200px, 100%, 250px);
  }
}

@media (max-width: 768px) {
  .hero-section-category {
    padding: 2.5rem 0;
  }

  .posts-section-category,
  .tips-section-category,
  .faq-section-category {
    padding: 2.5rem 0;
  }

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

  .card-dutch-reading-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-grid-category {
    gap: 1.25rem;
  }

  .tip-card-category {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-content-category {
    max-width: 100%;
  }

  .card-meta-category {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title-category {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-subtitle-category {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  .posts-title-category,
  .tips-title-category,
  .faq-title-category {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .card-image-category {
    height: 180px;
  }

  .card-body-category {
    padding: 1rem;
  }

  .card-meta-category {
    flex-direction: column;
    gap: 0.5rem;
    border-top: none;
    padding-top: 0;
  }

  .faq-question-category {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer-category {
    padding: 0 1rem 1rem;
  }
}

.main-dagelijks-nederlands-oefenen {
  width: 100%;
  background: #ffffff;
}

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

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

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

.breadcrumbs-dagelijks-nederlands-oefenen a {
  color: #a8d5ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-dagelijks-nederlands-oefenen a:hover {
  color: #ffffff;
}

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

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

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

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

.hero-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-dagelijks-nederlands-oefenen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.meta-item-dagelijks-nederlands-oefenen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.meta-item-dagelijks-nederlands-oefenen i {
  color: #ef6b4b;
}

.hero-image-dagelijks-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-title-dagelijks-nederlands-oefenen {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-meta-dagelijks-nederlands-oefenen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

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

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

.intro-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-image-img-dagelijks-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.methods-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-content-dagelijks-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.methods-wrapper-dagelijks-nederlands-oefenen:nth-child(even) {
  flex-direction: row-reverse;
}

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

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

.methods-subtitle-dagelijks-nederlands-oefenen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-paragraph-dagelijks-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.methods-image-img-dagelijks-nederlands-oefenen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .methods-wrapper-dagelijks-nederlands-oefenen {
    flex-direction: column !important;
    gap: 1.5rem;
  }

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

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

.integration-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.integration-cards-wrapper-dagelijks-nederlands-oefenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.integration-card-dagelijks-nederlands-oefenen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 200px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.integration-card-dagelijks-nederlands-oefenen:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #ef6b4b;
}

.card-header-dagelijks-nederlands-oefenen {
  margin-bottom: 1rem;
  border-bottom: 2px solid #ef6b4b;
  padding-bottom: 0.75rem;
}

.card-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-dagelijks-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .integration-card-dagelijks-nederlands-oefenen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .integration-card-dagelijks-nederlands-oefenen {
    flex: 1 1 100%;
  }
}

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

.tips-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-quote-dagelijks-nederlands-oefenen {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ef6b4b;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-dagelijks-nederlands-oefenen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.7;
}

.tips-list-dagelijks-nederlands-oefenen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

.tip-number-dagelijks-nederlands-oefenen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #ef6b4b;
  flex-shrink: 0;
  line-height: 1;
}

.tip-content-dagelijks-nederlands-oefenen {
  flex: 1;
}

.tip-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 768px) {
  .tip-item-dagelijks-nederlands-oefenen {
    flex-direction: column;
    gap: 1rem;
  }

  .tip-number-dagelijks-nederlands-oefenen {
    font-size: 2rem;
  }
}

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

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

.conclusion-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-dagelijks-nederlands-oefenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.disclaimer-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-dagelijks-nederlands-oefenen {
  font-size: clamp(0.825rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
}

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

.related-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-dagelijks-nederlands-oefenen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-dagelijks-nederlands-oefenen:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #ef6b4b;
}

.related-card-image-dagelijks-nederlands-oefenen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

.related-card-title-dagelijks-nederlands-oefenen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-link-dagelijks-nederlands-oefenen {
  font-size: 0.95rem;
  color: #ef6b4b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

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

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

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

@media (max-width: 480px) {
  .hero-section-dagelijks-nederlands-oefenen {
    padding: 2rem 0;
  }

  .intro-section-dagelijks-nederlands-oefenen,
  .methods-section-dagelijks-nederlands-oefenen,
  .integration-section-dagelijks-nederlands-oefenen,
  .tips-section-dagelijks-nederlands-oefenen,
  .conclusion-section-dagelijks-nederlands-oefenen,
  .disclaimer-section-dagelijks-nederlands-oefenen,
  .related-section-dagelijks-nederlands-oefenen {
    padding: 2rem 0;
  }

  .hero-title-dagelijks-nederlands-oefenen {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .intro-title-dagelijks-nederlands-oefenen,
  .methods-title-dagelijks-nederlands-oefenen,
  .integration-title-dagelijks-nederlands-oefenen,
  .tips-title-dagelijks-nederlands-oefenen,
  .conclusion-title-dagelijks-nederlands-oefenen,
  .related-title-dagelijks-nederlands-oefenen {
    font-size: clamp(1.1rem, 3vw, 1.75rem);
  }

  .methods-subtitle-dagelijks-nederlands-oefenen {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }

  .tip-number-dagelijks-nederlands-oefenen {
    font-size: 1.5rem;
  }
}

.main-nederlandse-woorden-context {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  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;
  margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.7;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

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

.hero-section-nederlandse-woorden-context {
  background: #0a0f1e;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle-nederlandse-woorden-context {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: #a8d5ff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-nederlandse-woorden-context {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-nederlandse-woorden-context {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.meta-item-nederlandse-woorden-context i {
  color: #4f9ff0;
}

.hero-image-nederlandse-woorden-context {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.breadcrumbs-nederlandse-woorden-context {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-nederlandse-woorden-context a {
  color: #4f9ff0;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-woorden-context a:hover {
  color: #a8d5ff;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-woorden-context span {
  color: #64748b;
}

.intro-section-nederlandse-woorden-context {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.intro-image-nederlandse-woorden-context {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.technique-one-nederlandse-woorden-context {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.technique-text-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.technique-paragraph-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.technique-list-nederlandse-woorden-context {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.technique-list-nederlandse-woorden-context li {
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.technique-image-nederlandse-woorden-context img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.technique-two-nederlandse-woorden-context {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-wrapper-reverse-nederlandse-woorden-context {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-image-left-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.technique-text-right-nederlandse-woorden-context {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-right-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.technique-paragraph-right-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.technique-highlight-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  background: #e0e7ff;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ef6b4b;
}

.technique-image-left-nederlandse-woorden-context img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .technique-wrapper-nederlandse-woorden-context {
    flex-direction: column;
  }
  
  .technique-text-nederlandse-woorden-context,
  .technique-image-nederlandse-woorden-context {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .technique-wrapper-reverse-nederlandse-woorden-context {
    flex-direction: column;
  }
  
  .technique-image-left-nederlandse-woorden-context {
    order: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .technique-text-right-nederlandse-woorden-context {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-three-nederlandse-woorden-context {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-callout-nederlandse-woorden-context {
  background: #dbeafe;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4f9ff0;
  margin-top: 1.5rem;
}

.callout-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0c4a6e;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.callout-list-nederlandse-woorden-context {
  list-style-type: none;
  margin-left: 0;
}

.callout-list-nederlandse-woorden-context li {
  color: #0c4a6e;
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  padding-left: 0;
}

.technique-four-nederlandse-woorden-context {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-five-nederlandse-woorden-context {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.practical-guide-nederlandse-woorden-context {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.practical-content-nederlandse-woorden-context {
  max-width: 100%;
}

.practical-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.practical-intro-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.practical-steps-nederlandse-woorden-context {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.step-card-nederlandse-woorden-context {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 350px;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.step-number-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ef6b4b;
  line-height: 1;
  flex-shrink: 0;
}

.step-content-nederlandse-woorden-context {
  flex: 1;
}

.step-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-text-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card-nederlandse-woorden-context {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-nederlandse-woorden-context {
  background: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-nederlandse-woorden-context {
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-nederlandse-woorden-context {
  border-left: 4px solid #4f9ff0;
  padding-left: 2rem;
  margin: 0;
  background: transparent;
}

.quote-text-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quote-author-nederlandse-woorden-context {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a8d5ff;
  font-style: normal;
  margin: 0;
}

.conclusion-nederlandse-woorden-context {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-woorden-context {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.conclusion-text-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1.5rem;
}

.conclusion-cta-nederlandse-woorden-context {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.cta-link-nederlandse-woorden-context {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: #ef6b4b;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
}

.cta-link-nederlandse-woorden-context:hover {
  background: #e55a3a;
  transform: translateX(4px);
}

.disclaimer-section-nederlandse-woorden-context {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-woorden-context {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-nederlandse-woorden-context {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.disclaimer-text-nederlandse-woorden-context {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-posts-nederlandse-woorden-context {
  background: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-content-nederlandse-woorden-context {
  max-width: 1200px;
  margin: 0 auto;
}

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

.related-cards-wrapper-nederlandse-woorden-context {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-nederlandse-woorden-context {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-woorden-context:hover {
  transform: translateY(-8px);
  border-color: #4f9ff0;
  box-shadow: 0 12px 24px rgba(79, 159, 240, 0.15);
}

.related-image-nederlandse-woorden-context {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlandse-woorden-context {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-nederlandse-woorden-context:hover .related-card-image-nederlandse-woorden-context {
  transform: scale(1.05);
}

.related-card-text-nederlandse-woorden-context {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-nederlandse-woorden-context {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-nederlandse-woorden-context {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #a8d5ff;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-nederlandse-woorden-context {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f9ff0;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-nederlandse-woorden-context:hover {
  color: #a8d5ff;
  transform: translateX(4px);
}

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

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

@media (max-width: 480px) {
  .hero-title-nederlandse-woorden-context {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  .hero-subtitle-nederlandse-woorden-context {
    font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  }
  
  .hero-meta-nederlandse-woorden-context {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .practical-steps-nederlandse-woorden-context {
    flex-direction: column;
  }
  
  .step-card-nederlandse-woorden-context {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-nederlandse-media-lezen {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-nederlandse-media-lezen {
  background: #0a0f1e;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-nederlandse-media-lezen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.meta-item-nederlandse-media-lezen {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  font-weight: 500;
}

.meta-separator-nederlandse-media-lezen {
  color: #475569;
}

.hero-image-wrapper-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 1024px) {
  .hero-content-nederlandse-media-lezen {
    flex-direction: column;
  }

  .hero-text-wrapper-nederlandse-media-lezen,
  .hero-image-wrapper-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breadcrumbs-nederlandse-media-lezen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.breadcrumbs-nederlandse-media-lezen a {
  color: #4f9ff0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-media-lezen a:hover {
  color: #a8d5ff;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-media-lezen span {
  color: #64748b;
}

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

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

.intro-text-wrapper-nederlandse-media-lezen {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-nederlandse-media-lezen {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-nederlandse-media-lezen {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #ef6b4b;
}

.highlight-title-nederlandse-media-lezen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.highlight-list-nederlandse-media-lezen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-item-nederlandse-media-lezen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ef6b4b;
  font-weight: bold;
  font-size: 1.1em;
}

@media (max-width: 1024px) {
  .intro-content-nederlandse-media-lezen {
    flex-direction: column;
  }

  .intro-text-wrapper-nederlandse-media-lezen,
  .intro-highlight-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.beginner-section-nederlandse-media-lezen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.beginner-content-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.beginner-text-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.beginner-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.beginner-paragraph-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.beginner-image-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.beginner-image-img-nederlandse-media-lezen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .beginner-content-wrapper-nederlandse-media-lezen {
    flex-direction: column;
  }

  .beginner-text-nederlandse-media-lezen,
  .beginner-image-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intermediate-section-nederlandse-media-lezen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intermediate-content-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intermediate-image-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intermediate-image-img-nederlandse-media-lezen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.intermediate-text-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intermediate-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intermediate-paragraph-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1024px) {
  .intermediate-content-wrapper-nederlandse-media-lezen {
    flex-direction: column;
  }

  .intermediate-image-nederlandse-media-lezen,
  .intermediate-text-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-nederlandse-media-lezen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-content-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advanced-paragraph-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.advanced-image-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-img-nederlandse-media-lezen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .advanced-content-wrapper-nederlandse-media-lezen {
    flex-direction: column;
  }

  .advanced-text-nederlandse-media-lezen,
  .advanced-image-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-nederlandse-media-lezen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-content-nederlandse-media-lezen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.strategy-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-cards-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-nederlandse-media-lezen {
  flex: 1 1 clamp(250px, 100%, 320px);
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.strategy-card-nederlandse-media-lezen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.card-number-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ef6b4b;
  line-height: 1;
}

.card-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.card-text-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
}

.resources-section-nederlandse-media-lezen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.resources-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.resources-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.resources-column-nederlandse-media-lezen {
  flex: 1 1 clamp(250px, 100%, 350px);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resources-subtitle-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.resources-list-nederlandse-media-lezen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resources-item-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.resources-item-nederlandse-media-lezen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ef6b4b;
  font-weight: bold;
}

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

.tips-content-nederlandse-media-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tips-text-wrapper-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-intro-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tips-list-nederlandse-media-lezen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-nederlandse-media-lezen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-heading-nederlandse-media-lezen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.tip-description-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.tips-image-wrapper-nederlandse-media-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-nederlandse-media-lezen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .tips-content-nederlandse-media-lezen {
    flex-direction: column;
  }

  .tips-text-wrapper-nederlandse-media-lezen,
  .tips-image-wrapper-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-nederlandse-media-lezen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-nederlandse-media-lezen {
  display: flex;
  justify-content: center;
}

.featured-quote-nederlandse-media-lezen {
  max-width: 800px;
  border-left: 4px solid #ef6b4b;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
}

.quote-text-nederlandse-media-lezen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: #94a3b8;
  display: block;
  font-style: normal;
}

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

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

.conclusion-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-nederlandse-media-lezen {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
}

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

.btn-conclusion-nederlandse-media-lezen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ef6b4b;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ef6b4b;
}

.btn-conclusion-nederlandse-media-lezen:hover {
  background: #e55a3a;
  border-color: #e55a3a;
}

.disclaimer-section-nederlandse-media-lezen {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlandse-media-lezen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-media-lezen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-nederlandse-media-lezen {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-nederlandse-media-lezen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-nederlandse-media-lezen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-wrapper-nederlandse-media-lezen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlandse-media-lezen {
  flex: 1 1 clamp(280px, 100%, 380px);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-card-nederlandse-media-lezen:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.related-card-image-nederlandse-media-lezen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-nederlandse-media-lezen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-nederlandse-media-lezen {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-nederlandse-media-lezen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-description-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlandse-media-lezen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #4f9ff0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-nederlandse-media-lezen:hover {
  color: #a8d5ff;
}

@media (max-width: 768px) {
  .hero-title-nederlandse-media-lezen,
  .intro-title-nederlandse-media-lezen,
  .beginner-title-nederlandse-media-lezen,
  .intermediate-title-nederlandse-media-lezen,
  .advanced-title-nederlandse-media-lezen,
  .strategy-title-nederlandse-media-lezen,
  .resources-title-nederlandse-media-lezen,
  .tips-title-nederlandse-media-lezen,
  .conclusion-title-nederlandse-media-lezen,
  .related-title-nederlandse-media-lezen {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }

  .hero-section-nederlandse-media-lezen,
  .intro-section-nederlandse-media-lezen,
  .beginner-section-nederlandse-media-lezen,
  .intermediate-section-nederlandse-media-lezen,
  .advanced-section-nederlandse-media-lezen,
  .strategy-section-nederlandse-media-lezen,
  .resources-section-nederlandse-media-lezen,
  .tips-section-nederlandse-media-lezen,
  .quote-section-nederlandse-media-lezen,
  .conclusion-section-nederlandse-media-lezen,
  .disclaimer-section-nederlandse-media-lezen,
  .related-section-nederlandse-media-lezen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .strategy-cards-wrapper-nederlandse-media-lezen,
  .resources-wrapper-nederlandse-media-lezen {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-card-nederlandse-media-lezen,
  .resources-column-nederlandse-media-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  overflow: hidden;
}

.hero-section-nederlandse-kinderboeken-volwassenen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-kinderboeken-volwassenen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.breadcrumbs-nederlandse-kinderboeken-volwassenen a {
  color: #a8d5ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-kinderboeken-volwassenen a:hover {
  color: #ffffff;
}

.breadcrumbs-nederlandse-kinderboeken-volwassenen span {
  color: #64748b;
}

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

.hero-text-wrapper-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-meta-netherlands-kinderboeken-volwassenen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-item-nederlandse-kinderboeken-volwassenen {
  color: #94a3b8;
}

.meta-separator-nederlandse-kinderboeken-volwassenen {
  color: #64748b;
}

.hero-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

.hero-stats-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

.stat-label-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-wrapper-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .hero-content-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-text-wrapper-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
  }
  
  .hero-image-wrapper-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
  }
  
  .hero-stats-nederlandse-kinderboeken-volwassenen {
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
  }
}

.intro-section-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-text-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.intro-image-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-text-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-image-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.levels-section-nederlandse-kinderboeken-volwassenen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.levels-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.levels-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.levels-intro-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.levels-cards-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.level-card-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.level-card-nederlandse-kinderboeken-volwassenen:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.level-card-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.level-card-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.level-card-example-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  font-style: italic;
  padding: 0.75rem;
  background: #f1f5f9;
  border-left: 3px solid #4f9ff0;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .levels-cards-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
  }
  
  .level-card-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.recommendations-section-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.recommendations-text-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.recommendations-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.recommendations-intro-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.recommendations-list-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.book-recommendation-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.book-title-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.book-description-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.recommendations-image-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.recommendations-image-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .recommendations-content-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .recommendations-text-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .recommendations-image-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-nederlandse-kinderboeken-volwassenen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.strategy-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.strategy-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-intro-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.strategy-steps-nederlandse-kinderboeken-volwassenen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.strategy-step-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f9ff0;
  line-height: 1;
  margin: 0;
}

.step-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.step-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.practical-section-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.practical-text-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practical-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.practical-image-block-nederlandse-kinderboeken-volwassenen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-content-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .practical-text-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .practical-image-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.results-section-nederlandse-kinderboeken-volwassenen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.results-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.results-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.results-timeline-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.timeline-item-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4f9ff0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-period-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.timeline-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

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

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

.quote-content-nederlandse-kinderboeken-volwassenen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-nederlandse-kinderboeken-volwassenen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #4f9ff0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.quote-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin: 0;
}

.quote-author-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.conclusion-section-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

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

.cta-button-nederlandse-kinderboeken-volwassenen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ef6b4b;
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.cta-button-nederlandse-kinderboeken-volwassenen:hover {
  background: #e55a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 107, 75, 0.2);
}

.disclaimer-section-nederlandse-kinderboeken-volwassenen {
  background: #f1f5f9;
  color: #0f172a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #4f9ff0;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.disclaimer-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.related-section-nederlandse-kinderboeken-volwassenen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-content-nederlandse-kinderboeken-volwassenen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-kinderboeken-volwassenen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-card-nederlandse-kinderboeken-volwassenen:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-image-nederlandse-kinderboeken-volwassenen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlandse-kinderboeken-volwassenen {
  padding: clamp(1.5rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  flex-grow: 1;
}

.related-link-nederlandse-kinderboeken-volwassenen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 700;
  color: #4f9ff0;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-nederlandse-kinderboeken-volwassenen:hover {
  color: #ef6b4b;
}

@media (max-width: 768px) {
  .related-cards-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
  }
  
  .related-card-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-nederlandse-kinderboeken-volwassenen,
  .intro-content-nederlandse-kinderboeken-volwassenen,
  .recommendations-content-nederlandse-kinderboeken-volwassenen,
  .practical-content-nederlandse-kinderboeken-volwassenen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-nederlandse-kinderboeken-volwassenen,
  .hero-image-wrapper-nederlandse-kinderboeken-volwassenen,
  .intro-text-block-nederlandse-kinderboeken-volwassenen,
  .intro-image-block-nederlandse-kinderboeken-volwassenen,
  .recommendations-text-block-nederlandse-kinderboeken-volwassenen,
  .recommendations-image-block-nederlandse-kinderboeken-volwassenen,
  .practical-text-block-nederlandse-kinderboeken-volwassenen,
  .practical-image-block-nederlandse-kinderboeken-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-nederlandse-kinderboeken-volwassenen {
    flex-direction: row;
    gap: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.lees-nederlands-about {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  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;
  font-family: var(--font-heading);
  font-weight: 700;
}

p,
span,
li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.hero-lezen-text-about {
  text-align: center;
  max-width: 900px;
}

.hero-lezen-title-about {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-lezen-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

.hero-image-lezen-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.stats-lezen-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-item-lezen-about {
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat-number-lezen-about {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

.stat-label-lezen-about {
  display: block;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
}

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

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

.section-header-lezen-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-lezen-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(239, 107, 75, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-lezen-title-about {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.foundation-lezen-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.foundation-lezen-text-about {
  max-width: 900px;
  margin: 0 auto;
}

.foundation-para-lezen-about {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-relaxed);
}

.foundation-para-lezen-about:last-child {
  margin-bottom: 0;
}

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

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

.approach-header-lezen-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.approach-title-lezen-about {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.approach-subtitle-lezen-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.steps-lezen-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.step-lezen-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-lezen-about {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: var(--line-height-tight);
  min-width: 80px;
}

.step-content-lezen-about {
  flex: 1;
}

.step-title-lezen-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-lezen-about {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

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

  .step-number-lezen-about {
    min-width: 60px;
  }
}

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

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

.features-header-lezen-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.features-title-lezen-about {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.features-subtitle-lezen-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

.feature-card-lezen-about {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-lezen-about:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 107, 75, 0.5);
  background: rgba(239, 107, 75, 0.08);
}

.card-icon-lezen-about {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
}

.card-title-lezen-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.card-text-lezen-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

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

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

.featured-quote-lezen-about {
  background: var(--color-bg-dark-accent);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.quote-text-lezen-about {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--color-text-dark-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-lezen-about {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  font-style: normal;
}

.disclaimer-lezen-section-about {
  background: rgba(239, 107, 75, 0.08);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 107, 75, 0.2);
}

.disclaimer-lezen-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-lezen-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-lezen-about {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-lezen-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.disclaimer-text-lezen-about {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .hero-lezen-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .foundation-lezen-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-lezen-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .features-lezen-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .quote-lezen-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .disclaimer-lezen-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-lezen-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .foundation-lezen-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .approach-lezen-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .features-lezen-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .quote-lezen-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card-dark);
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(79, 159, 240, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(79, 159, 240, 0.15);
  transform: translateY(-4px);
}

.portfolio-card__image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, rgba(79, 159, 240, 0.1) 0%, rgba(239, 107, 75, 0.1) 100%);
  overflow: hidden;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card__tag {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: inline-block;
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.portfolio-card__meta {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-dark-muted);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
}

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.services-hero {
  background: linear-gradient(135deg, var(--color-bg-dark-accent) 0%, var(--color-bg-primary) 100%);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 107, 75, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.services-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-2xl);
  }
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-offerings {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .services-offerings {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-offerings {
    padding: 4rem var(--space-2xl);
  }

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

.service-card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.75rem;
  color: var(--color-text-dark-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-topics li {
  font-size: var(--text-sm);
  color: var(--color-secondary-light);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.services-cta-section {
  background: var(--color-bg-dark-accent);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.services-cta-text {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
}

.services-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--color-text-dark-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  width: fit-content;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.services-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.services-cta-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .services-cta-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta-container {
    padding: 0 var(--space-lg);
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-cta-section {
    padding: 4rem var(--space-2xl);
  }

  .services-cta-container {
    padding: 0 var(--space-2xl);
  }
}

.services-info-cards {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .services-info-cards {
    padding: var(--space-3xl) var(--space-lg);
  }

  .info-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-info-cards {
    padding: 4rem var(--space-2xl);
  }
}

.info-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(79, 159, 240, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.info-card-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
}

.legal-hub {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
}

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

.legal-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.legal-hub .updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  line-height: var(--line-height-tight);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-hub ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.legal-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.legal-hub li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-hub .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.legal-hub .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light-primary);
}

.legal-hub .contact-section p {
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-md);
}

.legal-hub .contact-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-hub .content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-hub .content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .legal-hub .contact-section {
    padding: var(--space-2xl);
  }
}

* {
  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-dark-primary);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-success);
  stroke-width: 1.5;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-secondary-light);
  font-weight: 500;
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-md);
}

.message {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.next-steps {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-dark-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-content {
    gap: var(--space-xl);
  }

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

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

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

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

  .next-steps {
    margin-bottom: var(--space-2xl);
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 160px;
    height: 160px;
  }

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

.error-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  border: 2px solid rgba(239, 107, 75, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-secondary-light);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-md) 0 0 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(239, 107, 75, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

.suggestions-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
  padding-left: var(--space-md);
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: var(--space-lg);
}

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

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

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

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-suggestions {
    padding: var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .error-visual {
    margin-bottom: var(--space-2xl);
  }

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

.contact-support-page {
  width: 100%;
  overflow: hidden;
}

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

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

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

.contact-support-hero {
  background-color: var(--color-bg-primary);
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.contact-support-hero-content {
  text-align: center;
}

.contact-support-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-support-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

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

.contact-support-main-content {
  width: 100%;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

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

@media (min-width: 1024px) {
  .contact-support-grid {
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.contact-support-form-wrapper {
  width: 100%;
}

.contact-support-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-support-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-support-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-support-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.contact-support-input,
.contact-support-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-light-primary);
  transition: all 0.2s ease;
}

.contact-support-input::placeholder,
.contact-support-textarea::placeholder {
  color: var(--color-text-light-muted);
}

.contact-support-input:focus,
.contact-support-textarea:focus {
  outline: none;
  background-color: var(--color-bg-secondary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(239, 107, 75, 0.1);
}

.contact-support-input:invalid:not(:placeholder-shown),
.contact-support-textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.contact-support-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-support-form-privacy {
  margin-top: var(--space-sm);
}

.contact-support-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-normal);
}

.contact-support-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-support-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-support-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: var(--space-sm);
}

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

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

.contact-support-info-wrapper {
  width: 100%;
}

.contact-support-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-support-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-support-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.contact-support-info-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.contact-support-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: rgba(239, 107, 75, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-support-info-content {
  flex: 1;
}

.contact-support-info-label {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-xs);
}

.contact-support-info-value {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-light-primary);
  margin: 0;
  font-weight: 500;
}

.contact-support-info-desc {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-light-secondary);
  margin-top: var(--space-xs);
}

.contact-support-info-extra {
  padding: var(--space-lg);
  background-color: #f0f4ff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-support-info-extra-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.contact-support-info-extra-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-support-faq {
  background-color: var(--color-bg-primary);
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.contact-support-faq-content {
  width: 100%;
}

.contact-support-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: var(--line-height-tight);
}

.contact-support-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-support-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .contact-support-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

.contact-support-faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-support-faq-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.contact-support-faq-question {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-support-faq-answer {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 767px) {
  .contact-support-hero {
    padding: 2rem 0;
  }

  .contact-support-main {
    padding: 2rem 0;
  }

  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .contact-support-form-wrapper,
  .contact-support-info-wrapper {
    width: 100%;
  }

  .contact-support-faq {
    padding: 2rem 0;
  }
}

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

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