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

:root {
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-overlay: rgba(10, 15, 30, 0.8);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fcd34d;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

strong, b {
  font-weight: 600;
  color: var(--color-text-primary);
}

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

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

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

.btn-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

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

.btn-ghost:hover {
  background: rgba(245, 158, 11, 0.1);
}

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

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

input, textarea, select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

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

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

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

.card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.card-elevated {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

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

.badge-secondary {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}

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

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

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

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

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

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

.flex {
  display: flex;
}

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

.flex-between {
  justify-content: space-between;
}

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

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

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

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

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

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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

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

header {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

nav a {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  nav {
    gap: var(--space-md);
    font-size: 0.9rem;
  }
}

.hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--space-3xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

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

@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

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

.feature p {
  font-size: 0.95rem;
}

.cta {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

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

.cta p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-3xl);
}

footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

footer h4 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

footer a {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 640px) {
  footer .container {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.w-full {
  width: 100%;
}

.max-w-full {
  max-width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.border {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

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

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

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

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

.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 (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  nav {
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  button, .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}
.header-taal-navigator {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  z-index: 100;
  overflow: hidden;
}

.header-taal-navigator-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;
  gap: clamp(1rem, 3vw, 2rem);
  height: clamp(4rem, 8vw, 5rem);
}

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

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

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

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

.header-taal-navigator-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
}

.header-taal-navigator-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  transition: color var(--transition-base);
  padding: 0.5rem 0;
}

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

.header-taal-navigator-cta-button {
  display: none;
  background: var(--color-primary);
  color: #0a0f1e;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
  flex-shrink: 0;
}

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

.header-taal-navigator-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

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

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

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

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

.header-taal-navigator-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-overlay);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
  padding-top: clamp(4rem, 8vw, 5rem);
}

.header-taal-navigator-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  height: 100vh;
 
}

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

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

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

.header-taal-navigator-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  z-index: 9999;
}

.header-taal-navigator-mobile-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-base);
}

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

.header-taal-navigator-mobile-cta {
  display: block;
  background: var(--color-primary);
  color: #0a0f1e;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: 1rem clamp(1rem, 4vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  transition: background var(--transition-base);
}

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

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

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

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

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

    .language-hub {
  width: 100%;
}

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

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

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

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

.section-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.section-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

.feature-icon-index {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #f59e0b;
}

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

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

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

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

.process-content-index {
  display: flex;
  flex-direction: column;
}

.process-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.process-step-index {
  flex: 1 1 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #ffffff;
  margin: 0;
}

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

@media (max-width: 768px) {
  .process-step-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.about-paragraph-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

.benefit-icon-index {
  color: #f59e0b;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #e2e8f0;
}

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

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

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

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

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

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

.posts-content-index {
  display: flex;
  flex-direction: column;
}

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.featured-post-card-index:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

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

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

.post-card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.post-card-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

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

.post-card-link-index:hover {
  color: #fcd34d;
}

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

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

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

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

.testimonials-content-index {
  display: flex;
  flex-direction: column;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

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

.testimonial-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #e2e8f0;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: #f59e0b;
}

.author-location-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
}

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

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

.faq-content-index {
  display: flex;
  flex-direction: column;
}

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

.faq-item-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question-index {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question-index:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question-title-index {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.faq-toggle-icon-index {
  font-size: 1.5rem;
  color: #f59e0b;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-index.open .faq-toggle-icon-index {
  transform: rotate(45deg);
}

.faq-answer-index {
  padding: 0 clamp(1.25rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-index.open .faq-answer-index {
  max-height: 500px;
  padding-top: clamp(1.25rem, 2vw, 1.5rem);
}

.faq-answer-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

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

.expertise-content-index {
  display: flex;
  flex-direction: column;
}

.expertise-points-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.expertise-point-index {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point-number-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.point-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #ffffff;
  margin: 0;
}

.point-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .expertise-point-index {
    flex: 1 1 100%;
  }
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(10px);
}

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

.cta-box-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.btn-lg-index {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 3vw, 2.5rem);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.cta-box-subtext-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-index {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cta-link-index:hover {
  color: #fcd34d;
}

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

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

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

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

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: #f59e0b;
  color: #000000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

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

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-decline:hover {
  border-color: rgba(245, 158, 11, 0.6);
  color: #f59e0b;
}

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

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

  .cookie-banner-buttons {
    flex: 1 1 100%;
    width: 100%;
  }

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

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

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

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

  .featured-posts-index {
    flex-direction: column;
  }

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

  .testimonials-grid-index {
    flex-direction: column;
  }

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

  .expertise-points-index {
    flex-direction: column;
  }

  .expertise-point-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.125rem);
}

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

.footer-nav {
  display: block;
}

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

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-nav-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.footer-contact {
  display: block;
}

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

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

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

.footer-legal {
  display: block;
}

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

.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-legal-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
  }
}

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

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

