
    @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: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(28, 25, 23, 0.05);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #ea580c;
  --color-secondary-hover: #c2410c;
  --color-tertiary: #f59e0b;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  
  --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-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.15);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

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

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

em, i {
  font-style: italic;
}

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

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-bordered {
  border: 2px solid var(--color-bg-secondary);
  box-shadow: none;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

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

.badge-success {
  background: #d1fae5;
  color: #047857;
}

.badge-warning {
  background: #fef3c7;
  color: #d97706;
}

.badge-error {
  background: #fee2e2;
  color: #dc2626;
}

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

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

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

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

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

textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

ul li::marker {
  color: var(--color-primary);
}

ol li::marker {
  color: var(--color-primary);
  font-weight: 600;
}

.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(250px, 1fr));
}

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

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

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

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

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

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }

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

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

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

.bg-primary { background: var(--color-bg-primary); }
.bg-secondary { background: var(--color-bg-secondary); }
.bg-tertiary { background: var(--color-bg-tertiary); }
.bg-accent { background: var(--color-primary); }
.bg-accent-light { background: var(--color-primary-light); }

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

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

hr {
  border: none;
  height: 1px;
  background: var(--color-bg-secondary);
  margin: var(--space-lg) 0;
}

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

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

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

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

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

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

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

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }
}

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

  .btn,
  .no-print {
    display: none;
  }
}
.header-taal-bridge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-text-light);
  position: static;
  width: 100%;
  z-index: var(--z-sticky);
}

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

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

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

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

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

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

.header-taal-bridge-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

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

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

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

.header-taal-bridge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

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

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

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

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

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

.header-taal-bridge-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

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

.header-taal-bridge-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-text-light);
}

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

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

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

.header-taal-bridge-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  transition: all var(--transition-base);
}

.header-taal-bridge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-taal-bridge-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
}

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

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

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

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

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

  .header-taal-bridge-mobile-menu {
    display: none !important;
  }
}

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

  .header-taal-bridge-logo-text {
    font-size: 1.375rem;
  }

  .header-taal-bridge-nav-link {
    font-size: 0.975rem;
  }

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

    .expat-language-hub {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-index {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

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

.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: var(--shadow-lg);
}

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0d9488;
  font-family: var(--font-heading);
}

.stat-label-index {
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

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

.why-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.section-tag-index {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

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

.why-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: 2.5rem;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-title-index {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 600;
  margin: 0;
}

.card-text-index {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .why-cards-index {
    gap: var(--space-lg);
  }

  .why-card-index {
    flex: 1 1 100%;
  }
}

.how-section-index {
  background: #fef3c7;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.how-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

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

.step-card-index {
  flex: 1 1 280px;
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0d9488;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-md);
}

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

.step-title-index {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 600;
  margin: 0;
}

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

@media (max-width: 768px) {
  .how-steps-index {
    gap: var(--space-lg);
  }

  .step-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.benefits-intro-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.benefits-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
}

.benefit-item-index::before {
  content: "";
  flex-shrink: 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.25rem;
}

.featured-quote-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0d9488;
  background: #fffbeb;
  border-radius: var(--radius-lg);
  margin: 0;
}

.quote-text-index {
  font-size: 1rem;
  color: #1c1917;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.quote-author-index {
  font-size: 0.875rem;
  color: #57534e;
  font-style: normal;
  font-weight: 500;
  display: block;
}

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

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

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

  .benefits-image-index {
    max-height: 350px;
  }
}

