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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-light: #ffffff;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-primary-light: #fed7aa;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent-green: #10b981;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Merriweather', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  
  
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
}

*,
*::before,
*::after {
  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: 16px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-light-primary);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

.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: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

.section-dark a:hover {
  color: #ffedd5;
}

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

.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-soft {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
}

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

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  white-space: nowrap;
}

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

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

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

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

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

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

.btn-link {
  background: transparent;
  color: var(--color-primary);
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

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

.badge-accent {
  background: var(--color-accent-green);
  color: #ffffff;
}

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

.divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

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

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

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

.text-bold {
  font-weight: var(--fw-bold);
}

.text-semibold {
  font-weight: var(--fw-semibold);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

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

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

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

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

.list-unstyled {
  list-style: none;
  margin-left: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin-left: 0;
}

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-primary-light);
  color: var(--color-text-dark-secondary);
}

code,
pre {
  background: #f1f5f9;
  border-radius: var(--radius-md);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

code {
  padding: 2px 6px;
}

pre {
  padding: var(--space-md);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.section-dark code,
.section-dark pre {
  background: rgba(0, 0, 0, 0.2);
  color: #e2e8f0;
}

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

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

input:disabled,
textarea:disabled,
select:disabled {
  background: #f8fafc;
  color: var(--color-text-light-muted);
  cursor: not-allowed;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  body {
    font-size: 15px;
  }
}

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

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  .no-print {
    display: none;
  }
}
.header-taal-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

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

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

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

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

.header-taal-portal-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  letter-spacing: var(--ls-tight);
}

.header-taal-portal-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex: 1;
  margin-left: 3rem;
}

.header-taal-portal-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

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

.header-taal-portal-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

.header-taal-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  padding-top: 70px;
}

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

.header-taal-portal-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.header-taal-portal-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-taal-portal-mobile-link:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-taal-portal-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

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

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

@media (max-width: 767px) {
  .header-taal-portal-logo-text {
    font-size: 1.125rem;
  }

  .header-taal-portal-container {
    height: 60px;
  }

  .header-taal-portal-mobile-menu {
    padding-top: 60px;
  }
}

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