.category-page-dutch-language-relocation {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-dutch-language-relocation {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-dutch-language-relocation {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-subtitle-dutch-language-relocation {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.hero-stats-dutch-language-relocation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.stat-item-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-dutch-language-relocation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-dutch-language-relocation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.posts-section-dutch-language-relocation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.posts-content-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

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

.posts-title-dutch-language-relocation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1vw, 1.25rem);
  line-height: 1.2;
}

.posts-subtitle-dutch-language-relocation {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card-dutch-language-relocation {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card-dutch-language-relocation:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.card-image-wrapper-dutch-language-relocation {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.card-image-wrapper-dutch-language-relocation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.card-title-dutch-language-relocation {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-dutch-language-relocation {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
  flex: 1;
}

.card-meta-dutch-language-relocation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.meta-item-dutch-language-relocation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
}

.meta-item-dutch-language-relocation i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.card-link-dutch-language-relocation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  transition: all var(--transition-fast);
  margin-top: auto;
}

.card-link-dutch-language-relocation:hover {
  color: var(--color-primary-light);
  gap: 0.75rem;
}

.tips-section-dutch-language-relocation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.tips-header-dutch-language-relocation {
  text-align: center;
}

.tips-title-dutch-language-relocation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
}

.tips-subtitle-dutch-language-relocation {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.tip-card-dutch-language-relocation {
  flex: 1 1 clamp(280px, 100%, 350px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.tip-card-dutch-language-relocation:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.tip-number-dutch-language-relocation {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tip-title-dutch-language-relocation {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.tip-text-dutch-language-relocation {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.faq-section-dutch-language-relocation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.faq-content-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 850px;
  margin: 0 auto;
}

.faq-title-dutch-language-relocation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.faq-subtitle-dutch-language-relocation {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 0;
}

.faq-items-dutch-language-relocation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item-dutch-language-relocation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item-dutch-language-relocation[open] {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.faq-question-dutch-language-relocation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--color-text-primary);
  user-select: none;
  list-style: none;
}

.faq-question-dutch-language-relocation:hover {
  color: var(--color-primary);
}

.faq-question-dutch-language-relocation::marker {
  content: '';
}

.faq-item-dutch-language-relocation > summary::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item-dutch-language-relocation[open] > summary::before {
  content: '';
}

.faq-answer-dutch-language-relocation {
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

@media (max-width: 768px) {
  .hero-stats-dutch-language-relocation {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-item-dutch-language-relocation {
    flex: 1 1 45%;
  }

  .posts-grid-dutch-language-relocation {
    flex-direction: column;
    align-items: center;
  }

  .card-dutch-language-relocation {
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
  }

  .tips-grid-dutch-language-relocation {
    flex-direction: column;
    align-items: stretch;
  }

  .tip-card-dutch-language-relocation {
    flex: 1 1 auto;
    width: 100%;
  }

  .faq-content-dutch-language-relocation {
    width: 100%;
  }

  .card-meta-dutch-language-relocation {
    gap: 0.75rem;
  }

  .meta-item-dutch-language-relocation {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-dutch-language-relocation {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .stat-item-dutch-language-relocation {
    flex: 1 1 100%;
  }

  .card-image-wrapper-dutch-language-relocation {
    height: 180px;
  }

  .card-body-dutch-language-relocation {
    gap: 1rem;
    padding: 1.25rem;
  }

  .card-meta-dutch-language-relocation {
    flex-direction: column;
    gap: 0.5rem;
  }

  .faq-question-dutch-language-relocation {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer-dutch-language-relocation {
    padding: 0 1rem 1rem;
  }
}

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

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

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

.main-nederlandse-apps-gratis-leren {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
}

.breadcrumbs-nederlandse-apps-gratis-leren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-nederlandse-apps-gratis-leren a {
  color: #2563eb;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-apps-gratis-leren a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-apps-gratis-leren {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.breadcrumb-current-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: 0.9rem;
}

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

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

.hero-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-nederlandse-apps-gratis-leren {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.meta-item-nederlands-apps-gratis-leren {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.meta-divider-nederlandse-apps-gratis-leren {
  color: #cbd5e1;
}

.hero-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-nederlandse-apps-gratis-leren {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text-block-nederlandse-apps-gratis-leren,
  .hero-image-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-title-nederlandse-apps-gratis-leren {
    font-size: 1.75rem;
  }
  
  .hero-subtitle-nederlandse-apps-gratis-leren {
    font-size: 1rem;
  }
}

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

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

.intro-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.intro-paragraph-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-paragraph-nederlandse-apps-gratis-leren:last-child {
  margin-bottom: 0;
}

.intro-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-nederlandse-apps-gratis-leren {
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-text-block-nederlandse-apps-gratis-leren,
  .intro-image-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

.tools-section-nederlandse-apps-gratis-leren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-nederlandse-apps-gratis-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.tools-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.tools-subtitle-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.tools-content-nederlandse-apps-gratis-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tools-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-subheading-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.tools-text-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tools-text-nederlandse-apps-gratis-leren:last-child {
  margin-bottom: 0;
}

.tools-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .tools-content-nederlandse-apps-gratis-leren {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tools-text-block-nederlandse-apps-gratis-leren,
  .tools-image-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tools-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

.methods-section-nederlandse-apps-gratis-leren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-nederlandse-apps-gratis-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methods-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-subheading-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.methods-text-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.methods-text-nederlandse-apps-gratis-leren:last-child {
  margin-bottom: 0;
}

.methods-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .methods-content-nederlandse-apps-gratis-leren {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .methods-image-block-nederlandse-apps-gratis-leren,
  .methods-text-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-nederlandse-apps-gratis-leren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-nederlandse-apps-gratis-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.practice-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.practice-subtitle-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.practice-content-nederlandse-apps-gratis-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-subheading-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.practice-text-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice-text-nederlandse-apps-gratis-leren:last-child {
  margin-bottom: 0;
}

.practice-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .practice-content-nederlandse-apps-gratis-leren {
    flex-direction: column;
    gap: 2rem;
  }
  
  .practice-text-block-nederlandse-apps-gratis-leren,
  .practice-image-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .practice-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

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

.resources-content-nederlandse-apps-gratis-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.resources-image-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-text-block-nederlandse-apps-gratis-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-subheading-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.resources-text-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resources-text-nederlandse-apps-gratis-leren:last-child {
  margin-bottom: 0;
}

.resources-image-nederlandse-apps-gratis-leren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .resources-content-nederlandse-apps-gratis-leren {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .resources-image-block-nederlandse-apps-gratis-leren,
  .resources-text-block-nederlandse-apps-gratis-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-header-nederlandse-apps-gratis-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.tips-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.tips-subtitle-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-nederlandse-apps-gratis-leren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-nederlandse-apps-gratis-leren {
  flex: 1 1 280px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-card-nederlandse-apps-gratis-leren:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tip-number-nederlandse-apps-gratis-leren {
  color: #2563eb;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.tip-heading-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

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

@media (max-width: 768px) {
  .tips-cards-nederlandse-apps-gratis-leren {
    flex-direction: column;
  }
  
  .tip-card-nederlandse-apps-gratis-leren {
    max-width: 100%;
  }
  
  .tips-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

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

.conclusion-content-nederlandse-apps-gratis-leren {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-nederlandse-apps-gratis-leren {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-text-nederlandse-apps-gratis-leren:last-of-type {
  margin-bottom: 2rem;
}

.conclusion-cta-nederlandse-apps-gratis-leren {
  text-align: center;
}

.cta-link-nederlandse-apps-gratis-leren {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-link-nederlandse-apps-gratis-leren:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

.disclaimer-section-nederlandse-apps-gratis-leren {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlandse-apps-gratis-leren {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #64748b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

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

.related-header-nederlandse-apps-gratis-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-nederlandse-apps-gratis-leren {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.related-subtitle-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-apps-gratis-leren {
  flex: 1 1 320px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-nederlandse-apps-gratis-leren:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

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

.related-card-nederlandse-apps-gratis-leren:hover .related-card-image-nederlandse-apps-gratis-leren {
  transform: scale(1.05);
}

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

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

.related-card-description-nederlandse-apps-gratis-leren {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .related-cards-nederlandse-apps-gratis-leren {
    flex-direction: column;
  }
  
  .related-card-nederlandse-apps-gratis-leren {
    max-width: 100%;
  }
  
  .related-title-nederlandse-apps-gratis-leren {
    font-size: 1.5rem;
  }
}

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

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

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

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

a {
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .breadcrumbs-nederlandse-apps-gratis-leren {
    font-size: 0.85rem;
  }
}

.main-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-nederlandse-woordenschat-beginner {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.breadcrumbs-nederlandse-woordenschat-beginner a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-nederlandse-woordenschat-beginner a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs-nederlandse-woordenschat-beginner span {
  color: var(--color-text-muted);
}

.hero-content-nederlandse-woordenschat-beginner {
  max-width: 700px;
}

.hero-meta-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  align-items: center;
}

.meta-badge-nederlandse-woordenschat-beginner {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.meta-separator-nederlandse-woordenschat-beginner {
  color: var(--color-text-muted);
}

.meta-time-nederlandse-woordenschat-beginner,
.meta-date-nederlandse-woordenschat-beginner {
  color: var(--color-text-secondary);
}

.hero-title-nederlandse-woordenschat-beginner {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.hero-subtitle-nederlandse-woordenschat-beginner {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-stats-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-lg);
}

.stat-item-nederlandse-woordenschat-beginner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stat-number-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.hero-image-Nederlandse-woordenschat-beginner {
  width: 100%;
  max-width: 100%;
  margin-top: var(--space-xl);
}

.hero-img-nederlandse-woordenschat-beginner {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .hero-section-nederlandse-woordenschat-beginner {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .hero-stats-nederlandse-woordenschat-beginner {
    gap: var(--space-lg);
  }
}

.intro-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.intro-paragraph-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-highlight-nederlandse-woordenschat-beginner {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-text-nederlandse-woordenschat-beginner {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.6;
}

.intro-image-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-nederlandse-woordenschat-beginner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

.categories-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.categories-content-nederlandse-woordenschat-beginner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.categories-header-nederlandse-woordenschat-beginner {
  text-align: center;
}

.categories-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.categories-subtitle-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
}

.categories-grid-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-nederlandse-woordenschat-beginner {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.category-card-nederlandse-woordenschat-beginner:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.card-icon-nederlandse-woordenschat-beginner {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.card-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

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

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

.learning-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.learning-text-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.learning-paragraph-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.learning-tips-nederlandse-woordenschat-beginner {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.tips-heading-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.tips-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.learning-image-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-img-nederlandse-woordenschat-beginner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .learning-content-nederlandse-woordenschat-beginner {
    flex-direction: column;
  }

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

.strategies-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.strategies-content-nederlandse-woordenschat-beginner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.strategies-header-nederlandse-woordenschat-beginner {
  text-align: center;
}

.strategies-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.strategies-subtitle-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
}

.strategies-steps-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-nederlandse-woordenschat-beginner {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.step-card-nederlandse-woordenschat-beginner:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.step-number-nederlandse-woordenschat-beginner {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.step-content-nederlandse-woordenschat-beginner {
  text-align: left;
}

.step-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.step-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.practice-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.practice-image-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-nederlandse-woordenschat-beginner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.practice-text-nederlandse-woordenschat-beginner {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.practice-paragraph-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.practice-quote-nederlandse-woordenschat-beginner {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.quote-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.quote-author-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  display: block;
}

@media (max-width: 768px) {
  .practice-content-nederlandse-woordenschat-beginner {
    flex-direction: column;
  }

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

.resources-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.resources-header-nederlandse-woordenschat-beginner {
  text-align: center;
}

.resources-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.resources-subtitle-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
}

.resources-grid-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resource-card-nederlandse-woordenschat-beginner {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  text-align: center;
}

.resource-card-nederlandse-woordenschat-beginner:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.resource-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.resource-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .resource-card-nederlandse-woordenschat-beginner {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-woordenschat-beginner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.conclusion-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.conclusion-action-nederlandse-woordenschat-beginner {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.action-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.btn-link-nederlandse-woordenschat-beginner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  transition: all var(--transition-base);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.btn-link-nederlandse-woordenschat-beginner:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.disclaimer-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-woordenschat-beginner {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.disclaimer-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.disclaimer-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-nederlandse-woordenschat-beginner {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-align: center;
}

.related-grid-nederlandse-woordenschat-beginner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlandse-woordenschat-beginner {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.related-card-nederlandse-woordenschat-beginner:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.related-image-nederlandse-woordenschat-beginner {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-nederlandse-woordenschat-beginner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

.related-card-title-nederlandse-woordenschat-beginner {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding: 0 var(--space-lg);
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-nederlandse-woordenschat-beginner {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  padding: 0 var(--space-lg);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.related-link-nederlandse-woordenschat-beginner {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: 0 var(--space-lg) var(--space-lg);
  transition: color var(--transition-base);
}

.related-link-nederlandse-woordenschat-beginner:hover {
  color: var(--color-primary-light);
}

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

@media (max-width: 768px) {
  .main-nederlandse-woordenschat-beginner {
    font-size: 0.95rem;
  }

  .hero-section-nederlandse-woordenschat-beginner {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }

  .categories-section-nederlandse-woordenschat-beginner,
  .learning-section-nederlandse-woordenschat-beginner,
  .strategies-section-nederlandse-woordenschat-beginner,
  .practice-section-nederlandse-woordenschat-beginner,
  .resources-section-nederlandse-woordenschat-beginner,
  .conclusion-section-nederlandse-woordenschat-beginner,
  .related-section-nederlandse-woordenschat-beginner {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-nederlandse-woordenschat-beginner {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .breadcrumbs-nederlandse-woordenschat-beginner {
    font-size: 0.7rem;
  }

  .intro-highlight-nederlandse-woordenschat-beginner,
  .learning-tips-nederlandse-woordenschat-beginner,
  .practice-quote-nederlandse-woordenschat-beginner,
  .conclusion-action-nederlandse-woordenschat-beginner,
  .disclaimer-content-nederlandse-woordenschat-beginner {
    padding: var(--space-md);
  }
}

.main-nederlandse-cultuur-directheid {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-nederlandse-cultuur-directheid {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-nederlandse-cultuur-directheid a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-cultuur-directheid a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-cultuur-directheid span {
  color: #94a3b8;
}

.breadcrumbs-nederlandse-cultuur-directheid span:last-child {
  color: #475569;
  font-weight: 500;
}

.hero-meta-nederlandse-cultuur-directheid {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-nederlandse-cultuur-directheid {
  color: #64748b;
  font-weight: 500;
}

.meta-separator-nederlandse-cultuur-directheid {
  color: #cbd5e1;
}

.hero-content-nederlandse-cultuur-directheid {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.hero-subtitle-nederlandse-cultuur-directheid {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
  font-weight: 400;
}

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

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

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

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

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

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

.intro-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-nederlandse-cultuur-directheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.directheid-section-nederlandse-cultuur-directheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

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

.directheid-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.directheid-paragraph-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.directheid-img-nederlandse-cultuur-directheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.directheid-practical-nederlandse-cultuur-directheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.practical-highlight-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
  background: #f0f9ff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

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

.highlight-list-nederlandse-cultuur-directheid {
  list-style: none;
  padding: 0;
}

.highlight-item-nederlandse-cultuur-directheid {
  color: #334155;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.highlight-item-nederlandse-cultuur-directheid strong {
  color: #0f172a;
  font-weight: 600;
}

.practical-image-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-nederlandse-cultuur-directheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.fiets-section-nederlandse-cultuur-directheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.fiets-text-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.fiets-image-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.fiets-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fiets-paragraph-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fiets-img-nederlandse-cultuur-directheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.fiets-culture-nederlandse-cultuur-directheid {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.fiets-culture-nederlandse-cultuur-directheid .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.fiets-culture-content-nederlandse-cultuur-directheid {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.culture-intro-nederlandse-cultuur-directheid {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.culture-subtitle-nederlandse-cultuur-directheid {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.culture-text-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.culture-benefits-nederlandse-cultuur-directheid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-nederlandse-cultuur-directheid {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.benefit-icon-nederlandse-cultuur-directheid {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-text-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

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

.aanpassen-section-nederlandse-cultuur-directheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.aanpassen-text-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.aanpassen-image-nederlandse-cultuur-directheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.aanpassen-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.aanpassen-paragraph-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.aanpassen-img-nederlandse-cultuur-directheid {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.quote-section-nederlandse-cultuur-directheid {
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f9ff 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.featured-quote-nederlandse-cultuur-directheid {
  background: #ffffff;
  border-left: 5px solid #2563eb;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-text-nederlandse-cultuur-directheid {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.quote-author-nederlandse-cultuur-directheid {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
}

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

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

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

.conclusion-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-paragraph-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-nederlandse-cultuur-directheid {
  background: #f0f9ff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-text-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-nederlandse-cultuur-directheid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-nederlandse-cultuur-directheid:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.disclaimer-section-nederlandse-cultuur-directheid {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-cultuur-directheid {
  background: #ffffff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-nederlandse-cultuur-directheid {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

.related-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
}

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

.related-card-nederlandse-cultuur-directheid {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-nederlandse-cultuur-directheid:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

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

.related-card-title-nederlandse-cultuur-directheid {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2vw, 2rem) 0.5rem;
  line-height: 1.4;
}

.related-card-description-nederlandse-cultuur-directheid {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  padding: 0.5rem clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-card-link-nederlandse-cultuur-directheid {
  display: inline-flex;
  padding: 0.75rem clamp(1.5rem, 2vw, 2rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.3s ease;
}

.related-card-link-nederlandse-cultuur-directheid:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-nederlandse-cultuur-directheid {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-nederlandse-cultuur-directheid {
    flex: 1 1 100%;
  }
  
  .hero-section-nederlandse-cultuur-directheid {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .hero-title-nederlandse-cultuur-directheid {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlandse-cultuur-directheid {
    flex-wrap: wrap;
  }
  
  .hero-content-nederlandse-cultuur-directheid {
    gap: clamp(1rem, 3vw, 2rem);
  }
}

.main-nederlands-werkplek-zakelijk {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-content-nederlands-werkplek-zakelijk {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-nederlands-werkplek-zakelijk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-nederlands-werkplek-zakelijk a {
  color: #f59e0b;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-nederlands-werkplek-zakelijk a:hover {
  color: #fcd34d;
}

.breadcrumbs-nederlands-werkplek-zakelijk span {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-nederlands-werkplek-zakelijk span:last-child {
  color: #94a3b8;
  font-weight: 500;
}

.hero-title-Nederlands-werkplek-zakelijk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-nederlands-werkplek-zakelijk {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  max-width: 600px;
}

.hero-meta-nederlands-werkplek-zakelijk {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-item-nederlands-werkplek-zakelijk {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.meta-separator-nederlands-werkplek-zakelijk {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-image-wrapper-nederlands-werkplek-zakelijk {
  width: 100%;
  max-height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

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

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

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

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

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

.intro-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

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

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

.business-phrases-section-nederlands-werkplek-zakelijk {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.phrases-text-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-image-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.phrases-intro-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.phrases-list-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.phrase-item-nederlands-werkplek-zakelijk {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phrase-heading-nederlands-werkplek-zakelijk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.phrase-text-nederlands-werkplek-zakelijk {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.phrase-text-nederlands-werkplek-zakelijk:last-child {
  margin-bottom: 0;
}

.phrases-image-nederlands-werkplek-zakelijk {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

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

.nuances-image-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.nuances-text-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.nuances-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.nuances-intro-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.nuances-subheading-nederlands-werkplek-zakelijk {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  color: #0a0f1e;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.nuances-paragraph-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.nuances-image-nederlands-werkplek-zakelijk {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.confidence-building-section-nederlands-werkplek-zakelijk {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.confidence-text-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.confidence-image-block-nederlands-werkplek-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.confidence-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.confidence-intro-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.confidence-steps-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-card-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  align-items: flex-start;
}

.step-number-nederlands-werkplek-zakelijk {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.step-body-nederlands-werkplek-zakelijk {
  flex: 1;
}

.step-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.step-description-nederlands-werkplek-zakelijk {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.confidence-image-nederlands-werkplek-zakelijk {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

.practical-tips-content-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: column;
}

.practical-tips-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

.tips-grid-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.tip-card-nederlands-werkplek-zakelijk {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 250px;
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card-nederlands-werkplek-zakelijk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tip-icon-nederlands-werkplek-zakelijk {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  display: block;
}

.tip-card-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0a0f1e;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.tip-card-text-nederlands-werkplek-zakelijk {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.tips-highlight-box-nederlands-werkplek-zakelijk {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.tips-highlight-text-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0;
}

.tips-highlight-text-nederlands-werkplek-zakelijk strong {
  color: #f59e0b;
}

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

.conclusion-content-nederlands-werkplek-zakelijk {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-wrapper-nederlands-werkplek-zakelijk {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-paragraph-nederlands-werkplek-zakelijk {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.7;
}

.conclusion-cta-box-nederlands-werkplek-zakelijk {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
}

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

.cta-description-nederlands-werkplek-zakelijk {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.6;
}

.cta-button-nederlands-werkplek-zakelijk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #f59e0b;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.cta-button-nederlands-werkplek-zakelijk:hover {
  background: #d97706;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.related-posts-section-nederlands-werkplek-zakelijk {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-posts-content-nederlands-werkplek-zakelijk {
  display: flex;
  flex-direction: column;
}

.related-posts-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-align: center;
}

.related-posts-subtitle-nederlands-werkplek-zakelijk {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

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

.related-post-card-nederlands-werkplek-zakelijk {
  flex: 1 1 calc(33.333% - 1.667rem);
  min-width: 280px;
  max-width: 400px;
  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;
}

.related-post-card-nederlands-werkplek-zakelijk:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.related-post-image-wrapper-nederlands-werkplek-zakelijk {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #1a1f33;
}

.related-post-image-nederlands-werkplek-zakelijk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-body-nederlands-werkplek-zakelijk {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-post-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-post-description-nederlands-werkplek-zakelijk {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-link-nederlands-werkplek-zakelijk {
  display: inline-flex;
  align-items: center;
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-link-nederlands-werkplek-zakelijk:hover {
  color: #fcd34d;
}

.disclaimer-section-nederlands-werkplek-zakelijk {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlands-werkplek-zakelijk {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #64748b;
  border-radius: 8px;
}

.disclaimer-title-nederlands-werkplek-zakelijk {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: 'Playfair Display', serif;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .intro-content-nederlands-werkplek-zakelijk,
  .business-phrases-content-nederlands-werkplek-zakelijk,
  .cultural-nuances-content-nederlands-werkplek-zakelijk,
  .confidence-content-nederlands-werkplek-zakelijk {
    flex-direction: column;
  }

  .intro-text-block-nederlands-werkplek-zakelijk,
  .intro-image-block-nederlands-werkplek-zakelijk,
  .phrases-text-block-nederlands-werkplek-zakelijk,
  .phrases-image-block-nederlands-werkplek-zakelijk,
  .nuances-image-block-nederlands-werkplek-zakelijk,
  .nuances-text-block-nederlands-werkplek-zakelijk,
  .confidence-text-block-nederlands-werkplek-zakelijk,
  .confidence-image-block-nederlands-werkplek-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-posts-grid-nederlands-werkplek-zakelijk {
    flex-direction: column;
    align-items: center;
  }

  .related-post-card-nederlands-werkplek-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-grid-nederlands-werkplek-zakelijk {
    flex-direction: column;
    align-items: center;
  }

  .tip-card-nederlands-werkplek-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-nederlands-werkplek-zakelijk {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlands-werkplek-zakelijk {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .hero-meta-nederlands-werkplek-zakelijk {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .phrase-item-nederlands-werkplek-zakelijk {
    padding: 1rem;
  }

  .step-card-nederlands-werkplek-zakelijk {
    padding: 1rem;
  }

  .conclusion-cta-box-nederlands-werkplek-zakelijk {
    padding: 1.5rem;
  }

  .cta-button-nederlands-werkplek-zakelijk {
    width: 100%;
  }
}

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

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

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

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

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

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

  .dutch-relocation-academy-about {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
  }

  .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(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .hero-header-about {
    text-align: center;
  }

  .hero-title-about {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    letter-spacing: -0.02em;
  }

  .hero-subtitle-about {
    font-size: clamp(0.95rem, 2vw + 0.3rem, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .hero-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
    object-fit: cover;
  }

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

  .stat-item-about {
    text-align: center;
    flex: 0 1 auto;
  }

  .stat-number-about {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .stat-label-about {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

  .section-header-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.35rem clamp(0.75rem, 2vw, 1.25rem);
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

  .section-title-about {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    letter-spacing: -0.01em;
  }

  .section-subtitle-about {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

  .journey-block-about {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 2vw, 2.5rem);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-primary);
    transition: all var(--transition-base);
  }

  .journey-block-about:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
  }

  .journey-block-title-about {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
  }

  .journey-block-text-about {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  .journey-image-about {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    object-fit: cover;
  }

  .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, 4vw, 3.5rem);
  }

  .methodology-intro-about {
    max-width: 800px;
    margin: 0 auto;
  }

  .methodology-intro-text-about {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
  }

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

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

  .step-number-about {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--color-primary);
    min-width: clamp(60px, 10vw, 100px);
    line-height: 1;
  }

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

  .step-title-about {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
  }

  .step-text-about {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  .methodology-image-about {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    object-fit: cover;
  }

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

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

  .values-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
    margin-top: clamp(1.5rem, 2vw, 2rem);
  }

  .value-card-about {
    flex: 1 1 280px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.04);
    padding: clamp(1.75rem, 2.5vw, 2.5rem);
    border-radius: var(--radius-lg);
    border-top: 2px solid var(--color-primary);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .value-card-about:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
  }

  .value-icon-about {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-primary);
    height: clamp(2.5rem, 3vw, 3rem);
    display: flex;
    align-items: center;
  }

  .value-title-about {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .value-text-about {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  .values-image-about {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    object-fit: cover;
  }

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

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

  .expertise-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-top: clamp(1.5rem, 2vw, 2rem);
  }

  .expertise-item-about {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all var(--transition-base);
  }

  .expertise-item-about:hover {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(255, 255, 255, 0.08);
  }

  .expertise-label-about {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .expertise-item-title-about {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
  }

  .expertise-item-text-about {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  .featured-quote-about {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--color-primary);
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: var(--radius-lg);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
  }

  .quote-text-about {
    font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.2rem);
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .quote-author-about {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--color-primary);
    font-style: normal;
    font-weight: 600;
  }

  .disclaimer-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 900px;
  }

  .disclaimer-header-about {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .disclaimer-icon-about {
    font-size: 1.3rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .disclaimer-title-about {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .disclaimer-text-about {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .process-step-about {
      gap: 1rem;
    }

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

    .journey-blocks-about {
      grid-template-columns: 1fr;
    }

    .values-cards-about {
      flex-direction: column;
    }

    .value-card-about {
      max-width: 100%;
    }

    .expertise-grid-about {
      grid-template-columns: 1fr;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-stats-about {
      gap: 2rem;
    }

    .process-step-about {
      gap: 1.5rem;
    }

    .values-cards-about {
      gap: 1.75rem;
    }
  }

  @media (min-width: 1025px) {
    .hero-stats-about {
      gap: 4rem;
    }

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

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

.faq-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: 4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  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, 3.5rem);
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-primary);
  text-align: left;
  transition: all var(--transition-base);
}

.faq-question:hover {
  background-color: rgba(245, 158, 11, 0.05);
}

.faq-question-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition-base);
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-cta {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.faq-cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-cta-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  width: fit-content;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
}

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

.faq-cta-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 5rem 2rem;
  }

  .faq-content {
    padding: 4rem 2rem;
  }

  .faq-cta {
    padding: 4rem 2rem;
  }

  .faq-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .faq-grid {
    gap: 1.5rem;
  }

  .faq-question {
    padding: 2rem;
  }

  .faq-answer {
    padding: 0 2rem 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 6rem 3rem;
  }

  .faq-content {
    padding: 5rem 3rem;
  }

  .faq-cta {
    padding: 5rem 3rem;
  }

  .faq-grid {
    gap: 1.5rem;
  }
}

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

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

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

.services-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
}

.services-grid-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  width: fit-content;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.01em;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  width: fit-content;
}

.service-card-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.service-card-link i {
  font-size: 0.8rem;
  transition: transform var(--transition-base);
}

.service-card-link:hover i {
  transform: translateX(2px);
}

.services-why-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.services-why-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-2xl) 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.services-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.services-why-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.services-why-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
}

.services-why-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.services-why-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.services-why-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.services-cta-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  position: relative;
}

.services-cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 767px) {
  .services-hero {
    padding: var(--space-xl) 0;
  }

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

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

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

  .services-container {
    padding: 0 var(--space-sm);
  }
}

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

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

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

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

.legal-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.legal-portal .legal-portal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-portal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-portal .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-portal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.legal-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-portal ul {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-portal ul li {
  margin-bottom: var(--space-sm);
}

.legal-portal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-portal .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.legal-portal .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-portal .contact-section strong {
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-portal .legal-portal-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .legal-portal .legal-portal-content {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  height: 100%;
  width: 100%;
}

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

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

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

.thank-content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin: 0 auto;
}

.thank-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-bg-card);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  stroke-width: 1.5;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}

.thank-content .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.thank-content .description {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.thank-content .next-steps {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-icon {
    width: 100px;
    height: 100px;
  }

  .thank-icon svg {
    width: 56px;
    height: 56px;
  }

  .thank-content {
    gap: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-content {
    gap: var(--space-xl);
  }

  .thank-content .next-steps {
    padding: var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

  .thank-content h1 {
    font-size: 3rem;
  }

  .btn-primary {
    padding: var(--space-lg) var(--space-3xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  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);
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

@media (min-width: 768px) {
  .error-visual {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-visual {
    margin-bottom: var(--space-3xl);
  }
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
  animation: slideDown 0.8s ease-out;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

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

@media (min-width: 768px) {
  .error-message {
    margin-top: var(--space-xl);
  }
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .error-message h1 {
    margin-bottom: var(--space-lg);
  }
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 768px) {
  .error-subtitle {
    margin-bottom: var(--space-lg);
  }
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .error-description {
    margin-bottom: var(--space-2xl);
  }
}

.error-actions {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-actions {
    margin-bottom: var(--space-2xl);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow);
}

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

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

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .error-suggestions {
    padding: var(--space-xl);
    margin-top: var(--space-xl);
  }
}

.suggestions-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: var(--space-md);
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .error-code {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }

  .error-message h1 {
    margin-bottom: var(--space-md);
  }

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

  .btn {
    width: 100%;
  }
}

.contact-get-in-touch-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-get-in-touch-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.5px;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: var(--space-3xl) var(--space-md);
  }
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: -0.3px;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-get-in-touch-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  display: block;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.contact-get-in-touch-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-get-in-touch-form-privacy {
  padding: var(--space-sm) 0;
}

.contact-get-in-touch-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 500;
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-get-in-touch-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  margin-top: var(--space-sm);
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: -0.3px;
}

.contact-get-in-touch-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-get-in-touch-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-get-in-touch-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-get-in-touch-info-box {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-get-in-touch-info-box-highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.contact-get-in-touch-info-box-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-info-box-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-main {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-main {
    padding: var(--space-3xl) var(--space-md);
  }
}
.header-taal-navigator-mobile-toggle.active{
  display: none;
}