.featured-section-index {
  background: #fffbeb;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

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

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

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

.featured-card-title-index {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-footer-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .featured-cards-index {
    gap: var(--space-lg);
  }

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

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

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

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

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

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

.faq-item-index {
  flex: 1 1 350px;
  max-width: 450px;
  background: #fef3c7;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.faq-question-index {
  font-size: 1.1rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.faq-answer-index {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid-index {
    gap: var(--space-lg);
  }

  .faq-item-index {
    flex: 1 1 100%;
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  text-align: center;
  max-width: 700px;
}

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

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.cta-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cta-section-index .btn-primary {
  background: #ffffff;
  color: #0d9488;
  font-weight: 600;
}

.cta-section-index .btn-primary:hover {
  background: #f1f5f9;
  color: #0f766e;
}

.cta-section-index .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section-index .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e2e8f0;
}

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
}

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

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

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

.cookie-btn-decline-index:hover {
  border-color: #e2e8f0;
  background: rgba(13, 148, 136, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

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

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

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

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

@media print {
  .cookie-banner-index {
    display: none;
  }
}

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

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

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

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

.footer-about h3,
.footer-navigation h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

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

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base), text-decoration var(--transition-base);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-primary-light);
  text-align: center;
}

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

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

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

  .footer-navigation {
    flex: 1 1 200px;
    min-width: 200px;
  }

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

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

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

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

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

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

  .footer-about,
  .footer-navigation,
  .footer-contact,
  .footer-legal {
    width: 100%;
  }

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

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

.category-page-dutch-language-expat {
  background: #fffbeb;
  color: #1c1917;
}

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

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

.hero-text-wrapper-dutch-language-expat {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-dutch-language-expat {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0d9488;
  font-weight: 700;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dutch-language-expat {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #57534e;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-description-dutch-language-expat {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #78716f;
  line-height: 1.8;
  margin: 0;
}

.hero-image-wrapper-dutch-language-expat {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-dutch-language-expat {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

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

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

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

.posts-title-dutch-language-expat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.posts-subtitle-dutch-language-expat {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #78716f;
  margin: 0;
}

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

.card-dutch-language-expat {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  min-width: 280px;
}

.card-dutch-language-expat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

.card-image-dutch-language-expat {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
}

.card-title-dutch-language-expat {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #1c1917;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-dutch-language-expat {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #78716f;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch-language-expat {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f4;
}

.card-reading-time-dutch-language-expat,
.card-level-dutch-language-expat,
.card-date-dutch-language-expat {
  font-size: 0.85rem;
  color: #a8a29e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-dutch-language-expat i,
.card-level-dutch-language-expat i,
.card-date-dutch-language-expat i {
  color: #0d9488;
  font-size: 0.9rem;
}

.card-link-dutch-language-expat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
  margin-top: 0.5rem;
}

.card-link-dutch-language-expat:hover {
  background: #0f766e;
  transform: translateX(4px);
}

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

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

.insights-header-dutch-language-expat {
  text-align: center;
}

.insights-title-dutch-language-expat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin: 0;
}

.insights-quote-box-dutch-language-expat {
  background: #f5f3f0;
  border-left: 4px solid #0d9488;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
}

.insights-quote-text-dutch-language-expat {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1c1917;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.insights-quote-author-dutch-language-expat {
  font-size: 0.95rem;
  color: #78716f;
  font-weight: 600;
  margin: 0;
}

.insights-benefits-dutch-language-expat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.insights-benefit-item-dutch-language-expat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insights-benefit-title-dutch-language-expat {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0d9488;
  font-weight: 700;
  margin: 0;
}

.insights-benefit-text-dutch-language-expat {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #78716f;
  margin: 0;
  line-height: 1.7;
}

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

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

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

.tips-title-dutch-language-expat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tips-subtitle-dutch-language-expat {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #78716f;
  margin: 0;
}

.tips-list-dutch-language-expat {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.tips-item-dutch-language-expat {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.tips-number-dutch-language-expat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: #0d9488;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tips-item-title-dutch-language-expat {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1c1917;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tips-item-text-dutch-language-expat {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #78716f;
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .hero-content-dutch-language-expat {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-wrapper-dutch-language-expat,
  .hero-image-wrapper-dutch-language-expat {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .posts-grid-dutch-language-expat {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-benefits-dutch-language-expat {
    grid-template-columns: 1fr;
  }

  .tips-item-dutch-language-expat {
    flex-direction: column;
    gap: 1rem;
  }

  .tips-number-dutch-language-expat {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .card-meta-dutch-language-expat {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .hero-title-dutch-language-expat {
    font-size: 1.75rem;
  }

  .posts-title-dutch-language-expat,
  .insights-title-dutch-language-expat,
  .tips-title-dutch-language-expat {
    font-size: 1.5rem;
  }
}

.main-zakelijk-nederlands-vergaderingen {
background: #fffbeb;
color: #1c1917;
font-family: 'Poppins', sans-serif;
overflow: hidden;
}

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

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

.hero-text-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

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

.hero-subtitle-zakelijk-nederlands-vergaderingen {
color: #ffffff;
font-size: clamp(0.95rem, 1.5vw, 1.125rem);
line-height: 1.7;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
opacity: 0.95;
}

.hero-meta-zakelijk-nederlands-vergaderingen {
display: flex;
flex-direction: row;
gap: 0.75rem;
align-items: center;
flex-wrap: wrap;
}

.meta-item-zakelijk-nederlands-vergaderingen {
color: rgba(255, 255, 255, 0.9);
font-size: 0.95rem;
font-weight: 500;
}

.meta-divider-zakelijk-nederlands-vergaderingen {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}

.hero-image-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.hero-img-zakelijk-nederlands-vergaderingen {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.hero-img-zakelijk-nederlands-vergaderingen {
max-height: 300px;
}
}

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

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

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

.intro-text-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: clamp(0.95rem, 1.2vw, 1.1rem);
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-section-1-zakelijk-nederlands-vergaderingen {
background: #fef3c7;
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.content-text-1-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-1-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-family: 'Playfair Display', serif;
}

.content-text-para-1-zakelijk-nederlands-vergaderingen,
.content-text-para-2-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: clamp(0.95rem, 1.1vw, 1.05rem);
line-height: 1.75;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-1-zakelijk-nederlands-vergaderingen {
background: #ffffff;
border-left: 4px solid #0d9488;
padding: clamp(1.25rem, 2vw, 1.75rem);
border-radius: 8px;
margin-top: clamp(1rem, 2vw, 1.5rem);
box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
}

.highlight-title-1-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.75rem;
}

.highlight-list-1-zakelijk-nederlands-vergaderingen {
list-style: none;
padding: 0;
margin: 0;
}

.list-item-1-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.95rem;
padding: 0.5rem 0;
line-height: 1.6;
padding-left: 1.5rem;
position: relative;
}

.list-item-1-zakelijk-nederlands-vergaderingen::before {
content: "";
position: absolute;
left: 0;
color: #0d9488;
font-weight: 600;
}

.content-image-1-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-img-1-zakelijk-nederlands-vergaderingen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

@media (max-width: 768px) {
.content-wrapper-1-zakelijk-nederlands-vergaderingen {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.content-text-1-zakelijk-nederlands-vergaderingen,
.content-image-1-zakelijk-nederlands-vergaderingen {
flex: 1 1 100%;
max-width: 100%;
}

.content-img-1-zakelijk-nederlands-vergaderingen {
max-height: 300px;
}
}

.content-section-2-zakelijk-nederlands-vergaderingen {
background: #ffffff;
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.content-image-2-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.content-img-2-zakelijk-nederlands-vergaderingen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 8px 20px rgba(13, 148, 136, 0.1);
}

.content-text-2-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-2-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-family: 'Playfair Display', serif;
}

.content-text-para-3-zakelijk-nederlands-vergaderingen,
.content-text-para-4-zakelijk-nederlands-vergaderingen,
.content-text-para-5-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: clamp(0.95rem, 1.1vw, 1.05rem);
line-height: 1.75;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.email-template-zakelijk-nederlands-vergaderingen {
background: #fef3c7;
border-radius: 8px;
padding: clamp(1.25rem, 2vw, 1.75rem);
margin-top: clamp(1rem, 2vw, 1.5rem);
}

.template-label-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-size: 0.95rem;
font-weight: 600;
display: block;
margin-bottom: 0.75rem;
}

.template-text-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.9rem;
line-height: 1.7;
font-style: italic;
margin: 0;
}

@media (max-width: 768px) {
.content-wrapper-2-zakelijk-nederlands-vergaderingen {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.content-image-2-zakelijk-nederlands-vergaderingen,
.content-text-2-zakelijk-nederlands-vergaderingen {
flex: 1 1 100%;
max-width: 100%;
order: 0;
}

.content-img-2-zakelijk-nederlands-vergaderingen {
max-height: 300px;
}
}

.content-section-3-zakelijk-nederlands-vergaderingen {
background: #fef3c7;
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.content-text-3-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-3-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-family: 'Playfair Display', serif;
}

.content-text-para-6-zakelijk-nederlands-vergaderingen,
.content-text-para-7-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: clamp(0.95rem, 1.1vw, 1.05rem);
line-height: 1.75;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.careful-phrases-zakelijk-nederlands-vergaderingen {
background: #ffffff;
border-radius: 8px;
padding: clamp(1.25rem, 2vw, 1.75rem);
margin-top: clamp(1rem, 2vw, 1.5rem);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phrases-title-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 1rem;
}

.phrase-item-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 0.75rem;
padding: 0;
}

.phrase-item-zakelijk-nederlands-vergaderingen:last-child {
margin-bottom: 0;
}

.phrase-dutch-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-weight: 600;
}

.content-image-3-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-img-3-zakelijk-nederlands-vergaderingen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

@media (max-width: 768px) {
.content-wrapper-3-zakelijk-nederlands-vergaderingen {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.content-text-3-zakelijk-nederlands-vergaderingen,
.content-image-3-zakelijk-nederlands-vergaderingen {
flex: 1 1 100%;
max-width: 100%;
}

.content-img-3-zakelijk-nederlands-vergaderingen {
max-height: 300px;
}
}

.content-section-4-zakelijk-nederlands-vergaderingen {
background: #ffffff;
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

.content-image-4-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.content-img-4-zakelijk-nederlands-vergaderingen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 8px 20px rgba(13, 148, 136, 0.1);
}

.content-text-4-zakelijk-nederlands-vergaderingen {
flex: 1 1 50%;
max-width: 50%;
}

.content-title-4-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: clamp(1.5rem, 3.5vw, 2.25rem);
font-weight: 700;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-family: 'Playfair Display', serif;
}

.content-text-para-8-zakelijk-nederlands-vergaderingen,
.content-text-para-9-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: clamp(0.95rem, 1.1vw, 1.05rem);
line-height: 1.75;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.action-phrases-zakelijk-nederlands-vergaderingen {
background: #fef3c7;
border-radius: 8px;
padding: clamp(1.25rem, 2vw, 1.75rem);
margin-top: clamp(1rem, 2vw, 1.5rem);
}

.action-title-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 1rem;
}

.action-item-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 0.75rem;
padding: 0;
}

.action-item-zakelijk-nederlands-vergaderingen:last-child {
margin-bottom: 0;
}

.action-dutch-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-weight: 600;
}

@media (max-width: 768px) {
.content-wrapper-4-zakelijk-nederlands-vergaderingen {
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2rem);
}

.content-image-4-zakelijk-nederlands-vergaderingen,
.content-text-4-zakelijk-nederlands-vergaderingen {
flex: 1 1 100%;
max-width: 100%;
order: 0;
}

.content-img-4-zakelijk-nederlands-vergaderingen {
max-height: 300px;
}
}

.conclusion-section-zakelijk-nederlands-vergaderingen {
background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

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

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

.conclusion-text-zakelijk-nederlands-vergaderingen {
color: #ffffff;
font-size: clamp(0.95rem, 1.1vw, 1.05rem);
line-height: 1.8;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
opacity: 0.95;
}

.cta-box-zakelijk-nederlands-vergaderingen {
background: rgba(255, 255, 255, 0.15);
border: 2px solid rgba(255, 255, 255, 0.3);
padding: clamp(1.75rem, 3vw, 2.5rem);
border-radius: 12px;
margin-top: clamp(2rem, 4vw, 3rem);
backdrop-filter: blur(10px);
}

.cta-title-zakelijk-nederlands-vergaderingen {
color: #ffffff;
font-size: 1.35rem;
font-weight: 700;
margin-bottom: 0.75rem;
}

.cta-text-zakelijk-nederlands-vergaderingen {
color: #ffffff;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
opacity: 0.95;
}

.disclaimer-section-zakelijk-nederlands-vergaderingen {
background: #fef3c7;
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.disclaimer-content-zakelijk-nederlands-vergaderingen {
max-width: 900px;
margin: 0 auto;
background: #ffffff;
border-left: 4px solid #0d9488;
padding: clamp(1.75rem, 3vw, 2.5rem);
border-radius: 8px;
}

.disclaimer-title-zakelijk-nederlands-vergaderingen {
color: #0d9488;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 1rem;
}

.disclaimer-text-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

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

.related-content-zakelijk-nederlands-vergaderingen {
max-width: 1200px;
margin: 0 auto;
}

.related-title-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: clamp(2rem, 4vw, 3rem);
text-align: center;
font-family: 'Playfair Display', serif;
}

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

.related-card-zakelijk-nederlands-vergaderingen {
flex: 1 1 300px;
max-width: 380px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
text-decoration: none;
display: flex;
flex-direction: column;
}

.related-card-zakelijk-nederlands-vergaderingen:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

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

.related-img-zakelijk-nederlands-vergaderingen {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

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

.related-card-text-zakelijk-nederlands-vergaderingen {
padding: clamp(1.25rem, 2vw, 1.75rem);
flex: 1;
display: flex;
flex-direction: column;
}

.related-card-title-zakelijk-nederlands-vergaderingen {
color: #1c1917;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.75rem;
line-height: 1.4;
font-family: 'Playfair Display', serif;
}

.related-card-desc-zakelijk-nederlands-vergaderingen {
color: #57534e;
font-size: 0.9rem;
line-height: 1.6;
margin: 0;
flex: 1;
}

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

.related-img-zakelijk-nederlands-vergaderingen {
height: 180px;
}
}

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

.hero-subtitle-zakelijk-nederlands-vergaderingen {
font-size: 0.9rem;
}

.content-title-1-zakelijk-nederlands-vergaderingen,
.content-title-2-zakelijk-nederlands-vergaderingen,
.content-title-3-zakelijk-nederlands-vergaderingen,
.content-title-4-zakelijk-nederlands-vergaderingen {
font-size: 1.5rem;
}

.conclusion-title-zakelijk-nederlands-vergaderingen {
font-size: 1.5rem;
}

.related-title-zakelijk-nederlands-vergaderingen {
font-size: 1.5rem;
}

.container {
padding: 0 clamp(1rem, 3vw, 1.5rem);
}
}

html, body {
word-wrap: break-word;
overflow-wrap: break-word;
}

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

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

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

.main-nederlandse-klanken-beheersen {
width: 100%;
background: var(--color-bg-primary);
}

.hero-section-nederlandse-klanken-beheersen {
background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.hero-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.breadcrumbs-nederlandse-klanken-beheersen {
display: flex;
flex-direction: row;
gap: 0.5rem;
margin-bottom: var(--space-lg);
font-size: 0.875rem;
}

.breadcrumbs-nederlandse-klanken-beheersen a {
color: rgba(255, 255, 255, 0.8);
transition: color var(--transition-base);
}

.breadcrumbs-nederlandse-klanken-beheersen a:hover {
color: #ffffff;
text-decoration: none;
}

.breadcrumbs-nederlandse-klanken-beheersen span {
color: rgba(255, 255, 255, 0.6);
}

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

.hero-text-block-nederlandse-klanken-beheersen {
flex: 1 1 50%;
max-width: 50%;
color: #ffffff;
}

.hero-tag-nederlandse-klanken-beheersen {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
padding: 0.25rem 0.75rem;
border-radius: var(--radius-full);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: var(--space-md);
}

.hero-title-nederlandse-klanken-beheersen {
color: #ffffff;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: var(--space-md);
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-description-nederlandse-klanken-beheersen {
color: rgba(255, 255, 255, 0.9);
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.7;
margin-bottom: var(--space-lg);
}

.hero-meta-nederlandse-klanken-beheersen {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: var(--space-md);
}

.meta-item-nederlandse-klanken-beheersen {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.85);
font-size: 0.875rem;
}

.meta-item-nederlandse-klanken-beheersen i {
color: rgba(255, 255, 255, 0.7);
}

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

.hero-image-nederlandse-klanken-beheersen {
max-width: 100%;
height: auto;
border-radius: var(--radius-xl);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
display: block;
}

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

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

.hero-section-nederlandse-klanken-beheersen .container {
padding: 0 var(--space-md);
}
}

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

.intro-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

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

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

.intro-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700;
margin-bottom: var(--space-md);
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-paragraph-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
margin-bottom: var(--space-md);
}

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

.intro-image-nederlandse-klanken-beheersen {
max-width: 100%;
height: auto;
border-radius: var(--radius-lg);
display: block;
}

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

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

.intro-section-nederlandse-klanken-beheersen .container {
padding: 0 var(--space-md);
}
}

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

