
    @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: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #86efac;
  --color-text-light: #d1fae5;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #34d399;
  --color-secondary: #6ee7b7;
  --color-accent-warm: #fbbf24;
  
  
  --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.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.875rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

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

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

small {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-fast), height var(--transition-fast);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  transform: translateY(-2px);
}

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

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

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

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

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem var(--space-sm);
  background: var(--color-bg-card);
  color: var(--color-secondary);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.badge-secondary {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--color-accent-warm);
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-card-hover);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

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

.form-group:last-child {
  margin-bottom: 0;
}

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

thead {
  background: var(--color-bg-card);
  border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--color-primary);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  color: var(--color-text-light);
}

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

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

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

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

.list-unstyled li {
  padding-left: var(--space-md);
  position: relative;
}

.list-unstyled li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

blockquote {
  padding: var(--space-lg);
  padding-left: var(--space-xl);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-secondary);
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  left: var(--space-md);
  top: -10px;
  font-size: 3rem;
  color: rgba(16, 185, 129, 0.1);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.2),
    transparent
  );
  margin: var(--space-2xl) 0;
}

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.capitalize {
  text-transform: capitalize;
}

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

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

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

.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }

.mt-0 { margin-top: 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); }

.mb-0 { margin-bottom: 0; }
.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); }

.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.invisible {
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
}

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

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn var(--transition-slow) ease-out;
}

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

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

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

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

.animate-scaleIn {
  animation: scaleIn var(--transition-slow) ease-out;
}

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

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

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

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

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

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
  
  .btn,
  .hidden-print {
    display: none !important;
  }
}
.header-taal-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: static;
  top: 0;
  width: 100%;
  z-index: 100;
}

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

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

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

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

.header-taal-forge-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-forge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-grow: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
}

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

.header-taal-forge-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

.header-taal-forge-nav-link:hover::after {
  width: 100%;
}

.header-taal-forge-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-taal-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 101;
  transition: all var(--transition-base);
}

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

.header-taal-forge-mobile-toggle:hover .header-taal-forge-mobile-toggle-line {
  background: var(--color-primary);
}

.header-taal-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  padding: 70px clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-taal-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

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

.header-taal-forge-mobile-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

.header-taal-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.header-taal-forge-mobile-link:hover {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 1.25rem;
}

.header-taal-forge-mobile-cta {
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  margin-top: auto;
}