.dutch-hub * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.hero-title-index {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: 0;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

.stat-label-index {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

  .hero-image-block-index {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .hero-title-index {
    font-size: 1.75rem;
  }

  .hero-subtitle-index {
    font-size: 1rem;
  }

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

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

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

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-index {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.card-title-index {
  font-size: 1.2rem;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.card-text-index {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .features-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .features-cards-index {
    gap: 1.5rem;
  }

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

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

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

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

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

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

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.step-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  font-size: 1.35rem;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.step-text-index {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .how-it-works-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

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

  .step-number-index {
    font-size: 2rem;
    min-width: 60px;
  }
}

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

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

.featured-posts-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.featured-posts-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.featured-post-card-index:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.featured-post-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-post-body-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-post-title-index {
  font-size: 1.25rem;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: 0;
}

.featured-post-description-index {
  font-size: 0.9rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  flex: 1;
}

.featured-post-link-index {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.featured-post-link-index:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

.featured-posts-footer-index {
  text-align: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .featured-posts-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .featured-posts-cards-index {
    gap: 1.5rem;
  }

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

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-quote-index {
  margin: 0;
  padding: 0;
  border: none;
}

.quote-text-index {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  font-style: italic;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.quote-author-index {
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  font-weight: var(--fw-semibold);
  display: block;
}

@media (max-width: 768px) {
  .testimonials-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .testimonials-grid-index {
    gap: 1.5rem;
  }

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

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

.faq-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.faq-question-index {
  font-size: 1.1rem;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  margin-bottom: 0;
  line-height: var(--lh-tight);
}

.faq-answer-index {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .faq-item-index {
    padding: 1.5rem;
  }
}

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

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

.about-preview-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-preview-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-sm);
}

.about-preview-intro-index {
  font-size: 1.05rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-semibold);
  margin-bottom: 0;
}

.about-preview-text-index {
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.about-preview-link-index {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-sm);
  transition: all 0.3s ease;
}

.about-preview-link-index:hover {
  text-decoration: underline;
  color: var(--color-primary-hover);
}

.about-preview-image-block-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 450px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

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

  .about-preview-image-block-index {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .about-preview-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

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

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

.cta-final-box-index {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(14, 165, 233, 0.05));
  border: 2px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.cta-final-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: 0;
}

.cta-final-text-index {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.cta-final-secondary-index {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  margin-bottom: 0;
}

.cta-final-link-index {
  color: var(--color-primary-light);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-final-link-index:hover {
  color: #ffedd5;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cta-final-section-index {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

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

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-btn-accept-index {
  padding: 0.5rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-decline-index {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

@media (max-width: 480px) {
  .cookie-banner-index {
    padding: 1rem;
  }

  .cookie-banner-text-index {
    font-size: 0.85rem;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}

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

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--ls-tight);
}

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

.footer-about p {
  max-width: 45ch;
}

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

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

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

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

.footer-copyright p {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-dark-muted);
  margin: 0;
}

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

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

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

  .footer-copyright {
    flex: 1 1 100%;
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }

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

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

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 0 1 160px;
  }
}
    

.category-page-dutch-basics-beginners {
  background: #ffffff;
  overflow-x: hidden;
}

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

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

.hero-header-dutch-basics-beginners {
  text-align: center;
}

.hero-title-dutch-basics-beginners {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: 'Merriweather', serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-dutch-basics-beginners {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.hero-description-dutch-basics-beginners {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f97316;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text-dutch-basics-beginners {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin: 0;
}

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

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

.posts-header-dutch-basics-beginners {
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.posts-title-dutch-basics-beginners {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.posts-subtitle-dutch-basics-beginners {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.card-dutch-basics-beginners {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-basics-beginners:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.card-image-wrapper-dutch-basics-beginners {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.card-dutch-basics-beginners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-dutch-basics-beginners:hover img {
  transform: scale(1.05);
}

.card-body-dutch-basics-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.5rem);
  flex: 1;
}

.card-title-dutch-basics-beginners {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.01em;
}

.card-description-dutch-basics-beginners {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-meta-dutch-basics-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #64748b;
  padding-top: clamp(0.75rem, 1vw, 1rem);
  border-top: 1px solid #f1f5f9;
}

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

.card-meta-dutch-basics-beginners i {
  color: #f97316;
  font-size: 0.9em;
}

.card-link-dutch-basics-beginners {
  display: inline-block;
  color: #f97316;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.card-link-dutch-basics-beginners:hover {
  color: #ea580c;
  text-decoration: underline;
  transform: translateX(4px);
}

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

.essentials-content-dutch-basics-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.essentials-header-dutch-basics-beginners {
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.essentials-title-dutch-basics-beginners {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.essentials-subtitle-dutch-basics-beginners {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.essentials-list-dutch-basics-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.essential-item-dutch-basics-beginners {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.essential-number-dutch-basics-beginners {
  flex-shrink: 0;
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: #f97316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: 'Merriweather', serif;
}

.essential-text-dutch-basics-beginners {
  flex: 1;
}

.essential-heading-dutch-basics-beginners {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  letter-spacing: -0.01em;
}

.essential-description-dutch-basics-beginners {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.tips-header-dutch-basics-beginners {
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.tips-title-dutch-basics-beginners {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  letter-spacing: -0.02em;
}

.tips-subtitle-dutch-basics-beginners {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

.tip-card-dutch-basics-beginners:hover {
  border-color: #f97316;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
  transform: translateY(-4px);
}

.tip-icon-dutch-basics-beginners {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f97316;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(50px, 8vw, 80px);
}

.tip-heading-dutch-basics-beginners {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.tip-text-dutch-basics-beginners {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

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

  .posts-section-dutch-basics-beginners,
  .essentials-section-dutch-basics-beginners,
  .tips-section-dutch-basics-beginners {
    padding: 2.5rem 0;
  }

  .posts-grid-dutch-basics-beginners {
    flex-direction: column;
    align-items: center;
  }

  .card-dutch-basics-beginners {
    max-width: 100%;
  }

  .essential-item-dutch-basics-beginners {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .essential-number-dutch-basics-beginners {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .tips-grid-dutch-basics-beginners {
    flex-direction: column;
    align-items: center;
  }

  .tip-card-dutch-basics-beginners {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-dutch-basics-beginners {
    font-size: 1.75rem;
  }

  .posts-title-dutch-basics-beginners,
  .essentials-title-dutch-basics-beginners,
  .tips-title-dutch-basics-beginners {
    font-size: 1.5rem;
  }

  .card-dutch-basics-beginners {
    max-width: 100%;
  }
}

.main-beginner-fouten-voorkomen {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: #94a3b8;
}

.breadcrumbs-beginner-fouten-voorkomen a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-beginner-fouten-voorkomen a:hover {
  color: #fed7aa;
}

.breadcrumbs-beginner-fouten-voorkomen span {
  color: #64748b;
}

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

.hero-lead-beginner-fouten-voorkomen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.meta-item-beginner-fouten-voorkomen {
  color: #94a3b8;
}

.meta-divider-beginner-fouten-voorkomen {
  color: #475569;
}

.hero-image-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-beginner-fouten-voorkomen,
  .hero-image-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-beginner-fouten-voorkomen {
    font-size: 1.75rem;
  }

  .hero-lead-beginner-fouten-voorkomen {
    font-size: 1rem;
  }
}

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

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

.intro-text-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-description-beginner-fouten-voorkomen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.intro-highlight-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-box-beginner-fouten-voorkomen {
  background: #f8fafc;
  border-left: 4px solid #f97316;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.highlight-title-beginner-fouten-voorkomen {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight-list-beginner-fouten-voorkomen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-beginner-fouten-voorkomen {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-beginner-fouten-voorkomen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 700;
}

@media (max-width: 768px) {
  .intro-content-beginner-fouten-voorkomen {
    flex-direction: column;
  }

  .intro-text-beginner-fouten-voorkomen,
  .intro-highlight-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-beginner-fouten-voorkomen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.mistakes-text-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-description-beginner-fouten-voorkomen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.mistake-tip-beginner-fouten-voorkomen {
  background: #fef3c7;
  border-left: 4px solid #f97316;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.tip-text-beginner-fouten-voorkomen {
  font-size: 0.95rem;
  color: #7c2d12;
  margin: 0;
}

.mistakes-image-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-img-beginner-fouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .mistakes-content-beginner-fouten-voorkomen {
    flex-direction: column;
  }

  .mistakes-text-beginner-fouten-voorkomen,
  .mistakes-image-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-two-section-beginner-fouten-voorkomen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-two-content-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-two-image-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-two-img-beginner-fouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mistakes-two-text-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-two-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-two-description-beginner-fouten-voorkomen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mistakes-two-content-beginner-fouten-voorkomen {
    flex-direction: column;
  }

  .mistakes-two-text-beginner-fouten-voorkomen,
  .mistakes-two-image-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-three-section-beginner-fouten-voorkomen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-three-content-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-three-text-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-three-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-three-description-beginner-fouten-voorkomen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.mistakes-three-image-beginner-fouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-three-img-beginner-fouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .mistakes-three-content-beginner-fouten-voorkomen {
    flex-direction: column;
  }

  .mistakes-three-text-beginner-fouten-voorkomen,
  .mistakes-three-image-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.solutions-content-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.solutions-header-beginner-fouten-voorkomen {
  text-align: center;
}

.solutions-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.solutions-subtitle-beginner-fouten-voorkomen {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0;
}

.solutions-grid-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.solution-card-beginner-fouten-voorkomen {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-card-beginner-fouten-voorkomen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-icon-beginner-fouten-voorkomen {
  font-size: 2.5rem;
  color: #f97316;
  display: flex;
  justify-content: center;
}

.card-title-beginner-fouten-voorkomen {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}

.card-text-beginner-fouten-voorkomen {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .solution-card-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-beginner-fouten-voorkomen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-beginner-fouten-voorkomen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-beginner-fouten-voorkomen {
  margin: 0;
  border: none;
  padding: 0;
}

.quote-text-beginner-fouten-voorkomen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
}

.quote-author-beginner-fouten-voorkomen {
  font-size: 1rem;
  color: #f97316;
  font-style: normal;
  display: block;
}

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

.conclusion-content-beginner-fouten-voorkomen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.conclusion-description-beginner-fouten-voorkomen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: center;
}

.conclusion-cta-beginner-fouten-voorkomen {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(249, 115, 22, 0.3);
}

.disclaimer-section-beginner-fouten-voorkomen {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-beginner-fouten-voorkomen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-beginner-fouten-voorkomen {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-beginner-fouten-voorkomen {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.related-section-beginner-fouten-voorkomen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-beginner-fouten-voorkomen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-beginner-fouten-voorkomen {
  text-align: center;
}

.related-title-beginner-fouten-voorkomen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.related-subtitle-beginner-fouten-voorkomen {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0;
}

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

.related-card-beginner-fouten-voorkomen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-beginner-fouten-voorkomen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.related-card-image-beginner-fouten-voorkomen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-beginner-fouten-voorkomen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-beginner-fouten-voorkomen:hover .related-img-beginner-fouten-voorkomen {
  transform: scale(1.05);
}

.related-card-content-beginner-fouten-voorkomen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-beginner-fouten-voorkomen {
  font-size: 1.1rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-beginner-fouten-voorkomen {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.related-link-beginner-fouten-voorkomen {
  font-size: 0.9rem;
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-link-beginner-fouten-voorkomen:hover {
  color: #ea580c;
}

@media (max-width: 768px) {
  .related-card-beginner-fouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-image-beginner-fouten-voorkomen {
    height: 200px;
  }
}

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

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

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

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

.main-nederlandse-uitspraken-essentieel {
width: 100%;
overflow: hidden;
}

.hero-section-nederlandse-uitspraken-essentieel {
background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
color: #ffffff;
}

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

.breadcrumbs-nederlandse-uitspraken-essentieel {
font-size: clamp(0.8rem, 1vw, 0.95rem);
color: #cbd5e1;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}

.breadcrumbs-nederlandse-uitspraken-essentieel a {
color: #fed7aa;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-uitspraken-essentieel a:hover {
color: #ffedd5;
text-decoration: underline;
}

.breadcrumbs-nederlandse-uitspraken-essentieel span {
color: #64748b;
}

.hero-text-wrapper-nederlandse-uitspraken-essentieel {
text-align: center;
max-width: 700px;
}

.hero-title-nederlandse-uitspraken-essentieel {
font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
color: #ffffff;
font-family: 'Merriweather', serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

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

.hero-meta-nederlandse-uitspraken-essentieel {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
font-size: clamp(0.85rem, 1vw, 0.95rem);
color: #94a3b8;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-item-nederlandse-uitspraken-essentieel {
display: inline-block;
}

.meta-divider-nederlandse-uitspraken-essentieel {
color: #475569;
}

.hero-image-wrapper-nederlandse-uitspraken-essentieel {
width: 100%;
max-width: 600px;
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-nederlandse-uitspraken-essentieel {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.hero-section-nederlandse-uitspraken-essentieel {
padding: 2rem 0;
}

.hero-content-nederlandse-uitspraken-essentieel {
gap: 1.5rem;
}

.hero-image-wrapper-nederlandse-uitspraken-essentieel {
max-width: 100%;
}

.hero-image-nederlandse-uitspraken-essentieel {
max-height: 300px;
}
}

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

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

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

.intro-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #475569;
line-height: 1.75;
margin-bottom: 1.25rem;
}

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

.intro-image-nederlandse-uitspraken-essentieel {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
.intro-content-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1.5rem;
}

.intro-text-block-nederlandse-uitspraken-essentieel,
.intro-image-block-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}

.intro-image-nederlandse-uitspraken-essentieel {
max-height: 300px;
}
}

.content-section-1-nederlandse-uitspraken-essentieel {
background: #f8fafc;
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.content-wrapper-1-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.content-text-1-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-1-nederlandse-uitspraken-essentieel {
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.content-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
color: #475569;
line-height: 1.75;
margin-bottom: 1.25rem;
}

.practice-box-nederlandse-uitspraken-essentieel {
background: #ffffff;
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: var(--radius-lg);
border-left: 4px solid #f97316;
margin-top: clamp(1.5rem, 3vw, 2rem);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.practice-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1rem, 2vw, 1.15rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 0.75rem;
}

.practice-list-nederlandse-uitspraken-essentieel {
list-style: none;
margin-left: 0;
padding: 0;
}

.practice-list-nederlandse-uitspraken-essentieel li {
color: #475569;
font-size: clamp(0.9rem, 1.2vw, 1rem);
padding-left: 1.5rem;
position: relative;
margin-bottom: 0.5rem;
line-height: 1.6;
}

.practice-list-nederlandse-uitspraken-essentieel li:before {
content: "";
position: absolute;
left: 0;
color: #f97316;
font-weight: bold;
}

.content-image-1-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

.content-image-nederlandse-uitspraken-essentieel {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
.content-wrapper-1-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1.5rem;
}

.content-text-1-nederlandse-uitspraken-essentieel,
.content-image-1-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}

.content-image-nederlandse-uitspraken-essentieel {
max-height: 300px;
}
}

.content-section-2-nederlandse-uitspraken-essentieel {
background: #ffffff;
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.content-image-2-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

.content-text-2-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-2-nederlandse-uitspraken-essentieel {
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.highlight-box-nederlandse-uitspraken-essentieel {
background: #fef3c7;
padding: clamp(1.25rem, 2vw, 1.75rem);
border-radius: var(--radius-lg);
border-left: 4px solid #f97316;
margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
color: #92400e;
line-height: 1.6;
margin: 0;
}

.highlight-strong-nederlandse-uitspraken-essentieel {
font-weight: 700;
color: #b45309;
}

@media (max-width: 768px) {
.content-wrapper-2-nederlandse-uitspraken-essentieel {
flex-direction: column-reverse;
gap: 1.5rem;
}

.content-image-2-nederlandse-uitspraken-essentieel,
.content-text-2-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}

.content-image-nederlandse-uitspraken-essentieel {
max-height: 300px;
}
}

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

.content-wrapper-3-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.content-text-3-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-3-nederlandse-uitspraken-essentieel {
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.comparison-box-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: row;
gap: clamp(1rem, 2vw, 1.5rem);
margin-top: clamp(1.5rem, 3vw, 2rem);
}

.comparison-item-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
padding: clamp(1rem, 2vw, 1.5rem);
border-radius: var(--radius-lg);
text-align: center;
}

.comparison-item-nederlandse-uitspraken-essentieel:first-child {
background: #fee2e2;
border-left: 4px solid #ef4444;
}

.comparison-item-nederlandse-uitspraken-essentieel:last-child {
background: #dcfce7;
border-left: 4px solid #22c55e;
}

.comparison-label-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 0.5rem;
}

.comparison-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.9rem, 1.3vw, 1rem);
color: #475569;
margin: 0;
line-height: 1.5;
}

.content-image-3-nederlandse-uitspraken-essentieel {
flex: 1 1 50%;
max-width: 50%;
}

@media (max-width: 768px) {
.content-wrapper-3-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1.5rem;
}

.content-text-3-nederlandse-uitspraken-essentieel,
.content-image-3-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}

.comparison-box-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1rem;
}

.comparison-item-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
}

.content-image-nederlandse-uitspraken-essentieel {
max-height: 300px;
}
}

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

.practice-content-nederlandse-uitspraken-essentieel {
max-width: 800px;
margin: 0 auto;
}

.practice-heading-nederlandse-uitspraken-essentieel {
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
text-align: center;
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-intro-nederlandse-uitspraken-essentieel {
font-size: clamp(1rem, 1.5vw, 1.1rem);
color: #475569;
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
line-height: 1.6;
}

.practice-schedule-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.75rem);
}

.schedule-item-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2rem);
padding: clamp(1.25rem, 2vw, 1.75rem);
background: #f8fafc;
border-radius: var(--radius-lg);
border-left: 4px solid #f97316;
align-items: flex-start;
}

.schedule-day-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
font-weight: 700;
color: #0f172a;
min-width: 140px;
flex-shrink: 0;
}

.schedule-content-nederlandse-uitspraken-essentieel {
flex: 1;
}

.schedule-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.9rem, 1.3vw, 1rem);
color: #475569;
line-height: 1.6;
margin: 0;
}

.schedule-text-nederlandse-uitspraken-essentieel strong {
font-weight: 700;
color: #0f172a;
}

@media (max-width: 768px) {
.schedule-item-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 0.5rem;
}

.schedule-day-nederlandse-uitspraken-essentieel {
min-width: auto;
}
}

.quote-section-nederlandse-uitspraken-essentieel {
background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.featured-quote-nederlandse-uitspraken-essentieel {
border-left: 4px solid #fed7aa;
padding-left: clamp(1.5rem, 3vw, 2.5rem);
margin: 0;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.quote-text-nederlandse-uitspraken-essentieel {
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
color: #ffffff;
font-style: italic;
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-family: 'Merriweather', serif;
font-weight: 400;
}

.quote-author-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
color: #cbd5e1;
display: block;
font-style: normal;
font-weight: 600;
}

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

.tips-content-nederlandse-uitspraken-essentieel {
max-width: 1100px;
margin: 0 auto;
}

.tips-heading-nederlandse-uitspraken-essentieel {
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
text-align: center;
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.tips-intro-nederlandse-uitspraken-essentieel {
font-size: clamp(1rem, 1.5vw, 1.1rem);
color: #475569;
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
line-height: 1.6;
}

.tips-grid-nederlandse-uitspraken-essentieel {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.tip-card-nederlandse-uitspraken-essentieel {
flex: 1 1 calc(50% - 1rem);
min-width: 250px;
max-width: 350px;
background: #ffffff;
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: var(--radius-lg);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.tip-card-nederlandse-uitspraken-essentieel:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.tip-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.05rem, 1.8vw, 1.25rem);
color: #0f172a;
font-weight: 700;
margin: 0;
line-height: 1.3;
}

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

@media (max-width: 768px) {
.tips-grid-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1rem;
}

.tip-card-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.conclusion-content-nederlandse-uitspraken-essentieel {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
text-align: center;
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.1rem);
color: #475569;
line-height: 1.75;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
text-align: center;
}

.cta-box-nederlandse-uitspraken-essentieel {
background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
padding: clamp(2rem, 4vw, 3rem);
border-radius: var(--radius-xl);
text-align: center;
color: #ffffff;
margin-top: clamp(2rem, 4vw, 3rem);
box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.cta-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
color: #ffffff;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: 0.75rem;
line-height: 1.2;
letter-spacing: -0.02em;
}

.cta-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.95rem, 1.5vw, 1.05rem);
color: #fef3c7;
line-height: 1.6;
margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.btn-cta-nederlandse-uitspraken-essentieel {
background: #ffffff;
color: #f97316;
font-weight: 700;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
border-radius: var(--radius-lg);
display: inline-block;
transition: all 0.3s ease;
}

.btn-cta-nederlandse-uitspraken-essentieel:hover {
background: #fef3c7;
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-nederlandse-uitspraken-essentieel {
background: #f8fafc;
padding: clamp(2.5rem, 5vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-nederlandse-uitspraken-essentieel {
max-width: 800px;
margin: 0 auto;
background: #ffffff;
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: var(--radius-lg);
border-left: 4px solid #0ea5e9;
}

.disclaimer-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.15rem, 2vw, 1.4rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 0.75rem;
}

.disclaimer-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.9rem, 1.3vw, 1rem);
color: #475569;
line-height: 1.7;
margin: 0;
}

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

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

.related-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.75rem, 4vw, 2.5rem);
color: #0f172a;
font-family: 'Merriweather', serif;
font-weight: 700;
margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
text-align: center;
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-subtitle-nederlandse-uitspraken-essentieel {
font-size: clamp(1rem, 1.5vw, 1.1rem);
color: #64748b;
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-nederlandse-uitspraken-essentieel {
flex: 1 1 calc(33.333% - 1.33rem);
min-width: 280px;
max-width: 350px;
background: #ffffff;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}

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

.related-image-wrapper-nederlandse-uitspraken-essentieel {
width: 100%;
height: 200px;
overflow: hidden;
background: #f1f5f9;
}

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

.related-card-title-nederlandse-uitspraken-essentieel {
font-size: clamp(1.05rem, 1.8vw, 1.25rem);
color: #0f172a;
font-weight: 700;
margin: 0;
padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
line-height: 1.3;
}

.related-card-text-nederlandse-uitspraken-essentieel {
font-size: clamp(0.9rem, 1.2vw, 1rem);
color: #64748b;
line-height: 1.6;
padding: 0 clamp(1rem, 2vw, 1.5rem);
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
flex: 1;
}

.related-link-nederlandse-uitspraken-essentieel {
display: inline-block;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
color: #f97316;
font-weight: 600;
font-size: clamp(0.9rem, 1.2vw, 1rem);
text-decoration: none;
transition: color 0.3s ease;
}

.related-link-nederlandse-uitspraken-essentieel:hover {
color: #ea580c;
}

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

@media (max-width: 768px) {
.related-cards-nederlandse-uitspraken-essentieel {
flex-direction: column;
gap: 1rem;
}

.related-card-nederlandse-uitspraken-essentieel {
flex: 1 1 100%;
max-width: 100%;
}

.related-image-wrapper-nederlandse-uitspraken-essentieel {
height: 180px;
}
}

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

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

.main-dagelijkse-nederlands-gesprekken {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-dagelijkse-nederlands-gesprekken {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-dagelijkse-nederlands-gesprekken {
  font-size: 0.9rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-dagelijkse-nederlands-gesprekken i {
  color: #f97316;
  font-size: 1rem;
}

.hero-image-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-dagelijkse-nederlands-gesprekken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs-dagelijkse-nederlands-gesprekken a {
  color: #fed7aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-dagelijkse-nederlands-gesprekken a:hover {
  color: #ffedd5;
}

.breadcrumbs-dagelijkse-nederlands-gesprekken span {
  color: #64748b;
}

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

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

  .hero-img-dagelijkse-nederlands-gesprekken {
    max-height: 300px;
  }
}

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

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

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

.intro-title-dagelijkse-nederlands-gesprekken {
  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);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.intro-paragraph-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

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

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

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

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

  .intro-img-dagelijkse-nederlands-gesprekken {
    max-height: 300px;
  }
}

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

.strategies-header-dagelijkse-nederlands-gesprekken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.strategies-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.strategies-subtitle-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

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

.strategy-card-dagelijkse-nederlands-gesprekken {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.strategy-card-dagelijkse-nederlands-gesprekken:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-number-dagelijkse-nederlands-gesprekken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f97316;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-family: 'Merriweather', serif;
  line-height: 1;
}

.card-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.card-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 768px) {
  .strategy-card-dagelijkse-nederlands-gesprekken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.phrases-text-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-title-dagelijkse-nederlands-gesprekken {
  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);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.phrases-intro-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.phrases-list-dagelijkse-nederlands-gesprekken {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.phrase-item-dagelijkse-nederlands-gesprekken {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #f97316;
  border-radius: 4px;
}

.phrase-label-dagelijkse-nederlands-gesprekken {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.phrase-text-dagelijkse-nederlands-gesprekken {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.phrases-image-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .phrases-content-dagelijkse-nederlands-gesprekken {
    flex-direction: column;
  }

  .phrases-text-dagelijkse-nederlands-gesprekken,
  .phrases-image-dagelijkse-nederlands-gesprekken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .phrases-img-dagelijkse-nederlands-gesprekken {
    max-height: 300px;
  }
}

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

.mistakes-header-dagelijkse-nederlands-gesprekken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.mistakes-subtitle-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

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

.mistake-card-dagelijkse-nederlands-gesprekken {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.mistake-card-dagelijkse-nederlands-gesprekken:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.mistake-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.mistake-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

.practice-image-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-text-dagelijkse-nederlands-gesprekken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-dagelijkse-nederlands-gesprekken {
  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);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.practice-paragraph-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.practice-tips-dagelijkse-nederlands-gesprekken {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-dagelijkse-nederlands-gesprekken {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid #e2e8f0;
}

.tip-item-dagelijkse-nederlands-gesprekken:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tip-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Merriweather', serif;
}

.tip-text-dagelijkse-nederlands-gesprekken {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

  .practice-img-dagelijkse-nederlands-gesprekken {
    max-height: 300px;
  }
}

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

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

.conclusion-header-dagelijkse-nederlands-gesprekken {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.conclusion-quote-dagelijkse-nederlands-gesprekken {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f97316;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 4px;
}

.quote-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: #fed7aa;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.conclusion-paragraph-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.conclusion-action-dagelijkse-nederlands-gesprekken {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.action-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #fed7aa;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

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

.disclaimer-box-dagelijkse-nederlands-gesprekken {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #0ea5e9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclaimer-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.disclaimer-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

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

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

.related-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  letter-spacing: -0.02em;
}

.related-subtitle-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

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

.related-card-dagelijkse-nederlands-gesprekken {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.related-card-dagelijkse-nederlands-gesprekken:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

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

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

.related-card-title-dagelijkse-nederlands-gesprekken {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

.related-card-text-dagelijkse-nederlands-gesprekken {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
}

.related-link-dagelijkse-nederlands-gesprekken {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-link-dagelijkse-nederlands-gesprekken:hover {
  color: #ea580c;
}

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

@media (max-width: 768px) {
  .hero-section-dagelijkse-nederlands-gesprekken {
    padding: 2rem 0;
  }

  .intro-section-dagelijkse-nederlands-gesprekken,
  .strategies-section-dagelijkse-nederlands-gesprekken,
  .phrases-section-dagelijkse-nederlands-gesprekken,
  .mistakes-section-dagelijkse-nederlands-gesprekken,
  .practice-section-dagelijkse-nederlands-gesprekken,
  .conclusion-section-dagelijkse-nederlands-gesprekken,
  .disclaimer-section-dagelijkse-nederlands-gesprekken,
  .related-section-dagelijkse-nederlands-gesprekken {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title-dagelijkse-nederlands-gesprekken {
    font-size: 1.75rem;
  }

  .intro-title-dagelijkse-nederlands-gesprekken,
  .strategies-title-dagelijkse-nederlands-gesprekken,
  .phrases-title-dagelijkse-nederlands-gesprekken,
  .mistakes-title-dagelijkse-nederlands-gesprekken,
  .practice-title-dagelijkse-nederlands-gesprekken,
  .conclusion-title-dagelijkse-nederlands-gesprekken {
    font-size: 1.4rem;
  }

  .hero-subtitle-dagelijkse-nederlands-gesprekken,
  .phrases-intro-dagelijkse-nederlands-gesprekken,
  .practice-paragraph-dagelijkse-nederlands-gesprekken,
  .conclusion-paragraph-dagelijkse-nederlands-gesprekken {
    font-size: 0.9rem;
  }

  .hero-meta-dagelijkse-nederlands-gesprekken {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-item-dagelijkse-nederlands-gesprekken {
    font-size: 0.85rem;
  }
}

.main-nuttige-nederlandse-woorden {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-nuttige-nederlandse-woorden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw, 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-nuttige-nederlandse-woorden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

.meta-item-nuttige-nederlandse-woorden {
  color: #94a3b8;
}

.meta-separator-nuttige-nederlandse-woorden {
  color: #475569;
}

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

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

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

  .hero-text-block-nuttige-nederlandse-woorden,
  .hero-image-block-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-nuttige-nederlandse-woorden {
    font-size: 1.75rem;
  }
}

.breadcrumbs-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9rem;
}

.breadcrumbs-nuttige-nederlandse-woorden a {
  color: #fed7aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs-nuttige-nederlandse-woorden span {
  color: #475569;
}

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

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

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

.intro-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-box-nuttige-nederlandse-woorden {
  background: #f8fafc;
  border-left: 4px solid #f97316;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.highlight-title-nuttige-nederlandse-woorden {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-list-nuttige-nederlandse-woorden {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-nuttige-nederlandse-woorden {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-nuttige-nederlandse-woorden::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .intro-content-nuttige-nederlandse-woorden {
    flex-direction: column;
  }

  .intro-text-nuttige-nederlandse-woorden,
  .intro-highlight-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.words-foundation-nuttige-nederlandse-woorden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.words-foundation-text-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.words-foundation-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.words-foundation-paragraph-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.words-foundation-image-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .words-foundation-content-nuttige-nederlandse-woorden {
    flex-direction: column;
  }

  .words-foundation-text-nuttige-nederlandse-woorden,
  .words-foundation-image-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.vocabulary-strategy-nuttige-nederlandse-woorden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.vocabulary-strategy-image-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.vocabulary-strategy-text-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.vocabulary-strategy-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.vocabulary-strategy-paragraph-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .vocabulary-strategy-content-nuttige-nederlandse-woorden {
    flex-direction: column;
  }

  .vocabulary-strategy-image-nuttige-nederlandse-woorden,
  .vocabulary-strategy-text-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.thematic-groups-nuttige-nederlandse-woorden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.thematic-groups-content-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.thematic-groups-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

.thematic-groups-intro-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.groups-grid-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.group-card-nuttige-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: all 0.3s ease;
}

.group-card-nuttige-nederlandse-woorden:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.group-card-title-nuttige-nederlandse-woorden {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.group-card-text-nuttige-nederlandse-woorden {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .group-card-nuttige-nederlandse-woorden {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

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

.advanced-words-nuttige-nederlandse-woorden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.advanced-words-text-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-words-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.advanced-words-paragraph-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.advanced-words-image-nuttige-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .advanced-words-content-nuttige-nederlandse-woorden {
    flex-direction: column;
  }

  .advanced-words-text-nuttige-nederlandse-woorden,
  .advanced-words-image-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-tips-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tips-container-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-block-nuttige-nederlandse-woorden {
  flex: 1 1 calc(50% - 1.5rem);
  max-width: 400px;
  background: #f8fafc;
  border-left: 4px solid #f97316;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-number-nuttige-nederlandse-woorden {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #f97316;
  flex-shrink: 0;
  min-width: 50px;
}

.tip-content-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-title-nuttige-nederlandse-woorden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.tip-text-nuttige-nederlandse-woorden {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-block-nuttige-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-main-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.conclusion-quote-nuttige-nederlandse-woorden {
  border-left: 4px solid #fed7aa;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  font-style: italic;
}

.quote-text-nuttige-nederlandse-woorden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #fed7aa;
  line-height: 1.6;
}

.conclusion-final-nuttige-nederlandse-woorden {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.cta-box-nuttige-nederlandse-woorden {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
}

.cta-title-nuttige-nederlandse-woorden {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.cta-text-nuttige-nederlandse-woorden {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-button-nuttige-nederlandse-woorden {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  color: #f97316;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cta-button-nuttige-nederlandse-woorden:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.disclaimer-section-nuttige-nederlandse-woorden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-nuttige-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #0ea5e9;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 8px;
}

.disclaimer-title-nuttige-nederlandse-woorden {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.disclaimer-text-nuttige-nederlandse-woorden {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

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

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

.related-title-nuttige-nederlandse-woorden {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

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

.related-card-nuttige-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.related-card-nuttige-nederlandse-woorden:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-card-image-nuttige-nederlandse-woorden {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.related-card-img-nuttige-nederlandse-woorden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-card-text-nuttige-nederlandse-woorden {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex: 1;
}

.related-card-title-nuttige-nederlandse-woorden {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-desc-nuttige-nederlandse-woorden {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-nuttige-nederlandse-woorden {
  display: inline-block;
  color: #fed7aa;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-nuttige-nederlandse-woorden:hover {
  color: #ffedd5;
  text-decoration: underline;
}

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

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

@media (max-width: 768px) {
  .hero-section-nuttige-nederlandse-woorden {
    padding: 2rem 0;
  }

  .intro-section-nuttige-nederlandse-woorden,
  .words-foundation-nuttige-nederlandse-woorden,
  .vocabulary-strategy-nuttige-nederlandse-woorden,
  .thematic-groups-nuttige-nederlandse-woorden,
  .advanced-words-nuttige-nederlandse-woorden,
  .practical-tips-nuttige-nederlandse-woorden,
  .conclusion-nuttige-nederlandse-woorden,
  .related-section-nuttige-nederlandse-woorden {
    padding: 2rem 0;
  }

  .tip-block-nuttige-nederlandse-woorden {
    flex-direction: column;
  }

  .tip-number-nuttige-nederlandse-woorden {
    min-width: auto;
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

.nederlands-journey-about {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  text-align: center;
  max-width: 700px;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.hero-stats-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  text-align: center;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.origin-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.origin-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.origin-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e2e8f0;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.origin-text-about p {
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.origin-text-about p:last-child {
  margin-bottom: 0;
}

.origin-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

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

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

.methodology-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methodology-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: var(--lh-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.4rem, 1.1rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(249, 115, 22, 0.15);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  height: 50px;
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-visual-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

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

.philosophy-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e2e8f0;
  line-height: var(--lh-relaxed);
  max-width: 900px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.philosophy-text-about p {
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.philosophy-text-about p:last-child {
  margin-bottom: 0;
}

.featured-quote-about {
  background: rgba(249, 115, 22, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  max-width: 800px;
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  display: block;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .step-number-about {
    min-width: 60px;
  }

  .approach-features-about {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .stat-item-about {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 120px;
  }
}

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

  .stat-item-about {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .stat-number-about {
    font-size: 1.5rem;
  }

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

  .step-number-about {
    min-width: 50px;
    font-size: 1.75rem;
  }
}

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

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

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

.portfolio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--ls-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-normal);
  margin: 0;
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
}

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

.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: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin: 0 0 var(--space-sm) 0;
  display: inline-block;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--ls-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-detail-item {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
  font-weight: var(--fw-medium);
}

.portfolio-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--ls-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-xl) 0;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: var(--fw-semibold);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  letter-spacing: var(--ls-normal);
}

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

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.faq-page {
  width: 100%;
  overflow: hidden;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  background-color: var(--color-bg-secondary);
  border: none;
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

.faq-question[aria-expanded="true"] {
  background-color: var(--color-bg-tertiary);
}

.faq-question-text {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-light-primary);
  text-align: left;
  line-height: var(--lh-normal);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  background-color: var(--color-primary-hover);
  transform: rotate(45deg);
}

.faq-answer {
  background-color: #f8f9fa;
  padding: var(--space-md);
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
  animation: slideDown 0.3s ease forwards;
}

.faq-answer[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-question {
    padding: var(--space-lg);
  }

  .faq-answer {
    padding: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: var(--fw-semibold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-text {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
}

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

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-xl);
  font-weight: var(--fw-regular);
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-light-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-regular);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs ul li {
  list-style-type: disc;
}

.legal-docs strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-light-primary);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

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

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

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

  .legal-docs .content {
    padding: var(--space-4xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-2xl);
  border: 2px solid var(--color-accent-green);
}

.success-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent-green);
  stroke-width: 2;
}

.thank-you-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}

.success-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

.follow-up {
  font-size: clamp(0.9rem, 1vw + 0.45rem, 1.05rem);
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--fw-semibold);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  letter-spacing: var(--ls-normal);
}

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

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

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

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

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
    min-height: 100vh;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-2xl);
  }

  .success-icon svg {
    width: 56px;
    height: 56px;
  }

  .thank-you-wrapper h1 {
    margin-bottom: var(--space-lg);
  }

  .success-message {
    margin-bottom: var(--space-xl);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
  }

  .follow-up {
    margin-bottom: var(--space-2xl);
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  }

  .btn-return {
    padding: var(--space-md) var(--space-2xl);
    font-size: clamp(1rem, 1.1vw, 1.2rem);
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

  .success-icon {
    width: 120px;
    height: 120px;
  }

  .success-icon svg {
    width: 64px;
    height: 64px;
  }

  .thank-you-wrapper h1 {
    margin-bottom: var(--space-xl);
  }

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

  .follow-up {
    margin-bottom: var(--space-2xl);
  }

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

  .btn-return:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-wrapper {
    animation: none;
  }

  .btn-return {
    transition: background-color 0.3s ease;
  }

  .btn-return:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-light-primary);
  }

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

  .success-icon {
    background-color: var(--color-bg-tertiary);
    border-color: var(--color-accent-green);
  }

  .thank-you-wrapper h1 {
    color: var(--color-text-light-primary);
  }

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

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

  .btn-return {
    background-color: var(--color-primary);
    color: var(--color-text-dark-primary);
  }

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

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.error-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--ls-wide);
  position: relative;
  z-index: 2;
  line-height: 1;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: rotate-slow 20s linear infinite;
  z-index: 1;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-dark-primary);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.error-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-sm);
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  text-align: left;
}

.suggestions-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestion-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-normal);
}

.suggestion-icon {
  color: var(--color-accent-green);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

.suggestion-text {
  flex: 1;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

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

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

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .content {
    gap: var(--space-xl);
  }

  .error-visual {
    height: 250px;
    margin-bottom: var(--space-lg);
  }

  .error-suggestions {
    padding: var(--space-xl);
  }

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

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-xl);
    min-height: 100vh;
  }

  .error-visual {
    height: 300px;
  }

  .error-message {
    gap: var(--space-xl);
  }

  .error-suggestions {
    padding: var(--space-2xl);
  }

  .suggestions-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-inquiries {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  overflow: hidden;
}

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

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

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

.contact-inquiries-hero {
  background: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-inquiries-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-inquiries-hero-content {
  text-align: center;
}

.contact-inquiries-hero-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.contact-inquiries-hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}

.contact-inquiries-main {
  background: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-inquiries-main {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-main {
    padding: var(--space-4xl) 0;
  }
}

.contact-inquiries-main-content {
  width: 100%;
}

.contact-inquiries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

@media (max-width: 767px) {
  .contact-inquiries-grid {
    gap: var(--space-2xl);
  }
}

.contact-inquiries-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-inquiries-form-wrapper {
    flex: 1 1 400px;
  }
}

.contact-inquiries-form-header {
  margin-bottom: var(--space-xl);
}

.contact-inquiries-form-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.contact-inquiries-form-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-normal);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}

.contact-inquiries-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-inquiries-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.contact-inquiries-label {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark-secondary);
  display: block;
}

.contact-inquiries-input,
.contact-inquiries-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--fw-regular);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.contact-inquiries-input:focus,
.contact-inquiries-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(249, 115, 22, 0.05);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-inquiries-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-inquiries-form-privacy {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-inquiries-form-privacy-text {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-dark-muted);
  line-height: var(--lh-normal);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}

.contact-inquiries-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color 0.3s ease;
}

.contact-inquiries-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-inquiries-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-light-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: var(--ls-normal);
}

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

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

.contact-inquiries-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

.contact-inquiries-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-inquiries-info-wrapper {
    flex: 1 1 400px;
  }
}

.contact-inquiries-info-header {
  margin-bottom: var(--space-xl);
}

.contact-inquiries-info-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.contact-inquiries-info-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--lh-normal);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}

.contact-inquiries-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-inquiries-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-inquiries-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-inquiries-info-content {
  flex: 1;
}

.contact-inquiries-info-label {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-xs) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.contact-inquiries-info-value {
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-xs) 0;
  line-height: var(--lh-normal);
}

.contact-inquiries-info-detail {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: var(--color-text-dark-muted);
  margin: 0;
  line-height: var(--lh-normal);
}

.contact-inquiries-info-cta {
  padding: var(--space-lg);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-inquiries-cta-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.contact-inquiries-cta-text {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--lh-relaxed);
}

@media (max-width: 767px) {
  .contact-inquiries-grid {
    flex-direction: column;
  }

  .contact-inquiries-form-wrapper,
  .contact-inquiries-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-inquiries-info-items {
    gap: var(--space-md);
  }

  .contact-inquiries-submit {
    padding: var(--space-md) var(--space-md);
  }
}

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