.sounds-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.sounds-content-nederlandse-klanken-beheersen {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

.sound-card-nederlandse-klanken-beheersen {
background: #ffffff;
border-radius: var(--radius-lg);
padding: clamp(1.5rem, 3vw, 2.5rem);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
}

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

.sound-header-nederlandse-klanken-beheersen {
margin-bottom: var(--space-md);
}

.sound-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.25rem, 3vw, 1.75rem);
font-weight: 700;
margin: 0;
}

.sound-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
margin-bottom: var(--space-md);
}

.sound-tips-nederlandse-klanken-beheersen {
margin: var(--space-md) 0 0 0;
padding-left: var(--space-lg);
}

.sound-tips-nederlandse-klanken-beheersen li {
color: #57534e;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: var(--space-sm);
}

.sound-tips-nederlandse-klanken-beheersen li::marker {
color: #0d9488;
font-weight: 600;
}

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

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

.practice-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

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

.practice-text-block-nederlandse-klanken-beheersen {
flex: 1 1 50%;
max-width: 50%;
}

.practice-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700;
margin-bottom: var(--space-lg);
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-intro-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
margin-bottom: var(--space-lg);
}

.practice-steps-nederlandse-klanken-beheersen {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.step-block-nederlandse-klanken-beheersen {
display: flex;
flex-direction: row;
gap: var(--space-md);
}

.step-number-nederlandse-klanken-beheersen {
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 800;
color: #0d9488;
min-width: 60px;
}

.step-content-nederlandse-klanken-beheersen {
flex: 1;
}

.step-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.step-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

.practice-image-block-nederlandse-klanken-beheersen {
flex: 1 1 50%;
max-width: 50%;
}

.practice-image-nederlandse-klanken-beheersen {
max-width: 100%;
height: auto;
border-radius: var(--radius-lg);
display: block;
}

@media (max-width: 768px) {
.practice-wrapper-nederlandse-klanken-beheersen {
flex-direction: column;
}

.practice-text-block-nederlandse-klanken-beheersen,
.practice-image-block-nederlandse-klanken-beheersen {
flex: 1 1 100%;
max-width: 100%;
}

.practice-section-nederlandse-klanken-beheersen .container {
padding: 0 var(--space-md);
}
}

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

.resources-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.resources-header-nederlandse-klanken-beheersen {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.resources-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700;
margin-bottom: var(--space-md);
word-wrap: break-word;
overflow-wrap: break-word;
}

.resources-subtitle-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
max-width: 600px;
margin: 0 auto;
}

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