.header-taal-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

  .header-taal-forge-cta-button {
    display: flex;
    align-items: center;
  }

  .header-taal-forge-container {
    height: 75px;
  }
}

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

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

    .language-hub {
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

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

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

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

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

.hero-stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #10b981;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #d1fae5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

@media (max-width: 768px) {
  .hero-image-block-index {
    flex: 1 1 100%;
    order: -1;
  }

  .hero-image-index {
    max-height: 300px;
  }
}

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

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

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

.features-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.features-description-index {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.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: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
  text-align: center;
}

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

.feature-icon-index {
  font-size: 2.5rem;
  color: #10b981;
}

.feature-title-index {
  color: #1e293b;
  font-size: 1.125rem;
  margin: 0;
}

.feature-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.about-title-index {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.about-intro-index {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.about-reasons-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-reason-item-index {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.reason-icon-index {
  color: #10b981;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.reason-title-index {
  color: #1e293b;
  font-size: 1rem;
  margin: 0;
}

.reason-description-index {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .about-image-block-index {
    order: -1;
  }
}

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

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

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

.process-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.process-description-index {
  color: #a7f3d0;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-index {
  flex: 1 1 240px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  backdrop-filter: blur(10px);
}

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

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

.step-title-index {
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0;
}

.step-text-index {
  color: #d1fae5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.posts-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.posts-description-index {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

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

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

.post-card-title-index {
  color: #1e293b;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.4;
}

.post-card-description-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.post-card-link-index {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

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

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

.testimonials-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.testimonials-description-index {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.testimonial-card-index:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.testimonial-quote-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: var(--space-md);
}

.testimonial-quote-index::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #10b981;
  opacity: 0.3;
}

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

.author-name-index {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

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

.faq-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.faq-description-index {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
}

.faq-question-index {
  color: #1e293b;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 600;
}

.faq-answer-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.cta-section-index {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.cta-text-index {
  color: #a7f3d0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 200px;
  line-height: 1.5;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex: 1 1 auto;
  justify-content: center;
}

.cookie-btn-accept-index {
  padding: 0.5rem 1.25rem;
  background: #10b981;
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.cookie-btn-accept-index:hover {
  background: #059669;
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

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

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

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

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

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

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

  .hero-stats-index {
    flex-direction: column;
    gap: var(--space-md);
    border-top: none;
    padding-top: 0;
    margin-top: var(--space-md);
  }

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

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

  .cookie-banner-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .features-cards-index {
    flex-direction: row;
  }

  .feature-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .process-steps-index {
    flex-direction: row;
  }

  .process-step-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-primary);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
}

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

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

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

.footer h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer a:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

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

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  margin: 0;
  text-align: center;
}

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

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

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

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-nav {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal {
    grid-column: 4 / 5;
  }
}

@media (max-width: 767px) {
  .footer-nav-list,
  .footer-legal-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

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

.category-page-dutch-language-beginners {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-dutch-language-beginners {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.hero-content-dutch-language-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: stretch;
}

@media (min-width: 768px) {
  .hero-content-dutch-language-beginners {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-dutch-language-beginners {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .hero-text-dutch-language-beginners {
    flex: 1 1 55%;
  }
}

.hero-title-dutch-language-beginners {
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle-dutch-language-beginners {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero-meta-dutch-language-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
}

.hero-meta-item-dutch-language-beginners {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
}

.hero-meta-item-dutch-language-beginners i {
  color: var(--color-primary);
}

.hero-accent-dutch-language-beginners {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .hero-accent-dutch-language-beginners {
    flex: 1 1 45%;
  }
}

.accent-box-dutch-language-beginners {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.accent-text-dutch-language-beginners {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}

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

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

.posts-header-dutch-language-beginners {
  text-align: center;
}

.posts-title-dutch-language-beginners {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.posts-subtitle-dutch-language-beginners {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-dutch-language-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1 1 100%;
  max-width: 380px;
  min-height: 100%;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .card-dutch-language-beginners {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .card-dutch-language-beginners {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.card-dutch-language-beginners:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image-dutch-language-beginners {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

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

.card-meta-dutch-language-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.card-meta-item-dutch-language-beginners {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.card-meta-item-dutch-language-beginners i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.card-link-dutch-language-beginners {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  align-self: flex-start;
  padding: var(--space-xs) 0;
}

.card-link-dutch-language-beginners:hover {
  color: var(--color-primary-light);
  gap: var(--space-sm);
}

.tips-section-dutch-language-beginners {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

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

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

.tips-title-dutch-language-beginners {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.tips-subtitle-dutch-language-beginners {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.tips-item-dutch-language-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1 1 100%;
  max-width: 320px;
  text-align: center;
}

@media (min-width: 768px) {
  .tips-item-dutch-language-beginners {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .tips-item-dutch-language-beginners {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.tips-icon-dutch-language-beginners {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.tips-item-title-dutch-language-beginners {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.tips-item-text-dutch-language-beginners {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.faq-section-dutch-language-beginners {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

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

.faq-header-dutch-language-beginners {
  text-align: center;
}

.faq-title-dutch-language-beginners {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.faq-subtitle-dutch-language-beginners {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-list-dutch-language-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-dutch-language-beginners {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item-dutch-language-beginners:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-item-dutch-language-beginners[open] {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.faq-question-dutch-language-beginners::marker {
  display: none;
}

.faq-question-dutch-language-beginners::-webkit-details-marker {
  display: none;
}

.faq-question-dutch-language-beginners::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  margin-left: auto;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item-dutch-language-beginners[open] .faq-question-dutch-language-beginners::before {
  transform: rotate(180deg);
}

.faq-answer-dutch-language-beginners {
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.faq-answer-text-dutch-language-beginners {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .posts-grid-dutch-language-beginners {
    flex-direction: column;
    align-items: center;
  }

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

  .tips-list-dutch-language-beginners {
    flex-direction: column;
    align-items: center;
  }

  .tips-item-dutch-language-beginners {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-dutch-language-beginners {
    flex: 1 1 calc(50% - 1rem);
  }

  .tips-item-dutch-language-beginners {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .posts-grid-dutch-language-beginners {
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .tips-list-dutch-language-beginners {
    gap: clamp(1.5rem, 2vw, 2rem);
  }
}

.main-eerste-woorden-nederlands {
  background: #022c22;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-section-eerste-woorden-nederlands {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-eerste-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-eerste-woorden-nederlands {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-eerste-woorden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

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

.meta-item-eerste-woorden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #86efac;
}

.meta-item-eerste-woorden-nederlands i {
  color: #10b981;
  font-size: 1.1em;
}

.hero-image-eerste-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-eerste-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(16, 185, 129, 0.2);
}

.breadcrumbs-eerste-woorden-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #a7f3d0;
}

.breadcrumbs-eerste-woorden-nederlands a {
  color: #10b981;
  text-decoration: none;
  transition: color 300ms ease;
}

.breadcrumbs-eerste-woorden-nederlands a:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumbs-eerste-woorden-nederlands span {
  color: #86efac;
}

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

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

  .hero-title-eerste-woorden-nederlands {
    font-size: 1.75rem;
  }

  .hero-subtitle-eerste-woorden-nederlands {
    font-size: 1rem;
  }
}

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

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

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

.intro-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.intro-image-eerste-woorden-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.content-one-eerste-woorden-nederlands {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-one-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-subtitle-eerste-woorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #34d399;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.content-one-para-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-list-eerste-woorden-nederlands {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.list-item-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #a7f3d0;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.list-item-eerste-woorden-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2em;
}

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

.content-one-image-eerste-woorden-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
  .content-one-wrapper-eerste-woorden-nederlands {
    flex-direction: column;
  }

  .content-one-text-eerste-woorden-nederlands,
  .content-one-image-eerste-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-eerste-woorden-nederlands {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-eerste-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-eerste-woorden-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.content-two-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-two-para-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-eerste-woorden-nederlands {
  background: #e2e8f0;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-eerste-woorden-nederlands {
  color: #1e293b;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .content-two-wrapper-eerste-woorden-nederlands {
    flex-direction: column;
  }

  .content-two-image-eerste-woorden-nederlands,
  .content-two-text-eerste-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-three-eerste-woorden-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-wrapper-eerste-woorden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-three-text-eerste-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-para-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.method-card-eerste-woorden-nederlands {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(10px);
}

.method-title-eerste-woorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #34d399;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.method-text-eerste-woorden-nederlands {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.content-three-image-eerste-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-eerste-woorden-nederlands img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(16, 185, 129, 0.15);
}

@media (max-width: 768px) {
  .content-three-wrapper-eerste-woorden-nederlands {
    flex-direction: column;
  }

  .content-three-text-eerste-woorden-nederlands,
  .content-three-image-eerste-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.timeline-header-eerste-woorden-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.timeline-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
}

.timeline-subtitle-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.timeline-item-eerste-woorden-nederlands {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 350px;
}

.timeline-number-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #10b981;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.timeline-box-eerste-woorden-nederlands {
  background: #f3f4f6;
  border-left: 4px solid #10b981;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.timeline-item-title-eerste-woorden-nederlands {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.timeline-item-text-eerste-woorden-nederlands {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-item-eerste-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-eerste-woorden-nederlands {
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-eerste-woorden-nederlands {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #10b981;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-eerste-woorden-nederlands {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #a7f3d0;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.quote-author-eerste-woorden-nederlands {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #86efac;
  font-style: normal;
  display: block;
}

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

.conclusion-content-eerste-woorden-nederlands {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-text-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.cta-section-eerste-woorden-nederlands {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-eerste-woorden-nederlands {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-text-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.btn-primary {
  background: #10b981;
  color: #022c22;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.disclaimer-section-eerste-woorden-nederlands {
  background: #065f46;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-eerste-woorden-nederlands {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.disclaimer-title-eerste-woorden-nederlands {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #34d399;
  margin-bottom: 1rem;
}

.disclaimer-text-eerste-woorden-nederlands {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin: 0;
}

.related-section-eerste-woorden-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-eerste-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.related-subtitle-eerste-woorden-nederlands {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #86efac;
}

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

.related-card-eerste-woorden-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.related-card-eerste-woorden-nederlands:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.related-card-image-eerste-woorden-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-img-eerste-woorden-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.related-card-eerste-woorden-nederlands:hover .related-img-eerste-woorden-nederlands {
  transform: scale(1.05);
}

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

.related-card-title-eerste-woorden-nederlands {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.related-card-desc-eerste-woorden-nederlands {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

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

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

.main-nederlandse-uitspraak-gids {
  width: 100%;
  overflow: hidden;
}

.hero-section-nederlandse-uitspraak-gids {
  background: #022c22;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-uitspraak-gids {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-nederlandse-uitspraak-gids a {
  color: #10b981;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-nederlandse-uitspraak-gids a:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-uitspraak-gids span {
  color: #a7f3d0;
}

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

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

.hero-subtitle-nederlandse-uitspraak-gids {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-nederlandse-uitspraak-gids {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-nederlandse-uitspraak-gids {
  color: #86efac;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
}

.hero-image-wrapper-nederlandse-uitspraak-gids {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

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

  .hero-image-wrapper-nederlandse-uitspraak-gids {
    max-width: 100%;
  }
}

.intro-section-nederlandse-uitspraak-gids {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.intro-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-nederlandse-uitspraak-gids {
  color: #d1fae5;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

.vowels-section-nederlandse-uitspraak-gids {
  background: #022c22;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.vowels-text-block-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.vowels-image-block-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.vowels-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.vowels-paragraph-nederlandse-uitspraak-gids {
  color: #d1fae5;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.vowels-list-nederlandse-uitspraak-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.vowel-item-nederlandse-uitspraak-gids {
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.vowel-label-nederlandse-uitspraak-gids {
  color: #10b981;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.vowel-example-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: 0.95rem;
  display: block;
}

.vowels-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vowels-content-nederlandse-uitspraak-gids {
    flex-direction: column;
  }

  .vowels-text-block-nederlandse-uitspraak-gids,
  .vowels-image-block-nederlandse-uitspraak-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.consonants-section-nederlandse-uitspraak-gids {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.consonants-image-block-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.consonants-text-block-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.consonants-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.consonants-paragraph-nederlandse-uitspraak-gids {
  color: #d1fae5;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.consonant-tips-nederlandse-uitspraak-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.tip-card-nederlandse-uitspraak-gids {
  background: rgba(16, 185, 129, 0.15);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tip-title-nederlandse-uitspraak-gids {
  color: #10b981;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-text-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.consonants-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .consonants-content-nederlandse-uitspraak-gids {
    flex-direction: column;
  }

  .consonants-image-block-nederlandse-uitspraak-gids,
  .consonants-text-block-nederlandse-uitspraak-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-nederlandse-uitspraak-gids {
  background: #022c22;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practice-content-nederlandse-uitspraak-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  text-align: center;
}

.practice-intro-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
  line-height: 1.7;
}

.steps-wrapper-nederlandse-uitspraak-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-card-nederlandse-uitspraak-gids {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 350px;
  background: rgba(16, 185, 129, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.step-number-nederlandse-uitspraak-gids {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.step-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.step-text-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.practice-image-block-nederlandse-uitspraak-gids {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.practice-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.tips-section-nederlandse-uitspraak-gids {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.tips-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

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

.tip-box-nederlandse-uitspraak-gids {
  flex: 1 1 calc(50% - 1rem);
  min-width: 260px;
  max-width: 320px;
  background: rgba(16, 185, 129, 0.12);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.tip-box-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.tip-box-text-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tip-box-nederlandse-uitspraak-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-nederlandse-uitspraak-gids {
  background: #022c22;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.mistakes-text-wrapper-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-wrapper-nederlandse-uitspraak-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistakes-intro-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.mistake-list-nederlandse-uitspraak-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-item-nederlandse-uitspraak-gids {
  background: rgba(16, 185, 129, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.mistake-label-nederlandse-uitspraak-gids {
  color: #f59e0b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mistake-text-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.mistakes-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mistakes-content-nederlandse-uitspraak-gids {
    flex-direction: column;
  }

  .mistakes-text-wrapper-nederlandse-uitspraak-gids,
  .mistakes-image-wrapper-nederlandse-uitspraak-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-nederlandse-uitspraak-gids {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
}

.conclusion-text-nederlandse-uitspraak-gids {
  color: #d1fae5;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

.conclusion-highlight-nederlandse-uitspraak-gids {
  background: rgba(16, 185, 129, 0.15);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.cta-box-nederlandse-uitspraak-gids {
  background: linear-gradient(135deg, #10b981, #6ee7b7);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
}

.cta-title-nederlandse-uitspraak-gids {
  color: #022c22;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.cta-text-nederlandse-uitspraak-gids {
  color: #022c22;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.cta-box-nederlandse-uitspraak-gids .btn {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.related-section-nederlandse-uitspraak-gids {
  background: #022c22;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.related-intro-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-uitspraak-gids {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 300ms ease;
}

.related-card-nederlandse-uitspraak-gids:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.related-image-wrapper-nederlandse-uitspraak-gids {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlandse-uitspraak-gids {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-nederlandse-uitspraak-gids {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-description-nederlandse-uitspraak-gids {
  color: #a7f3d0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.related-card-link-nederlandse-uitspraak-gids {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: color 150ms ease;
  margin-top: auto;
}

.related-card-link-nederlandse-uitspraak-gids:hover {
  color: #34d399;
  text-decoration: underline;
}

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

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

.disclaimer-section-nederlandse-uitspraak-gids {
  background: #0f766e;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-uitspraak-gids {
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #fbbf24;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-uitspraak-gids {
  color: #fbbf24;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-nederlandse-uitspraak-gids {
  color: #d1fae5;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

  .breadcrumbs-nederlandse-uitspraak-gids {
    font-size: 0.75rem;
  }
}

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

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

.main-nederlandse-grammatica-basis {
  background: #022c22;
  color: #ffffff;
  font-family: var(--font-primary);
  overflow-x: hidden;
}

.hero-section-nederlandse-grammatica-basis {
  background: #022c22;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-nederlandse-grammatica-basis {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.875rem;
  color: #a7f3d0;
}

.breadcrumbs-nederlandse-grammatica-basis a {
  color: #10b981;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-nederlandse-grammatica-basis a:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-grammatica-basis span {
  color: #64748b;
}

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

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

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

.hero-meta-nederlandse-grammatica-basis {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #86efac;
}

.meta-item-nederlandse-grammatica-basis {
  color: #86efac;
}

.meta-divider-nederlandse-grammatica-basis {
  color: #10b981;
}

.hero-title-nederlandse-grammatica-basis {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-lead-nederlandse-grammatica-basis {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #d1fae5;
  margin-bottom: 0;
}

.hero-image-nederlandse-grammatica-basis {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

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

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

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

.intro-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
}

.intro-image-nederlandse-grammatica-basis {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

.content-one-nederlandse-grammatica-basis {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-one-paragraph-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

.highlight-nederlandse-grammatica-basis {
  color: #34d399;
  font-weight: 600;
}

.example-box-nederlandse-grammatica-basis {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0 0 0;
}

.example-title-nederlandse-grammatica-basis {
  font-size: 1rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 1rem;
}

.example-list-nederlandse-grammatica-basis {
  list-style: none;
  margin: 0;
  padding: 0;
}

.example-item-nederlandse-grammatica-basis {
  color: #d1fae5;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.example-item-nederlandse-grammatica-basis::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.content-one-image-item-nederlandse-grammatica-basis {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

.content-two-nederlandse-grammatica-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-text-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-two-paragraph-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
}

.content-two-image-item-nederlandse-grammatica-basis {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .content-two-wrapper-nederlandse-grammatica-basis {
    flex-direction: column;
  }
  
  .content-two-image-nederlandse-grammatica-basis,
  .content-two-text-nederlandse-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.content-three-nederlandse-grammatica-basis {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-nederlandse-grammatica-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-three-paragraph-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.quote-nederlandse-grammatica-basis {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0 0 0;
  font-style: italic;
}

.quote-text-nederlandse-grammatica-basis {
  color: #a7f3d0;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-nederlandse-grammatica-basis {
  color: #86efac;
  font-style: normal;
  font-size: 0.875rem;
}

.content-three-image-item-nederlandse-grammatica-basis {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

.practice-section-nederlandse-grammatica-basis {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-nederlandse-grammatica-basis {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.practice-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.practice-intro-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #d1fae5;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.step-card-nederlandse-grammatica-basis {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 320px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-nederlandse-grammatica-basis {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-title-nederlandse-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.step-text-nederlandse-grammatica-basis {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1fae5;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-container-nederlandse-grammatica-basis {
    flex-direction: column;
  }
  
  .step-card-nederlandse-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-nederlandse-grammatica-basis {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-nederlandse-grammatica-basis {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.cta-box-nederlandse-grammatica-basis {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-title-nederlandse-grammatica-basis {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cta-text-nederlandse-grammatica-basis {
  font-size: 1rem;
  color: #f0fdf4;
  margin: 0;
  line-height: 1.6;
}

.cta-box-nederlandse-grammatica-basis .btn {
  margin-top: 0.5rem;
}

.disclaimer-section-nederlandse-grammatica-basis {
  background: #0f172a;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-grammatica-basis {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-grammatica-basis {
  font-size: 1.25rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-text-nederlandse-grammatica-basis {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.related-section-nederlandse-grammatica-basis {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-nederlandse-grammatica-basis {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

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

.related-card-nederlandse-grammatica-basis {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #064e3b;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-nederlandse-grammatica-basis:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.related-image-wrapper-nederlandse-grammatica-basis {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

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

.related-card-body-nederlandse-grammatica-basis {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-nederlandse-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-nederlandse-grammatica-basis {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1fae5;
  margin: 0;
  flex-grow: 1;
}

.related-card-nederlandse-grammatica-basis .btn {
  margin-top: auto;
  align-self: flex-start;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: #10b981;
  color: #022c22;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #10b981;
  border: 1px solid #10b981;
}

.btn-ghost:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
  color: #34d399;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

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

@media (max-width: 480px) {
  .hero-title-nederlandse-grammatica-basis {
    font-size: 1.5rem;
  }
  
  .intro-title-nederlandse-grammatica-basis,
  .content-one-title-nederlandse-grammatica-basis,
  .content-two-title-nederlandse-grammatica-basis,
  .content-three-title-nederlandse-grammatica-basis {
    font-size: 1.25rem;
  }
}

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

.main-nederlands-gesprekken-beginners h1,
.main-nederlands-gesprekken-beginners h2,
.main-nederlands-gesprekken-beginners h3,
.main-nederlands-gesprekken-beginners h4,
.main-nederlands-gesprekken-beginners h5,
.main-nederlands-gesprekken-beginners h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-nederlands-gesprekken-beginners p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-nederlands-gesprekken-beginners {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-nederlands-gesprekken-beginners {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  flex-wrap: wrap;
}

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

.breadcrumbs-nederlands-gesprekken-beginners a:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumbs-nederlands-gesprekken-beginners span {
  color: #86efac;
}

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

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

.hero-meta-nederlands-gesprekken-beginners {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-nederlands-gesprekken-beginners {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-subtitle-nederlands-gesprekken-beginners {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.hero-image-nederlands-gesprekken-beginners {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

.hero-stats-nederlands-gesprekken-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item-nederlands-gesprekken-beginners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number-nederlands-gesprekken-beginners {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
}

.stat-label-nederlands-gesprekken-beginners {
  font-size: 0.9rem;
  color: #a7f3d0;
  text-align: center;
  font-weight: 500;
}

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

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

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

  .hero-image-nederlands-gesprekken-beginners {
    max-height: 350px;
  }

  .hero-stats-nederlands-gesprekken-beginners {
    gap: 1.5rem;
  }
}

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

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

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

.intro-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-paragraph-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.intro-img-nederlands-gesprekken-beginners {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: block;
}

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

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

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

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

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

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

.fundamentals-text-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.fundamentals-intro-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.steps-container-nederlands-gesprekken-beginners {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step-box-nederlands-gesprekken-beginners {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 200px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.step-number-nederlands-gesprekken-beginners {
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
}

.step-content-nederlands-gesprekken-beginners {
  flex: 1;
}

.step-title-nederlands-gesprekken-beginners {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text-nederlands-gesprekken-beginners {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.fundamentals-image-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-nederlands-gesprekken-beginners {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: block;
}

@media (max-width: 768px) {
  .fundamentals-content-nederlands-gesprekken-beginners {
    flex-direction: column;
    gap: 2rem;
  }

  .fundamentals-text-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-image-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-container-nederlands-gesprekken-beginners {
    flex-direction: column;
    gap: 1rem;
  }

  .step-box-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
  }

  .fundamentals-img-nederlands-gesprekken-beginners {
    max-height: 300px;
  }
}

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

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

.situations-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.situations-subtitle-nederlands-gesprekken-beginners {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.situation-card-nederlands-gesprekken-beginners {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f9fafb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.situation-card-nederlands-gesprekken-beginners:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.situation-card-title-nederlands-gesprekken-beginners {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.situation-card-text-nederlands-gesprekken-beginners {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.situation-card-text-nederlands-gesprekken-beginners:last-of-type {
  margin-bottom: 1rem;
}

.situation-card-tip-nederlands-gesprekken-beginners {
  font-size: 0.9rem;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  margin-bottom: 0;
}

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

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

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

.techniques-text-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.techniques-intro-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.technique-item-nederlands-gesprekken-beginners {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.technique-item-nederlands-gesprekken-beginners:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.technique-name-nederlands-gesprekken-beginners {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.technique-desc-nederlands-gesprekken-beginners {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.techniques-image-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-nederlands-gesprekken-beginners {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: block;
}

@media (max-width: 768px) {
  .techniques-wrapper-nederlands-gesprekken-beginners {
    flex-direction: column;
    gap: 2rem;
  }

  .techniques-text-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-image-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-img-nederlands-gesprekken-beginners {
    max-height: 300px;
  }
}

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

.practice-content-nederlands-gesprekken-beginners {
  max-width: 1100px;
  margin: 0 auto;
}

.practice-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.practice-left-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-text-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.practice-step-nederlands-gesprekken-beginners {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.practice-step-nederlands-gesprekken-beginners:last-child {
  margin-bottom: 0;
}

.practice-step-title-nederlands-gesprekken-beginners {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.practice-step-text-nederlands-gesprekken-beginners {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.practice-right-nederlands-gesprekken-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-nederlands-gesprekken-beginners {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: block;
}

@media (max-width: 768px) {
  .practice-wrapper-nederlands-gesprekken-beginners {
    flex-direction: column;
    gap: 2rem;
  }

  .practice-left-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-right-nederlands-gesprekken-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

.quote-section-nederlands-gesprekken-beginners {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-nederlands-gesprekken-beginners {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  position: relative;
}

.quote-text-nederlands-gesprekken-beginners {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #d1fae5;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.quote-text-nederlands-gesprekken-beginners::before {
  content: '"';
  position: absolute;
  left: 1rem;
  top: -0.5rem;
  font-size: 3rem;
  color: rgba(16, 185, 129, 0.15);
  z-index: 1;
}

.quote-author-nederlands-gesprekken-beginners {
  display: block;
  font-size: 0.95rem;
  color: #a7f3d0;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .featured-quote-nederlands-gesprekken-beginners {
    padding: 1.5rem;
  }

  .quote-text-nederlands-gesprekken-beginners {
    font-size: 1rem;
  }
}

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

.conclusion-content-nederlands-gesprekken-beginners {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-nederlands-gesprekken-beginners:last-of-type {
  margin-bottom: 2.5rem;
}

.cta-box-nederlands-gesprekken-beginners {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-title-nederlands-gesprekken-beginners {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-nederlands-gesprekken-beginners {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-nederlands-gesprekken-beginners .btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .cta-box-nederlands-gesprekken-beginners {
    padding: 1.5rem;
  }

  .cta-title-nederlands-gesprekken-beginners {
    font-size: 1.1rem;
  }
}

.disclaimer-section-nederlands-gesprekken-beginners {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-title-nederlands-gesprekken-beginners {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-gesprekken-beginners {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-nederlands-gesprekken-beginners {
    padding: 1.5rem;
  }
}

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

.related-content-nederlands-gesprekken-beginners {
  max-width: 1100px;
  margin: 0 auto;
}

.related-title-nederlands-gesprekken-beginners {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-nederlands-gesprekken-beginners {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card-nederlands-gesprekken-beginners:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

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

.related-card-content-nederlands-gesprekken-beginners {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-nederlands-gesprekken-beginners {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.related-card-text-nederlands-gesprekken-beginners {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.related-card-link-nederlands-gesprekken-beginners {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-card-link-nederlands-gesprekken-beginners:hover {
  color: #059669;
  text-decoration: underline;
}

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

@media (max-width: 480px) {
  .breadcrumbs-nederlands-gesprekken-beginners {
    font-size: 0.75rem;
  }

  .hero-meta-nederlands-gesprekken-beginners {
    gap: 0.5rem;
  }

  .meta-item-nederlands-gesprekken-beginners {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }

  .situations-grid-nederlands-gesprekken-beginners {
    gap: 1rem;
  }

  .situation-card-nederlands-gesprekken-beginners {
    padding: 1rem;
  }

  .steps-container-nederlands-gesprekken-beginners {
    gap: 1rem;
  }

  .step-box-nederlands-gesprekken-beginners {
    gap: 0.75rem;
  }

  .step-number-nederlands-gesprekken-beginners {
    font-size: 1.5rem;
  }
}

* {
  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;
}

.taalbrij-journey-about {
  width: 100%;
  overflow: hidden;
}

.hero-intro-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-intro-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-intro-description-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.hero-intro-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-intro-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-intro-image-about {
    max-height: 300px;
  }
}

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

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

.foundation-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.foundation-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.foundation-block-about {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.foundation-block-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.foundation-block-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .foundation-section-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}

.approach-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-about {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  min-width: 80px;
  line-height: 1;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .approach-section-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .approach-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 60px;
  }
}

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

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

.methods-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.methods-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.methods-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methods-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.methods-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2.5rem;
}

.method-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.method-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.method-card-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.method-card-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methods-section-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .methods-cards-about {
    flex-direction: column;
  }

  .method-card-about {
    max-width: 100%;
  }
}

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

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

.story-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.story-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.story-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.story-subtitle-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.story-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.story-block-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-block-about:last-child {
  border-bottom: none;
}

.story-block-heading-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #34d399;
  margin-bottom: 0.75rem;
}

.story-block-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.story-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .story-section-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .story-image-about {
    max-height: 300px;
  }
}

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

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

.testimonial-header-about {
  text-align: center;
}

.testimonial-tag-about {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.testimonial-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  font-style: italic;
}

.quote-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .testimonial-section-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
}

.disclaimer-text-about {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-intro-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .foundation-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .methods-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .story-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .testimonial-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-hero {
  position: relative;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 2;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  max-width: 600px;
}

.faq-hero__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-xl) var(--space-md);
  }

  .faq-hero__container {
    padding: var(--space-2xl) 0;
  }

  .faq-hero__image {
    height: 320px;
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-hero__image {
    height: 400px;
    margin-top: var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 600;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-item__trigger:hover {
  color: var(--color-primary-light);
}

.faq-item__question {
  color: var(--color-text-primary);
  flex: 1;
}

.faq-item__icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-item__content {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-item__content p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-xl) var(--space-md);
  }

  .faq-content__container {
    padding: var(--space-2xl) 0;
  }

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

  .faq-item__trigger {
    padding: var(--space-lg);
  }

  .faq-item.active .faq-item__content {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  max-width: 500px;
  font-weight: 400;
}

.faq-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: 400px;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.25rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

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

.faq-cta__button--primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-cta__button--secondary {
  background-color: transparent;
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

.faq-cta__button--secondary:hover {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-xl) var(--space-md);
  }

  .faq-cta__container {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta__buttons {
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
    width: auto;
    gap: var(--space-lg);
  }

  .faq-cta__button {
    min-width: 180px;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta__container {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

.services-hero {
  padding: var(--space-xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light);
  line-height: 1.6;
  font-weight: 400;
}

.services-hero__image {
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

.services-grid {
  padding: var(--space-2xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-bg-primary);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-card__highlight {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-weight: 500;
  border: 1px solid rgba(110, 231, 183, 0.2);
}

.services-cta {
  padding: var(--space-2xl) var(--space-sm);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta__container {
  max-width: 500px;
  margin: 0 auto;
}

.services-cta__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-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.services-cta__image {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
    grid-template-columns: 1fr 1fr;
  }

  .services-cta__container {
    margin: 0;
  }
}

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

  .services-hero__container {
    padding: 0 var(--space-lg);
  }

  .services-hero__image {
    padding: 0 var(--space-lg);
  }

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

  .services-grid__container {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
  }

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

  .services-cta {
    padding: var(--space-3xl) 0;
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .services-grid__container {
    max-width: 1400px;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  padding: var(--space-lg) 0;
  min-height: 100vh;
}

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

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  color: var(--color-text-light);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.legal-docs strong {
  color: var(--color-primary-light);
  font-weight: 600;
}

.legal-docs .contact-section {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.legal-docs .contact-section h2 {
  color: var(--color-primary-light);
  margin-top: 0;
}

.legal-docs .contact-section p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .legal-docs {
    padding: var(--space-xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }
}

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

  .legal-docs .container {
    padding: 0 var(--space-2xl);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
}

.success-icon {
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.success-icon svg {
  width: 80px;
  height: 80px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
  animation: slideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
  opacity: 0;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 500;
  animation: slideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  animation: slideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  opacity: 0;
}

.next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  animation: slideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
  opacity: 0;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  animation: slideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  opacity: 0;
}

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

.btn-home:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-2xl) var(--space-xl);
  }

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

  .success-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .success-icon {
    margin-bottom: var(--space-2xl);
  }

  .success-icon svg {
    width: 120px;
    height: 120px;
  }

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

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

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

  .next-steps {
    margin-bottom: var(--space-3xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
}

.error-icon {
  position: absolute;
  width: clamp(80px, 20vw, 150px);
  height: clamp(80px, 20vw, 150px);
  opacity: 0.15;
  color: var(--color-primary);
  pointer-events: none;
}

.error-icon svg {
  width: 100%;
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.error-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

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

.suggestion-title {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary-light);
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestion-list li {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-lg);
  text-align: left;
  line-height: 1.6;
}

.suggestion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

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

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

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

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }

  .error-content {
    gap: var(--space-xl);
  }

  .error-suggestions {
    padding: var(--space-xl);
  }

  .suggestion-list li {
    text-align: center;
    padding-left: 0;
  }

  .suggestion-list li::before {
    display: none;
  }

  .suggestion-list li::after {
    content: "";
    display: inline-block;
    margin-left: var(--space-sm);
    color: var(--color-primary-light);
    font-weight: 700;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-content {
    gap: var(--space-2xl);
  }

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

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

  .error-section {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-suggestions {
    padding: var(--space-2xl);
  }

  .suggestion-list {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .suggestion-list li {
    flex: 0 1 auto;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.contact-page-sayhello {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.contact-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.contact-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.contact-main-content {
  width: 100%;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-form-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

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

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

.contact-form-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 0.9vw, 0.95rem);
  color: var(--color-text-light);
  font-weight: 600;
  display: block;
}

.contact-form-input,
.contact-form-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  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-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-sm);
}

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

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

.contact-form-privacy {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.8vw, 0.9rem);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: var(--space-md);
}

.contact-form-privacy-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-form-privacy-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-info-wrapper {
  width: 100%;
}

.contact-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-info-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: var(--space-2xl);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.contact-info-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-info-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.contact-info-text p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.contact-info-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-info-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-info-hours {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem) !important;
  color: var(--color-text-muted) !important;
  margin-top: var(--space-xs) !important;
}

.contact-info-cta {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-info-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-info-cta p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.contact-info-cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-faq {
  background-color: var(--color-bg-secondary);
  padding: 4rem 0;
  overflow: hidden;
}

.contact-faq-content {
  width: 100%;
}

.contact-faq-content > h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.contact-faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-faq-item {
  padding: 1.75rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.contact-faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

.contact-faq-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-faq-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 6rem 0;
  }

  .contact-main {
    padding: 4rem 0 6rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100%;
  }

  .contact-faq {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-hero {
    padding: 8rem 0;
  }

  .contact-main {
    padding: 5rem 0 7rem;
  }

  .contact-grid {
    gap: 5rem;
  }

  .contact-faq {
    padding: 6rem 0;
  }

  .contact-faq-items {
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .contact-info-items {
    gap: 1.5rem;
  }

  .contact-info-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

.header-taal-forge-mobile-toggle[aria-expanded="true"]{
  display: none;
}  