.resource-card-nederlandse-klanken-beheersen {
flex: 1 1 280px;
max-width: 320px;
background: #ffffff;
border-radius: var(--radius-lg);
padding: var(--space-lg);
box-shadow: var(--shadow-md);
text-align: center;
transition: all var(--transition-base);
display: flex;
flex-direction: column;
gap: var(--space-md);
}

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

.resource-icon-nederlandse-klanken-beheersen {
font-size: 2.5rem;
color: #0d9488;
}

.resource-card-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: 1.125rem;
font-weight: 600;
margin: 0;
}

.resource-card-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

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

.resource-card-nederlandse-klanken-beheersen {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.realistic-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

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

.realistic-image-block-nederlandse-klanken-beheersen {
flex: 1 1 50%;
max-width: 50%;
}

.realistic-image-nederlandse-klanken-beheersen {
max-width: 100%;
height: auto;
border-radius: var(--radius-lg);
display: block;
}

.realistic-text-block-nederlandse-klanken-beheersen {
flex: 1 1 50%;
max-width: 50%;
}

.realistic-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700;
margin-bottom: var(--space-md);
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.realistic-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
margin-bottom: var(--space-md);
}

.realistic-text-nederlandse-klanken-beheersen:last-child {
margin-bottom: 0;
}

@media (max-width: 768px) {
.realistic-wrapper-nederlandse-klanken-beheersen {
flex-direction: column;
}

.realistic-text-block-nederlandse-klanken-beheersen,
.realistic-image-block-nederlandse-klanken-beheersen {
flex: 1 1 100%;
max-width: 100%;
}

.realistic-section-nederlandse-klanken-beheersen .container {
padding: 0 var(--space-md);
}
}

.conclusion-section-nederlandse-klanken-beheersen {
background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.conclusion-content-nederlandse-klanken-beheersen {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.conclusion-quote-block-nederlandse-klanken-beheersen {
margin-bottom: var(--space-lg);
}

.featured-quote-nederlandse-klanken-beheersen {
padding: var(--space-lg);
border-left: 4px solid rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.1);
border-radius: var(--radius-md);
font-style: italic;
}

.quote-text-nederlandse-klanken-beheersen {
color: #ffffff;
font-size: clamp(1rem, 2vw, 1.25rem);
line-height: 1.8;
margin-bottom: var(--space-md);
}

.quote-author-nederlandse-klanken-beheersen {
color: rgba(255, 255, 255, 0.85);
font-size: 0.875rem;
font-style: italic;
display: block;
}

.conclusion-title-nederlandse-klanken-beheersen {
color: #ffffff;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: var(--space-md);
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-text-nederlandse-klanken-beheersen {
color: rgba(255, 255, 255, 0.9);
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
margin-bottom: var(--space-md);
}

.conclusion-cta-nederlandse-klanken-beheersen {
align-self: flex-start;
background: #ffffff;
color: #0d9488;
}

.conclusion-cta-nederlandse-klanken-beheersen:hover {
background: #f0f9f8;
color: #0f766e;
}

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

.conclusion-cta-nederlandse-klanken-beheersen {
align-self: center;
width: 100%;
}
}

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

.related-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.related-header-nederlandse-klanken-beheersen {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 700;
margin-bottom: var(--space-md);
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-subtitle-nederlandse-klanken-beheersen {
color: #57534e;
font-size: clamp(0.95rem, 1vw, 1.125rem);
line-height: 1.75;
max-width: 600px;
margin: 0 auto;
}

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

.related-card-nederlandse-klanken-beheersen {
flex: 1 1 300px;
max-width: 360px;
background: #ffffff;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
display: flex;
flex-direction: column;
}

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

.related-card-image-nederlandse-klanken-beheersen {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-card-image-nederlandse-klanken-beheersen img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-base);
}

.related-card-nederlandse-klanken-beheersen:hover .related-card-image-nederlandse-klanken-beheersen img {
transform: scale(1.05);
}

.related-card-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: 1.125rem;
font-weight: 600;
padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
margin: 0;
}

.related-card-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: 0.95rem;
line-height: 1.6;
padding: var(--space-md) var(--space-lg) 0 var(--space-lg);
margin: 0;
}

.related-card-link-nederlandse-klanken-beheersen {
color: #0d9488;
font-weight: 600;
padding: var(--space-md) var(--space-lg) var(--space-lg) var(--space-lg);
display: inline-block;
transition: color var(--transition-base);
}

.related-card-link-nederlandse-klanken-beheersen:hover {
color: #0f766e;
text-decoration: none;
}

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

.related-card-nederlandse-klanken-beheersen {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.disclaimer-section-nederlandse-klanken-beheersen .container {
max-width: 1440px;
margin: 0 auto;
padding: 0 var(--space-lg);
}

.disclaimer-content-nederlandse-klanken-beheersen {
background: #ffffff;
border-left: 4px solid #f59e0b;
border-radius: var(--radius-lg);
padding: clamp(1.5rem, 3vw, 2.5rem);
display: flex;
flex-direction: row;
gap: var(--space-lg);
align-items: flex-start;
}

.disclaimer-icon-nederlandse-klanken-beheersen {
color: #f59e0b;
font-size: 1.75rem;
flex-shrink: 0;
min-width: 30px;
text-align: center;
margin-top: 0.25rem;
}

.disclaimer-title-nederlandse-klanken-beheersen {
color: #1c1917;
font-size: 1.125rem;
font-weight: 600;
margin-bottom: var(--space-sm);
}

.disclaimer-text-nederlandse-klanken-beheersen {
color: #57534e;
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

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

.disclaimer-content-nederlandse-klanken-beheersen {
flex-direction: column;
}
}

.main-nederlandse-leer-apps-tools {
  width: 100%;
  overflow: hidden;
}

.hero-section-nederlandse-leer-apps-tools {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-leer-apps-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.875rem;
}

.breadcrumbs-nederlandse-leer-apps-tools a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-nederlandse-leer-apps-tools a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-leer-apps-tools span {
  color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

.hero-subtitle-nederlandse-leer-apps-tools {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-nederlandse-leer-apps-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.meta-item-nederlandse-leer-apps-tools {
  color: rgba(255, 255, 255, 0.85);
}

.meta-divider-nederlandse-leer-apps-tools {
  color: rgba(255, 255, 255, 0.6);
}

.hero-image-nederlandse-leer-apps-tools {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .hero-text-block-nederlandse-leer-apps-tools,
  .hero-image-block-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-nederlandse-leer-apps-tools {
    font-size: 1.75rem;
  }

  .hero-subtitle-nederlandse-leer-apps-tools {
    font-size: 1rem;
  }
}

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

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

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

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

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

.intro-title-nederlandse-leer-apps-tools {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-nederlandse-leer-apps-tools {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-block-nederlandse-leer-apps-tools img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .intro-text-block-nederlandse-leer-apps-tools,
  .intro-image-block-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.apps-content-nederlandse-leer-apps-tools {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.apps-header-nederlandse-leer-apps-tools {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.apps-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.apps-subtitle-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.app-card-nederlandse-leer-apps-tools {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card-nederlandse-leer-apps-tools:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.app-icon-nederlandse-leer-apps-tools {
  font-size: 2.5rem;
  color: #0d9488;
  margin-bottom: 1rem;
}

.app-name-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.app-description-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.app-verdict-nederlandse-leer-apps-tools {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.app-verdict-nederlandse-leer-apps-tools strong {
  color: #1e293b;
}

@media (max-width: 768px) {
  .app-card-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

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

.websites-title-nederlandse-leer-apps-tools {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.websites-intro-nederlandse-leer-apps-tools {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.websites-list-nederlandse-leer-apps-tools {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.website-item-nederlandse-leer-apps-tools {
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #e2e8f0;
}

.website-item-nederlandse-leer-apps-tools:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.website-name-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.website-text-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.websites-image-block-nederlandse-leer-apps-tools img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .websites-content-nederlandse-leer-apps-tools {
    flex-direction: column;
  }

  .websites-text-block-nederlandse-leer-apps-tools,
  .websites-image-block-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.strategy-image-block-nederlandse-leer-apps-tools {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.strategy-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.strategy-paragraph-nederlandse-leer-apps-tools {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.strategy-steps-nederlandse-leer-apps-tools {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-box-nederlandse-leer-apps-tools {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-number-nederlandse-leer-apps-tools {
  font-size: 2rem;
  font-weight: 800;
  color: #0d9488;
}

.step-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.step-text-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.strategy-image-block-nederlandse-leer-apps-tools img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .strategy-content-nederlandse-leer-apps-tools {
    flex-direction: column;
  }

  .strategy-image-block-nederlandse-leer-apps-tools,
  .strategy-text-block-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.tips-section-nederlandse-leer-apps-tools {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.tips-title-nederlandse-leer-apps-tools {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

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

.tip-card-nederlandse-leer-apps-tools {
  flex: 1 1 calc(50% - 1rem);
  min-width: 260px;
  max-width: 340px;
  background: #334155;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.tip-card-nederlandse-leer-apps-tools:hover {
  transform: translateY(-4px);
}

.tip-icon-nederlandse-leer-apps-tools {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.tip-heading-nederlandse-leer-apps-tools {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tip-text-nederlandse-leer-apps-tools {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-card-nederlandse-leer-apps-tools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.conclusion-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.conclusion-text-nederlandse-leer-apps-tools {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-nederlandse-leer-apps-tools {
  background: #f0fdfa;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-nederlandse-leer-apps-tools {
  color: #0f766e;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.disclaimer-section-nederlandse-leer-apps-tools {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-leer-apps-tools {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

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

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

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

.related-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}

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

.related-card-nederlandse-leer-apps-tools {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 260px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-leer-apps-tools:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.related-image-container-nederlandse-leer-apps-tools {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f9ff;
}

.related-image-container-nederlandse-leer-apps-tools img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-text-nederlandse-leer-apps-tools {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-nederlandse-leer-apps-tools {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-nederlandse-leer-apps-tools {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

  .conclusion-text-nederlandse-leer-apps-tools {
    font-size: 0.95rem;
  }
}

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

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

.main-alledaags-nederlands-slang {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-alledaags-nederlands-slang {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-alledaags-nederlands-slang .container {
  display: block;
}

.breadcrumbs-alledaags-nederlands-slang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs-alledaags-nederlands-slang a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-alledaags-nederlands-slang a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs-alledaags-nederlands-slang span {
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-text-alledaags-nederlands-slang {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-alledaags-nederlands-slang {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title-alledaags-nederlands-slang {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-alledaags-nederlands-slang {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-alledaags-nederlands-slang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.meta-item-alledaags-nederlands-slang i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.hero-image-alledaags-nederlands-slang {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-alledaags-nederlands-slang {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

  .hero-title-alledaags-nederlands-slang {
    font-size: 2rem;
  }

  .hero-description-alledaags-nederlands-slang {
    font-size: 1rem;
  }
}

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

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

.intro-text-alledaags-nederlands-slang {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-description-alledaags-nederlands-slang {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-alledaags-nederlands-slang {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-alledaags-nederlands-slang {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.content-section-one-alledaags-nederlands-slang {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-title-one-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-desc-one-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.expression-list-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expression-item-alledaags-nederlands-slang {
  background: #ffffff;
  padding: 1.25rem;
  border-left: 4px solid #0d9488;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expression-title-alledaags-nederlands-slang {
  color: #1c1917;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.expression-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.content-img-one-alledaags-nederlands-slang {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.content-section-two-alledaags-nederlands-slang {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-alledaags-nederlands-slang {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-alledaags-nederlands-slang {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.content-title-two-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-desc-two-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.saying-box-alledaags-nederlands-slang {
  background: #fef3c7;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.saying-box-alledaags-nederlands-slang:last-child {
  margin-bottom: 0;
}

.saying-title-alledaags-nederlands-slang {
  color: #1c1917;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.saying-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .content-image-two-alledaags-nederlands-slang,
  .content-text-two-alledaags-nederlands-slang {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.content-section-three-alledaags-nederlands-slang {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-title-three-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-desc-three-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.verb-list-alledaags-nederlands-slang {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verb-item-alledaags-nederlands-slang {
  background: #ffffff;
  padding: 1.25rem;
  border-left: 4px solid #0d9488;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.verb-item-alledaags-nederlands-slang strong {
  color: #1c1917;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.verb-item-alledaags-nederlands-slang p {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.content-img-three-alledaags-nederlands-slang {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.slang-content-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slang-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slang-intro-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.slang-card-alledaags-nederlands-slang {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fef3c7;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slang-card-alledaags-nederlands-slang:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.slang-card-title-alledaags-nederlands-slang {
  color: #1c1917;
  font-size: 1.1rem;
  font-weight: 600;
}

.slang-card-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .slang-cards-alledaags-nederlands-slang {
    flex-direction: column;
  }

  .slang-card-alledaags-nederlands-slang {
    max-width: 100%;
  }
}

.practical-section-alledaags-nederlands-slang {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.practical-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.practical-steps-alledaags-nederlands-slang {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-item-alledaags-nederlands-slang {
  flex: 1 1 280px;
  max-width: 300px;
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item-alledaags-nederlands-slang:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number-alledaags-nederlands-slang {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
}

.step-content-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-alledaags-nederlands-slang {
  color: #1c1917;
  font-size: 1.15rem;
  font-weight: 600;
}

.step-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practical-steps-alledaags-nederlands-slang {
    flex-direction: column;
  }

  .step-item-alledaags-nederlands-slang {
    max-width: 100%;
  }
}

.highlight-section-alledaags-nederlands-slang {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlight-content-alledaags-nederlands-slang {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-quote-alledaags-nederlands-slang {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffffff;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 700px;
  text-align: center;
}

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

.quote-author-alledaags-nederlands-slang {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  font-style: normal;
}

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

.conclusion-content-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.85;
}

.conclusion-cta-alledaags-nederlands-slang {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-button-alledaags-nederlands-slang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.cta-button-alledaags-nederlands-slang:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  text-decoration: none;
}

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

.related-content-alledaags-nederlands-slang {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

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

.related-card-alledaags-nederlands-slang {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-alledaags-nederlands-slang:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.related-card-img-alledaags-nederlands-slang {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-alledaags-nederlands-slang {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-alledaags-nederlands-slang {
  color: #0d9488;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-desc-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-alledaags-nederlands-slang {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-base);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-link-alledaags-nederlands-slang:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-alledaags-nederlands-slang {
    flex-direction: column;
  }

  .related-card-alledaags-nederlands-slang {
    max-width: 100%;
  }
}

.disclaimer-section-alledaags-nederlands-slang {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e7e5e4;
}

.disclaimer-content-alledaags-nederlands-slang {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-alledaags-nederlands-slang {
  color: #1c1917;
  font-size: 1.25rem;
  font-weight: 600;
}

.disclaimer-text-alledaags-nederlands-slang {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section-alledaags-nederlands-slang,
  .intro-section-alledaags-nederlands-slang,
  .content-section-one-alledaags-nederlands-slang,
  .content-section-two-alledaags-nederlands-slang,
  .content-section-three-alledaags-nederlands-slang,
  .slang-section-alledaags-nederlands-slang,
  .practical-section-alledaags-nederlands-slang,
  .conclusion-section-alledaags-nederlands-slang,
  .related-section-alledaags-nederlands-slang,
  .disclaimer-section-alledaags-nederlands-slang {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .breadcrumbs-alledaags-nederlands-slang {
    font-size: 0.75rem;
  }

  .hero-meta-alledaags-nederlands-slang {
    gap: 1rem;
  }

  .meta-item-alledaags-nederlands-slang {
    font-size: 0.85rem;
  }
}

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

  .intro-title-alledaags-Nederlands-slang,
  .content-title-one-alledaags-nederlands-slang,
  .content-title-two-alledaags-nederlands-slang,
  .content-title-three-alledaags-nederlands-slang,
  .slang-title-alledaags-nederlands-slang,
  .practical-title-alledaags-nederlands-slang,
  .conclusion-title-alledaags-nederlands-slang,
  .related-title-alledaags-nederlands-slang {
    font-size: 1.5rem;
  }

  .step-number-alledaags-nederlands-slang {
    font-size: 2rem;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.expat-language-journey-about {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.hero-text-wrapper-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.stat-item-about {
  flex: 1 1 auto;
  min-width: 140px;
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 3px solid var(--color-accent);
}

.stat-number-about {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-section-about {
  background: var(--color-bg-secondary);
  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: 700px;
  margin: 0 auto;
}

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

.story-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.story-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-text-block-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.story-paragraph-about {
  font-size: clamp(0.9rem, 1.2vw, 1.075rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.story-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: 2rem;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: 2rem;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-base);
}

.process-step-about:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
  font-family: var(--font-heading);
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.values-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: 2rem;
  background: var(--color-bg-primary);
  border-radius: 12px;
  border-top: 3px solid var(--color-accent);
  transition: all var(--transition-base);
}

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

.value-icon-about {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.value-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.value-card-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.approach-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.approach-block-about {
  padding: 2rem;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.approach-block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.approach-block-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

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

.testimonial-header-about {
  text-align: center;
}

.testimonial-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testimonial-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-primary);
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-about {
  font-size: clamp(1.05rem, 1.8vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-secondary);
}

.disclaimer-content-about {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-icon-about {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

  .step-number-about {
    min-width: auto;
    text-align: left;
  }

  .approach-blocks-about {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .story-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .testimonial-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }
}

.faq-cards-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.faq-card-button {
  width: 100%;
  background: #0d1526;
  border: none;
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background-color var(--transition-fast);
  font-family: var(--font-primary);
}

.faq-card-button:hover {
  background-color: var(--color-bg-secondary);
}

.faq-card-button:active {
  background-color: var(--color-bg-secondary);
}

.faq-card-question {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}

.faq-card-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  width: 24px;
  height: 24px;
}

.faq-card-button[aria-expanded="true"] .faq-card-icon {
  transform: rotate(180deg);
}

.faq-card-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-card-answer.active {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-card-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-cards-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .faq-card-button {
    padding: var(--space-lg);
  }

  .faq-card-answer.active {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-bg-tertiary);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-bg-tertiary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

.faq-cta-button:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-page {
    background-color: var(--color-bg-primary);
  }

  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

.services-hero {
  background-color: var(--color-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  color: var(--color-bg-tertiary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-primary-light);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-content {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-content {
    padding: 5rem var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: 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-primary);
  flex-shrink: 0;
}

.service-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.service-card-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-text-light);
}

.service-detail-item {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.service-detail-item::before {
  content: "";
  display: inline-block;
  opacity: 0.7;
}

.services-cta {
  background-color: var(--color-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  color: var(--color-bg-tertiary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.01em;
}

.services-cta-description {
  font-family: var(--font-primary);
  color: var(--color-primary-light);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0 0 var(--space-lg) 0;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-secondary);
  cursor: pointer;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem var(--space-lg);
  }

  .services-cta-title {
    margin-bottom: var(--space-lg);
  }

  .services-cta-description {
    margin-bottom: var(--space-xl);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem var(--space-xl);
  }

  .services-cta-button {
    padding: 0.875rem var(--space-xl);
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: var(--space-md);
  }

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

.docs-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.docs-portal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.docs-portal 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.3;
}

.docs-portal .updated {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  margin-bottom: var(--space-xl);
  display: block;
}

.docs-portal section {
  margin-bottom: var(--space-3xl);
}

.docs-portal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  line-height: 1.4;
}

.docs-portal p {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.docs-portal ul {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.docs-portal li {
  margin-bottom: var(--space-sm);
}

.docs-portal strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.docs-portal .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.docs-portal .contact-section h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.docs-portal .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .docs-portal .container {
    padding: var(--space-xl);
  }

  .docs-portal .content {
    padding: var(--space-2xl) 0;
  }
}

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

  .docs-portal .content {
    padding: var(--space-3xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.15));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.6;
}

.thank-description {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  padding: var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
  cursor: pointer;
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

  .thank-wrapper {
    padding: var(--space-xl) 0;
  }

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

  .thank-description {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-2xl);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .success-icon {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .thank-next-steps {
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .btn-primary {
    width: 100%;
    padding: var(--space-md) var(--space-sm);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  gap: var(--space-2xl);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-decoration {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  opacity: 0.6;
  animation: pulse-width 2s ease-in-out infinite;
}

@keyframes pulse-width {
  0%, 100% {
    width: 150px;
  }
  50% {
    width: 180px;
  }
}

.error-message {
  width: 100%;
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  gap: var(--space-md);
  text-align: center;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: var(--space-lg) 0 0 0;
  letter-spacing: -0.5px;
}

.error-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.suggestions-label {
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.suggestions-list li::before {
  content: "";
  display: inline-block;
  margin-right: var(--space-sm);
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  font-family: var(--font-primary);
  margin-top: var(--space-md);
}

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

.error-illustration {
  width: 100%;
  max-width: 250px;
  margin-top: var(--space-xl);
  opacity: 0.8;
}

.illustration-svg {
  width: 100%;
  height: auto;
  color: var(--color-primary);
  animation: gentle-rotate 6s ease-in-out infinite;
}

@keyframes gentle-rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl);
  }

  .error-content {
    gap: var(--space-3xl);
  }

  .error-code {
    animation: float-up 3.5s ease-in-out infinite;
  }

  .error-suggestions {
    padding: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .error-content {
    gap: var(--space-3xl);
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .error-visual {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-right: var(--space-xl);
  }

  .error-code-wrapper {
    position: relative;
  }

  .error-message {
    flex: 1;
    align-items: flex-start;
  }

  .error-title {
    margin-top: 0;
  }

  .error-decoration {
    bottom: -40px;
  }

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

  .error-illustration {
    margin-top: 0;
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: var(--space-3xl);
  }

  .error-content {
    gap: var(--space-3xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }

  .illustration-svg {
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .illustration-svg {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-page-sayhello {
  width: 100%;
}

.contact-page-sayhello-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-sayhello-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-sayhello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.contact-page-sayhello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.contact-page-sayhello-main {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-page-sayhello-main-content {
  width: 100%;
}

.contact-page-sayhello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-page-sayhello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-sayhello-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.contact-page-sayhello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-sayhello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-sayhello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-page-sayhello-input,
.contact-page-sayhello-textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

.contact-page-sayhello-input::placeholder,
.contact-page-sayhello-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-page-sayhello-input:focus,
.contact-page-sayhello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-page-sayhello-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page-sayhello-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.contact-page-sayhello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-page-sayhello-submit:active {
  transform: translateY(0);
}

.contact-page-sayhello-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.contact-page-sayhello-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-page-sayhello-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-sayhello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-sayhello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.contact-page-sayhello-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-page-sayhello-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-page-sayhello-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-page-sayhello-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-page-sayhello-info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-sayhello-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.contact-page-sayhello-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-page-sayhello-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-page-sayhello-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-sayhello-info-extra {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.contact-page-sayhello-info-extra-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.contact-page-sayhello-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-page-sayhello-hours-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
}

.contact-page-sayhello-hours-day {
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-page-sayhello-hours-time {
  color: var(--color-text-secondary);
}

.contact-page-sayhello-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-sayhello-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.contact-page-sayhello-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  line-height: 1.2;
}

.contact-page-sayhello-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-bg-tertiary);
  line-height: 1.7;
  max-width: 500px;
}

.contact-page-sayhello-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  margin-top: var(--space-sm);
}

.contact-page-sayhello-cta-button:hover {
  background-color: var(--color-bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-page-sayhello-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .contact-page-sayhello-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-sayhello-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-sayhello-grid {
    gap: var(--space-3xl);
  }

  .contact-page-sayhello-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-sayhello-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-sayhello-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-page-sayhello-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-sayhello-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-sayhello-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-page-sayhello-grid {
    flex-direction: column;
  }

  .contact-page-sayhello-form-wrapper,
  .contact-page-sayhello-info-wrapper {
    width: 100%;
  }

  .contact-page-sayhello-info-item {
    align-items: center;
  }
}