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

:root {
  
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent-light: #dbeafe;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-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;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -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;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

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

section,
[class*="-section"] {
  width: 100%;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: var(--color-accent-light);
  box-shadow: var(--shadow-md);
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

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

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

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

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

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

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
  
  .hide-desktop {
    display: none;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.decoration {
  position: absolute;
  pointer-events: none;
}

.decoration-circle {
  border-radius: 50%;
  opacity: 0.08;
  background: var(--color-primary);
}

.decoration-blur {
  filter: blur(80px);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none !important;
  }
}
:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-card: #ffffff;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-secondary: #0ea5e9;
    --color-accent-light: #dbeafe;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
  }

  .header-dutch-academy {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }

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

  .header-dutch-academy-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 300ms ease-in-out;
  }

  .header-dutch-academy-brand:hover {
    opacity: 0.8;
  }

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

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

  .header-dutch-academy-desktop-nav {
    display: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    flex: 1;
  }

  .header-dutch-academy-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease-in-out;
    position: relative;
  }

  .header-dutch-academy-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-dutch-academy-nav-link:hover {
    color: var(--color-primary);
  }

  .header-dutch-academy-nav-link:hover::after {
    width: 100%;
  }

  .header-dutch-academy-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header-dutch-academy-cta-button:active {
    transform: translateY(0);
    transition-duration: 150ms;
  }

  .header-dutch-academy-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 300ms ease-in-out;
  }

  .header-dutch-academy-mobile-toggle:hover {
    color: var(--color-primary-hover);
  }

  .header-dutch-academy-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-dutch-academy-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

  .header-dutch-academy-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 300ms ease-in-out;
  }

  .header-dutch-academy-mobile-close:hover {
    color: var(--color-primary-hover);
  }

  .header-dutch-academy-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    flex: 1;
  }

  .header-dutch-academy-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: background 300ms ease-in-out, color 300ms ease-in-out;
  }

  .header-dutch-academy-mobile-link:hover {
    background: var(--color-bg-secondary);
    color: var(--color-primary);
  }

  .header-dutch-academy-mobile-cta {
    margin: 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

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

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

    .header-dutch-academy-cta-button {
      display: inline-flex;
    }

    .header-dutch-academy-mobile-toggle {
      display: none;
    }

    .header-dutch-academy-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .header-dutch-academy-container {
      padding: 1rem 1rem;
    }

    .header-dutch-academy-logo-text {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    .header-dutch-academy-nav-link {
      font-size: 1rem;
    }

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

    .business-dutch-hub {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  top: 5%;
  right: 2%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-radiant-orb {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #64748b;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.hero-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2563eb;
  display: block;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.9;
}

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

.hero-buttons .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
}

.features-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.features-glow-left {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-accent {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-line-divider {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-floating-panel {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
}

.features-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.features-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.features-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 12px;
  font-size: 1.5rem;
}

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

.features-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

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

.approach-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.approach-shape-1 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.approach-shape-2 {
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.approach-glow-accent {
  position: absolute;
  top: 40%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.approach-line-element {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.approach-content {
  position: relative;
  z-index: 10;
}

.approach-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.approach-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-step:hover {
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
}

.approach-step-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.approach-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.approach-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.posts-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.posts-glow-top {
  position: absolute;
  top: -50px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.posts-accent-shape {
  position: absolute;
  bottom: 10%;
  left: 2%;
  width: 220px;
  height: 220px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.posts-floating-element {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 160px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.posts-content {
  position: relative;
  z-index: 10;
}

.posts-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

.posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.posts-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.posts-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

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

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

.posts-card-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

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

.posts-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 300ms ease-in-out;
  align-self: flex-start;
}

.posts-card-link:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

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

.benefits-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #ffffff;
  overflow: hidden;
}

.benefits-shape-accent-1 {
  position: absolute;
  top: 10%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-accent-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 45% 55% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-element {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line-accent {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 8vw, 4rem);
  align-items: center;
}

.benefits-text-block {
  flex: 1 1 350px;
  min-width: 300px;
}

.benefits-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-intro {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.benefits-item {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.benefits-item-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-item-title {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

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

.benefits-visual-block {
  flex: 1 1 350px;
  min-width: 300px;
}

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

@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
  }
  
  .benefits-text-block,
  .benefits-visual-block {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.quote-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #f8fafc;
  overflow: hidden;
}

.quote-glow-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.quote-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-shape-element {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50% 50% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.quote-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.quote-block {
  padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.quote-text {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-style: italic;
}

.quote-author {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.contact-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #0f172a;
  overflow: hidden;
}

.contact-shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 45% 55% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-glow-accent {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-line-element {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 8vw, 4.5rem);
}

.contact-form-wrapper {
  flex: 1 1 380px;
  min-width: 300px;
}

.contact-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.contact-intro {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.6;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: #e2e8f0;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #94a3b8;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #2563eb;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.contact-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-submit:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.contact-info-wrapper {
  flex: 1 1 380px;
  min-width: 300px;
}

.contact-info-title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-faq-item {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 300ms ease;
}

.contact-faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 211, 238, 0.2);
}

.contact-faq-question {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  margin: 0 0 0.75rem 0;
}

.contact-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin: 0;
  line-height: 1.5;
  flex: 1 1 300px;
}

.cookie-banner-link {
  color: #06b6d4;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-banner-link:hover {
  color: #22d3ee;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
  border: none;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #2563eb;
  color: #ffffff;
}

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

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

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

@media (min-width: 768px) {
  .hero-section {
    padding: clamp(5rem, 12vw, 8.5rem) 0;
  }
  
  .features-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .approach-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .posts-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .benefits-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .quote-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .contact-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .features-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .approach-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .posts-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .benefits-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .quote-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
  
  .contact-section {
    padding: clamp(6rem, 14vw, 9rem) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 200px;
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  line-height: 1.5;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-accent-light);
}

.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

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

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
}

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

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

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

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

  .footer-sections {
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .footer-column {
    flex: 1 1 220px;
    gap: 1.5rem;
  }

  .footer-link {
    font-size: 0.9375rem;
  }

  .footer-contact-item {
    font-size: 0.9375rem;
  }

  .footer-legal-nav {
    gap: 2rem;
  }

  .footer-legal-link {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: 4rem;
  }

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

  .footer-sections {
    gap: 5rem;
  }

  .footer-column {
    flex: 1 1 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-link,
  .footer-legal-link {
    transition-duration: 0.01ms;
  }
}
    

.category-page-dutch-professionals {
  width: 100%;
}

.hero-section-dutch-professionals {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero-deco-glow-1-dutch {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-mesh-dutch {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-dutch {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-dutch-professionals {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-tag-dutch {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title-dutch {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-subtitle-dutch {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
}

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

.hero-stat-number-dutch {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.hero-stat-label-dutch {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-buttons-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .hero-section-dutch-professionals {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.featured-section-dutch-professionals {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-deco-accent-dutch {
  position: absolute;
  top: 10%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(2, 132, 199, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-shape-dutch {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.featured-header-dutch {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.featured-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.featured-subtitle-dutch {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.featured-card-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.featured-card-dutch:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.featured-card-content-dutch {
  flex: 1;
  padding: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.featured-card-text-dutch {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-card-heading-dutch {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.featured-card-desc-dutch {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.featured-card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.featured-meta-item-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #f8fafc;
  color: #475569;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.featured-meta-item-dutch i {
  color: #2563eb;
  font-size: 0.875rem;
}

.featured-card-link-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  border-bottom: 2px solid transparent;
}

.featured-card-link-dutch:hover {
  gap: 1rem;
  border-bottom-color: #2563eb;
}

.featured-card-image-dutch {
  flex: 0 0 clamp(280px, 35vw, 450px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .featured-card-dutch {
    flex-direction: column;
  }
  
  .featured-card-image-dutch {
    flex: 0 0 280px;
    height: 280px;
  }
}

.posts-section-dutch-professionals {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.posts-deco-glow-dutch {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-blur-dutch {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-dutch {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.posts-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.posts-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-dutch {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.posts-card-dutch {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.posts-card-dutch:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.posts-card-image-dutch {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.posts-card-dutch > *:not(.posts-card-image-dutch) {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem);
}

.posts-card-dutch > h3:first-of-type {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
}

.posts-card-dutch > :last-child:not(.posts-card-link-dutch) {
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.posts-card-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.posts-card-text-dutch {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.posts-card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.posts-meta-badge-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.posts-meta-badge-dutch i {
  color: #2563eb;
  font-size: 0.75rem;
}

.posts-card-link-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  padding: 0.625rem 0 clamp(1.25rem, 3vw, 1.75rem) 0;
}

.posts-card-link-dutch:hover {
  gap: 0.875rem;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .posts-card-dutch {
    flex: 1 1 100%;
    max-width: none;
  }
}

.framework-section-dutch-professionals {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.framework-deco-mesh-dutch {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.framework-deco-glow-dutch {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.framework-header-dutch {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.framework-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.framework-subtitle-dutch {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
}

.framework-steps-dutch {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.framework-step-dutch {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  transition: all 0.3s ease;
}

.framework-step-dutch:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.framework-step-number-dutch {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.framework-step-title-dutch {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.framework-step-text-dutch {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.insight-section-dutch-professionals {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.insight-deco-accent-dutch {
  position: absolute;
  top: 20%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insight-content-dutch {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.insight-quote-dutch {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  margin-bottom: 3rem;
}

.insight-quote-text-dutch {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.insight-quote-author-dutch {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.insight-points-dutch {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.insight-point-dutch {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.insight-point-icon-dutch {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  color: #38bdf8;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.insight-point-text-dutch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.insight-point-title-dutch {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
}

.insight-point-desc-dutch {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .featured-card-dutch {
    flex-direction: row;
  }
  
  .featured-card-image-dutch {
    flex: 0 0 420px;
    height: auto;
    min-height: 350px;
  }
  
  .posts-grid-dutch {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .posts-card-dutch {
    flex: 1 1 350px;
    max-width: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.main-zakelijke-etiquette-nederlands {
  width: 100%;
  background: #ffffff;
}

.hero-section-zakelijke-etiquette-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-wrapper-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-zakelijke-etiquette-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-zakelijke-etiquette-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-zakelijke-etiquette-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-zakelijke-etiquette-nederlands i {
  color: #2563eb;
  font-size: 0.875rem;
}

.hero-image-wrapper-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-zakelijke-etiquette-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-zakelijke-etiquette-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-zakelijke-etiquette-nederlands a {
  color: #2563eb;
  transition: color 0.2s ease;
}

.breadcrumbs-zakelijke-etiquette-nederlands a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.breadcrumbs-zakelijke-etiquette-nederlands span {
  color: #64748b;
  margin: 0 0.25rem;
}

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

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

.introduction-text-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-zakelijke-etiquette-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.first-impressions-section-zakelijke-etiquette-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.first-impressions-content-zakelijke-etiquette-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.first-impressions-image-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.section-image-zakelijke-etiquette-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.first-impressions-text-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.first-impressions-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.first-impressions-description-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.first-impressions-highlight-zakelijke-etiquette-nederlands {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-zakelijke-etiquette-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-zakelijke-etiquette-nederlands {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-list-zakelijke-etiquette-nederlands li {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list-zakelijke-etiquette-nederlands li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

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

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

.communication-text-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.communication-description-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-zakelijke-etiquette-nederlands {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 8px;
}

.featured-quote-zakelijke-etiquette-nederlands p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-zakelijke-etiquette-nederlands cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.communication-image-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.business-protocols-section-zakelijke-etiquette-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.business-protocols-header-zakelijke-etiquette-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.business-protocols-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.business-protocols-subtitle-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.protocols-cards-zakelijke-etiquette-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.protocol-card-zakelijke-etiquette-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 400px;
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.protocol-card-zakelijke-etiquette-nederlands:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.protocol-card-number-zakelijke-etiquette-nederlands {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.protocol-card-content-zakelijke-etiquette-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.protocol-card-title-zakelijke-etiquette-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.protocol-card-text-zakelijke-etiquette-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .protocol-card-zakelijke-etiquette-nederlands {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

@media (max-width: 768px) {
  .protocol-card-zakelijke-etiquette-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.cultural-nuances-image-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-nuances-text-zakelijke-etiquette-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-nuances-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cultural-nuances-description-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.conclusion-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

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

.conclusion-cta-zakelijke-etiquette-nederlands {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-zakelijke-etiquette-nederlands {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-zakelijke-etiquette-nederlands {
  font-size: 1rem;
  color: #dbeafe;
  margin-bottom: 1.5rem;
}

.cta-button-zakelijke-etiquette-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-zakelijke-etiquette-nederlands:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.related-posts-header-zakelijke-etiquette-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-zakelijke-etiquette-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-posts-subtitle-zakelijke-etiquette-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-posts-grid-zakelijke-etiquette-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-post-card-zakelijke-etiquette-nederlands {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  background: #ffffff;
}

.related-post-card-zakelijke-etiquette-nederlands:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-post-image-zakelijke-etiquette-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-post-image-zakelijke-etiquette-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content-zakelijke-etiquette-nederlands {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post-title-zakelijke-etiquette-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-post-description-zakelijke-etiquette-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link-zakelijke-etiquette-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-post-link-zakelijke-etiquette-nederlands:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .related-post-card-zakelijke-etiquette-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .hero-content-zakelijke-etiquette-nederlands,
  .introduction-content-zakelijke-etiquette-nederlands,
  .first-impressions-content-zakelijke-etiquette-nederlands,
  .communication-content-zakelijke-etiquette-nederlands,
  .cultural-nuances-content-zakelijke-etiquette-nederlands {
    flex-direction: column;
  }
  
  .hero-text-wrapper-zakelijke-etiquette-nederlands,
  .hero-image-wrapper-zakelijke-etiquette-nederlands,
  .introduction-text-zakelijke-etiquette-nederlands,
  .introduction-image-zakelijke-etiquette-nederlands,
  .first-impressions-image-zakelijke-etiquette-nederlands,
  .first-impressions-text-zakelijke-etiquette-nederlands,
  .communication-text-zakelijke-etiquette-nederlands,
  .communication-image-zakelijke-etiquette-nederlands,
  .cultural-nuances-image-zakelijke-etiquette-nederlands,
  .cultural-nuances-text-zakelijke-etiquette-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.disclaimer-content-zakelijke-etiquette-nederlands {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-zakelijke-etiquette-nederlands {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-zakelijke-etiquette-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.8;
}

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

@media (max-width: 768px) {
  .hero-meta-zakelijke-etiquette-nederlands {
    gap: 0.75rem;
  }
  
  .meta-badge-zakelijke-etiquette-nederlands {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

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

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

section,
[class*="-section-videoconferenties-nederlands"] {
  width: 100%;
  overflow: hidden;
}

.hero-section-videoconferenties-nederlands {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

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

.hero-text-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-image-videoconferenties-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title-videoconferenties-nederlands {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.hero-subtitle-videoconferenties-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.hero-meta-videoconferenties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-videoconferenties-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-videoconferenties-nederlands i {
  color: #2563eb;
}

.hero-stats-videoconferenties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

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

.stat-number-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-videoconferenties-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.9;
}

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

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

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

.breadcrumbs-videoconferenties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-videoconferenties-nederlands a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-videoconferenties-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-videoconferenties-nederlands span {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

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

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

.intro-text-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.intro-image-videoconferenties-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.intro-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.intro-text-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

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

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

.foundation-section-videoconferenties-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.foundation-header-videoconferenties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-videoconferenties-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundation-subtitle-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-steps-videoconferenties-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-step-videoconferenties-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.foundation-step-number-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 70px;
}

.foundation-step-content-videoconferenties-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.foundation-step-title-videoconferenties-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.foundation-step-text-videoconferenties-nederlands {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

@media (max-width: 768px) {
  .foundation-step-videoconferenties-nederlands {
    gap: 1rem;
    padding: 1.25rem;
  }

  .foundation-step-number-videoconferenties-nederlands {
    min-width: 50px;
  }
}

.techniques-section-videoconferenties-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.techniques-text-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.techniques-image-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-videoconferenties-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.techniques-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.techniques-text-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.techniques-highlight-videoconferenties-nederlands {
  padding: 1.5rem;
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  border-radius: 8px;
}

.techniques-highlight-text-videoconferenties-nederlands {
  font-size: 0.9375rem;
  color: #0c4a6e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .techniques-content-videoconferenties-nederlands {
    flex-direction: column;
  }

  .techniques-text-block-videoconferenties-nederlands,
  .techniques-image-block-videoconferenties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-videoconferenties-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.advanced-header-videoconferenties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.advanced-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
}

.advanced-cards-videoconferenties-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.advanced-card-videoconferenties-nederlands {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.advanced-card-videoconferenties-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.advanced-card-icon-videoconferenties-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 12px;
  font-size: 1.5rem;
}

.advanced-card-title-videoconferenties-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.advanced-card-text-videoconferenties-nederlands {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

@media (max-width: 768px) {
  .advanced-card-videoconferenties-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-videoconferenties-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-quote-videoconferenties-nederlands {
  padding: 2.5rem 2rem;
  border-left: 4px solid #0ea5e9;
  margin: 0 auto;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.quote-text-videoconferenties-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-author-videoconferenties-nederlands {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.practical-section-videoconferenties-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.practical-image-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-videoconferenties-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.practical-text-block-videoconferenties-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.practical-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.practical-text-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.practical-checklist-videoconferenties-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.practical-item-videoconferenties-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  padding-left: 0;
}

.practical-item-videoconferenties-nederlands::before {
  content: "";
  color: #2563eb;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .practical-content-videoconferenties-nederlands {
    flex-direction: column;
  }

  .practical-image-block-videoconferenties-nederlands,
  .practical-text-block-videoconferenties-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-videoconferenties-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.conclusion-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.conclusion-text-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.conclusion-cta-videoconferenties-nederlands {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-radius: 12px;
  margin-top: 1rem;
}

.conclusion-cta-text-videoconferenties-nederlands {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta-button-videoconferenties-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-videoconferenties-nederlands:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.related-section-videoconferenties-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 2px solid #e2e8f0;
}

.related-header-videoconferenties-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-videoconferenties-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-videoconferenties-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

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

.related-card-videoconferenties-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-videoconferenties-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-videoconferenties-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-card-image-videoconferenties-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-card-title-videoconferenties-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.25rem;
  margin: 0.5rem 0 0 0;
}

.related-card-text-videoconferenties-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.25rem;
  margin: 0;
}

.related-card-link-videoconferenties-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.related-card-link-videoconferenties-nederlands:hover {
  gap: 1rem;
  color: #1d4ed8;
}

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

.disclaimer-section-videoconferenties-nederlands {
  background: #f0f9ff;
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  border-top: 2px solid #e2e8f0;
}

.disclaimer-content-videoconferenties-nederlands {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-videoconferenties-nederlands {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 1rem;
}

.disclaimer-text-videoconferenties-nederlands {
  font-size: 0.9375rem;
  color: #0c4a6e;
  line-height: 1.8;
  margin: 0;
}

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

  .intro-section-videoconferenties-nederlands,
  .foundation-section-videoconferenties-nederlands,
  .techniques-section-videoconferenties-nederlands,
  .advanced-section-videoconferenties-nederlands,
  .quote-section-videoconferenties-nederlands,
  .practical-section-videoconferenties-nederlands,
  .conclusion-section-videoconferenties-nederlands,
  .related-section-videoconferenties-nederlands {
    padding: 2.5rem 0;
  }

  .hero-stats-videoconferenties-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .foundation-header-videoconferenties-nederlands,
  .advanced-header-videoconferenties-nederlands,
  .related-header-videoconferenties-nederlands {
    margin-bottom: 2rem;
  }

  .featured-quote-videoconferenties-nederlands {
    padding: 1.5rem 1.25rem;
  }

  .quote-text-videoconferenties-nederlands {
    margin-bottom: 1rem;
  }
}

.main-presentaties-nederlands-zakelijk {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-block-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-presentaties-nederlands-zakelijk {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-presentaties-nederlands-zakelijk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.7;
}

.meta-badges-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-presentaties-nederlands-zakelijk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-presentaties-nederlands-zakelijk i {
  color: #2563eb;
}

.hero-stats-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-presentaties-nederlands-zakelijk {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-presentaties-nederlands-zakelijk {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-block-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.hero-image-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: #64748b;
}

.breadcrumbs-presentaties-nederlands-zakelijk a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-presentaties-Nederlands-zakelijk a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-presentaties-nederlands-zakelijk span {
  color: #cbd5e1;
}

.intro-section-presentaties-nederlands-zakelijk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.intro-wrapper-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.intro-img-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.structure-section-presentaties-nederlands-zakelijk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-presentaties-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-presentaties-nederlands-zakelijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.structure-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.structure-subtitle-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.structure-content-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-text-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-intro-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.structure-list-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-presentaties-nederlands-zakelijk {
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
}

.list-title-presentaties-nederlands-zakelijk {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-text-presentaties-nederlands-zakelijk {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.structure-image-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.structure-img-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.language-section-presentaties-nederlands-zakelijk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.language-wrapper-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.language-image-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.language-img-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.language-text-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.language-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.language-description-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.language-tips-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card-presentaties-nederlands-zakelijk {
  padding: 1.25rem;
  background: #eff6ff;
  border-radius: 8px;
  border: 1px solid #bfdbfe;
}

.tip-title-presentaties-nederlands-zakelijk {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tip-text-presentaties-nederlands-zakelijk {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.delivery-section-presentaties-nederlands-zakelijk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.delivery-content-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.delivery-text-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-quote-presentaties-nederlands-zakelijk {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  border-radius: 8px;
  font-style: italic;
  margin: 1rem 0;
}

.quote-text-presentaties-nederlands-zakelijk {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-cite-presentaties-nederlands-zakelijk {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.delivery-subheading-presentaties-nederlands-zakelijk {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 1rem;
}

.techniques-list-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-presentaties-nederlands-zakelijk {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.technique-number-presentaties-nederlands-zakelijk {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.technique-content-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-title-presentaties-nederlands-zakelijk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.technique-text-presentaties-nederlands-zakelijk {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.delivery-image-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.delivery-img-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-section-presentaties-nederlands-zakelijk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.practice-wrapper-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.practice-description-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.practice-cards-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.practice-card-presentaties-nederlands-zakelijk {
  flex: 1 1 calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.practice-card-title-presentaties-nederlands-zakelijk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.practice-card-text-presentaties-nederlands-zakelijk {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.practice-image-presentaties-nederlands-zakelijk {
  flex: 1 1 100%;
  max-width: 50%;
  display: none;
}

.practice-img-presentaties-nederlands-zakelijk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.common-mistakes-section-presentaties-nederlands-zakelijk {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.common-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.common-subtitle-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.mistakes-grid-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.mistake-card-presentaties-nederlands-zakelijk {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mistake-card-presentaties-nederlands-zakelijk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mistake-title-presentaties-nederlands-zakelijk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.mistake-text-presentaties-nederlands-zakelijk {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.conclusion-section-presentaties-nederlands-zakelijk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

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

.conclusion-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.conclusion-text-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-presentaties-nederlands-zakelijk {
  padding: 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

.cta-text-presentaties-nederlands-zakelijk {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
}

.disclaimer-section-presentaties-nederlands-zakelijk {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-presentaties-nederlands-zakelijk {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-presentaties-nederlands-zakelijk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-presentaties-nederlands-zakelijk {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

.related-section-presentaties-nederlands-zakelijk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-title-presentaties-nederlands-zakelijk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-presentaties-nederlands-zakelijk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.related-cards-presentaties-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-presentaties-nederlands-zakelijk {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-presentaties-nederlands-zakelijk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.related-card-image-presentaties-nederlands-zakelijk {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.related-card-content-presentaties-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.related-card-title-presentaties-nederlands-zakelijk {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-presentaties-nederlands-zakelijk {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-text-block-presentaties-nederlands-zakelijk,
  .hero-image-block-presentaties-nederlands-zakelijk,
  .intro-text-presentaties-nederlands-zakelijk,
  .intro-image-presentaties-nederlands-zakelijk,
  .structure-text-presentaties-nederlands-zakelijk,
  .structure-image-presentaties-nederlands-zakelijk,
  .language-image-presentaties-nederlands-zakelijk,
  .language-text-presentaties-nederlands-zakelijk,
  .delivery-text-presentaties-nederlands-zakelijk,
  .delivery-image-presentaties-nederlands-zakelijk,
  .practice-text-presentaties-nederlands-zakelijk,
  .practice-image-presentaties-nederlands-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-block-presentaties-nederlands-zakelijk,
  .intro-image-presentaties-nederlands-zakelijk,
  .structure-image-presentaties-nederlands-zakelijk,
  .language-image-presentaties-nederlands-zakelijk,
  .delivery-image-presentaties-nederlands-zakelijk,
  .practice-image-presentaties-nederlands-zakelijk {
    display: block;
  }

  .practice-card-presentaties-nederlands-zakelijk {
    flex: 1 1 100%;
  }

  .mistake-card-presentaties-nederlands-zakelijk {
    flex: 1 1 100%;
    min-width: auto;
  }

  .related-card-presentaties-nederlands-zakelijk {
    flex: 1 1 100%;
    min-width: auto;
  }

  .technique-item-presentaties-nederlands-zakelijk {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-number-presentaties-nederlands-zakelijk {
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .hero-image-block-presentaties-nederlands-zakelijk,
  .intro-image-presentaties-nederlands-zakelijk,
  .structure-image-presentaties-nederlands-zakelijk,
  .language-image-presentaties-nederlands-zakelijk,
  .delivery-image-presentaties-nederlands-zakelijk,
  .practice-image-presentaties-nederlands-zakelijk {
    display: block;
  }

  .mistake-card-presentaties-nederlands-zakelijk {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: auto;
  }

  .related-card-presentaties-nederlands-zakelijk {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .mistake-card-presentaties-nederlands-zakelijk {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
  }

  .related-card-presentaties-nederlands-zakelijk {
    flex: 1 1 calc(33.333% - 1.33rem);
    min-width: 280px;
  }
}

.main-netwerken-nederlands-zakelijk {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-block-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.hero-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-netwerken-nederlands-zakelijk {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-meta-netwerken-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-netwerken-nederlands-zakelijk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-netwerken-nederlands-zakelijk i {
  font-size: 0.875rem;
}

.hero-image-block-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.hero-image-netwerken-nederlands-zakelijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-netwerken-nederlands-zakelijk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.breadcrumbs-netwerken-nederlands-zakelijk a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-netwerken-Nederlands-zakelijk a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-netwerken-nederlands-zakelijk span {
  color: var(--color-text-muted);
}

.intro-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.intro-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.intro-paragraph-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.intro-image-netwerken-nederlands-zakelijk {
  flex: 1 1 350px;
  min-width: 250px;
}

.intro-image-img-netwerken-nederlands-zakelijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.fundamentals-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-header-netwerken-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-tag-netwerken-nederlands-zakelijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.fundamentals-subtitle-netwerken-nederlands-zakelijk {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.fundamentals-text-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.fundamentals-section-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.fundamentals-text-body-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.fundamentals-image-netwerken-nederlands-zakelijk {
  flex: 1 1 350px;
  min-width: 250px;
}

.fundamentals-image-img-netwerken-nederlands-zakelijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.strategies-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-netwerken-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-tag-netwerken-nederlands-zakelijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
}

.strategies-steps-netwerken-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-step-netwerken-nederlands-zakelijk {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.strategies-step-number-netwerken-nederlands-zakelijk {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.strategies-step-content-netwerken-nederlands-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.strategies-step-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.strategies-step-text-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .strategies-step-netwerken-nederlands-zakelijk {
    gap: 1rem;
    padding: 1rem;
  }
}

.conversation-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conversation-text-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.conversation-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.conversation-quote-netwerken-nederlands-zakelijk {
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
}

.quote-text-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.conversation-subsection-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.conversation-text-body-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.conversation-image-netwerken-nederlands-zakelijk {
  flex: 1 1 350px;
  min-width: 250px;
}

.conversation-image-img-netwerken-nederlands-zakelijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.followup-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.followup-header-netwerken-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.followup-tag-netwerken-nederlands-zakelijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.followup-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
}

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

.followup-image-netwerken-nederlands-zakelijk {
  flex: 1 1 350px;
  min-width: 250px;
  order: -1;
}

.followup-image-img-netwerken-nederlands-zakelijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.followup-text-netwerken-nederlands-zakelijk {
  flex: 1 1 400px;
  min-width: 300px;
}

.followup-section-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.followup-text-body-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .followup-image-netwerken-nederlands-zakelijk {
    order: 0;
  }
}

.cultural-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cultural-header-netwerken-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.cultural-tag-netwerken-nederlands-zakelijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cultural-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
}

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

.cultural-card-netwerken-nederlands-zakelijk {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cultural-card-icon-netwerken-nederlands-zakelijk {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.cultural-card-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
}

.cultural-card-text-netwerken-nederlands-zakelijk {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

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

.conclusion-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.conclusion-highlights-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  border-left: 4px solid var(--color-primary);
}

.conclusion-highlights-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.conclusion-highlights-list-netwerken-nederlands-zakelijk {
  margin: 0;
  padding-left: 1.5rem;
}

.conclusion-highlight-item-netwerken-nederlands-zakelijk {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.disclaimer-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-netwerken-nederlands-zakelijk {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.disclaimer-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-netwerken-nederlands-zakelijk {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.related-section-netwerken-nederlands-zakelijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-netwerken-nederlands-zakelijk {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.related-subtitle-netwerken-nederlands-zakelijk {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  color: var(--color-text-secondary);
}

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

.related-card-netwerken-nederlands-zakelijk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.related-card-title-netwerken-nederlands-zakelijk {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-netwerken-nederlands-zakelijk {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-netwerken-nederlands-zakelijk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.related-card-link-netwerken-nederlands-zakelijk:hover {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-primary-hover);
}

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

  .hero-content-netwerken-nederlands-zakelijk {
    flex-direction: column;
  }

  .intro-content-netwerken-nederlands-zakelijk {
    flex-direction: column;
  }

  .fundamentals-content-netwerken-nederlands-zakelijk {
    flex-direction: column;
  }

  .conversation-content-netwerken-nederlands-zakelijk {
    flex-direction: column;
  }

  .followup-content-netwerken-nederlands-zakelijk {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .hero-text-block-netwerken-nederlands-zakelijk,
  .hero-image-block-netwerken-nederlands-zakelijk {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .intro-text-netwerken-nederlands-zakelijk,
  .intro-image-netwerken-nederlands-zakelijk {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .fundamentals-text-netwerken-nederlands-zakelijk,
  .fundamentals-image-netwerken-nederlands-zakelijk {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .conversation-text-netwerken-nederlands-zakelijk,
  .conversation-image-netwerken-nederlands-zakelijk {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .followup-image-netwerken-nederlands-zakelijk,
  .followup-text-netwerken-nederlands-zakelijk {
    flex: 1 1 45%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .hero-content-netwerken-nederlands-zakelijk,
  .intro-content-netwerken-nederlands-zakelijk,
  .fundamentals-content-netwerken-nederlands-zakelijk,
  .conversation-content-netwerken-nederlands-zakelijk,
  .followup-content-netwerken-nederlands-zakelijk {
    gap: 3rem;
  }
}

.main-zakelijke-e-mail-nederlands {
  width: 100%;
}

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

.hero-section-zakelijke-e-mail-nederlands {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}

.hero-subtitle-zakelijke-e-mail-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  line-height: 1.6;
}

.hero-meta-zakelijke-e-mail-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-zakelijke-e-mail-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-zakelijke-e-mail-nederlands i {
  font-size: 0.875rem;
}

.hero-image-block-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-zakelijke-e-mail-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

  .hero-text-block-zakelijke-e-mail-nederlands,
  .hero-image-block-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
  }

  .hero-image-zakelijke-e-mail-nederlands {
    max-height: 300px;
  }
}

.breadcrumbs-zakelijke-e-mail-nederlands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-zakelijke-e-mail-nederlands a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-zakelijke-e-mail-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-zakelijke-e-mail-nederlands span {
  color: #cbd5e1;
}

.introduction-section-zakelijke-e-mail-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-zakelijke-e-mail-Nederlands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.intro-text-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-zakelijke-e-mail-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
}

.intro-img-zakelijke-e-mail-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-zakelijke-e-mail-Nederlands {
    flex-direction: column;
  }

  .intro-text-zakelijke-e-mail-nederlands,
  .intro-image-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
  }

  .intro-img-zakelijke-e-mail-nederlands {
    max-height: 280px;
  }
}

.structure-section-zakelijke-e-mail-nederlands {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.section-header-zakelijke-e-mail-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-zakelijke-e-mail-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.structure-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.structure-subtitle-zakelijke-e-mail-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-item-zakelijke-e-mail-nederlands:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-number-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.step-text-zakelijke-e-mail-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-zakelijke-e-mail-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-zakelijke-e-mail-nederlands {
    min-width: 50px;
  }
}

.tone-section-zakelijke-e-mail-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tone-content-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.tone-image-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
}

.tone-img-zakelijke-e-mail-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tone-text-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tone-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.tone-description-zakelijke-e-mail-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.tone-tips-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tone-tip-zakelijke-e-mail-nederlands {
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 8px;
  border-left: 3px solid #0ea5e9;
}

.tone-tip-label-zakelijke-e-mail-nederlands {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tone-tip-text-zakelijke-e-mail-nederlands {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tone-content-zakelijke-e-mail-nederlands {
    flex-direction: column;
  }

  .tone-image-zakelijke-e-mail-nederlands,
  .tone-text-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
  }

  .tone-img-zakelijke-e-mail-nederlands {
    max-height: 280px;
  }
}

.practical-section-zakelijke-e-mail-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.practical-subtitle-zakelijke-e-mail-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.mistakes-grid-zakelijke-e-mail-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.mistake-card-zakelijke-e-mail-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.mistake-card-zakelijke-e-mail-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mistake-icon-zakelijke-e-mail-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.25rem;
}

.mistake-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.mistake-text-zakelijke-e-mail-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mistake-card-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.examples-section-zakelijke-e-mail-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.examples-content-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.examples-text-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.examples-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.examples-description-zakelijke-e-mail-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.example-box-zakelijke-e-mail-nederlands {
  background: #f1f5f9;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 10px;
  border-left: 4px solid #0ea5e9;
}

.example-label-zakelijke-e-mail-nederlands {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 1rem;
}

.example-text-block-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.example-item-zakelijke-e-mail-nederlands {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.examples-image-zakelijke-e-mail-nederlands {
  flex: 1 1 50%;
}

.examples-img-zakelijke-e-mail-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .examples-content-zakelijke-e-mail-nederlands {
    flex-direction: column;
  }

  .examples-text-zakelijke-e-mail-nederlands,
  .examples-image-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
  }

  .examples-img-zakelijke-e-mail-nederlands {
    max-height: 280px;
  }
}

.conclusion-section-zakelijke-e-mail-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-zakelijke-e-mail-nederlands {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-zakelijke-e-mail-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: left;
}

.conclusion-highlight-zakelijke-e-mail-nederlands {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-text-zakelijke-e-mail-nederlands {
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.cta-section-zakelijke-e-mail-nederlands {
  text-align: center;
  margin-top: 2rem;
}

.cta-button-zakelijke-e-mail-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button-zakelijke-e-mail-nederlands:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

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

.related-header-zakelijke-e-mail-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-zakelijke-e-mail-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

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

.related-card-zakelijke-e-mail-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-card-zakelijke-e-mail-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-zakelijke-e-mail-nederlands {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: 1rem;
  line-height: 1.3;
}

.related-card-text-zakelijke-e-mail-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.related-card-link-zakelijke-e-mail-nederlands {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-card-link-zakelijke-e-mail-nederlands:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-zakelijke-e-mail-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-zakelijke-e-mail-nederlands {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-zakelijke-e-mail-nederlands {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-zakelijke-e-mail-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-zakelijke-e-mail-nederlands {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-zakelijke-e-mail-nederlands:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .breadcrumbs-zakelijke-e-mail-nederlands {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }
}

.main-telefoongesprekken-nederlands {
  width: 100%;
}

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

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

.hero-text-block-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-telefoongesprekken-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-subtitle-telefoongesprekken-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.meta-badges-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-badge-telefoongesprekken-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-telefoongesprekken-nederlands i {
  font-size: 0.875rem;
}

.hero-image-block-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-telefoongesprekken-nederlands {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.breadcrumbs-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-telefoongesprekken-nederlands a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-telefoongesprekken-nederlands a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-telefoongesprekken-nederlands span {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

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

.intro-wrapper-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-telefoongesprekken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.intro-image-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

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

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

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

.foundation-title-telefoongesprekken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.foundation-cards-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.foundation-card-telefoongesprekken-nederlands {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.foundation-card-telefoongesprekken-nederlands:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.foundation-card-icon-telefoongesprekken-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.foundation-card-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.foundation-card-text-telefoongesprekken-nederlands {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.protocol-wrapper-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.protocol-text-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.protocol-description-telefoongesprekken-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.protocol-steps-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.protocol-step-telefoongesprekken-nederlands {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.protocol-step-number-telefoongesprekken-nederlands {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.protocol-step-content-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.protocol-step-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.protocol-step-text-telefoongesprekken-nederlands {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.protocol-image-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.protocol-image-img-telefoongesprekken-nederlands {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.techniques-wrapper-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-image-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
  order: -1;
}

.techniques-image-img-telefoongesprekken-nederlands {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.techniques-text-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.techniques-description-telefoongesprekken-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.techniques-list-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-telefoongesprekken-nederlands {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.technique-item-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.technique-item-text-telefoongesprekken-nederlands {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

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

.scenarios-subtitle-telefoongesprekken-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.scenarios-cards-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.scenario-card-telefoongesprekken-nederlands {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scenario-card-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.scenario-card-text-telefoongesprekken-nederlands {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  font-style: italic;
  padding: 0.75rem;
  background: #f0f4ff;
  border-radius: 8px;
  border-left: 3px solid #2563eb;
}

.scenario-card-tip-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

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

.best-practices-content-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.best-practices-text-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-title-telefoongesprekken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.featured-quote-telefoongesprekken-nederlands {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 8px;
}

.quote-text-telefoongesprekken-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.practices-grid-telefoongesprekken-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-item-telefoongesprekken-nederlands {
  flex: 1 1 200px;
  min-width: 180px;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.practice-item-title-telefoongesprekken-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.practice-item-text-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

.best-practices-image-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-image-img-telefoongesprekken-nederlands {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

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

.conclusion-content-telefoongesprekken-nederlands {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-telefoongesprekken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

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

.conclusion-cta-telefoongesprekken-nederlands {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-telefoongesprekken-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button-telefoongesprekken-nederlands:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

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

.disclaimer-content-telefoongesprekken-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disclaimer-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
}

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

.related-title-telefoongesprekken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.related-card-telefoongesprekken-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.related-card-telefoongesprekken-nederlands:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.related-card-img-telefoongesprekken-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.related-card-content-telefoongesprekken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-telefoongesprekken-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-description-telefoongesprekken-nederlands {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.related-card-link-telefoongesprekken-nederlands {
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.related-card-link-telefoongesprekken-nederlands:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

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

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

  .intro-wrapper-telefoongesprekken-nederlands {
    flex-direction: column;
  }

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

  .protocol-wrapper-telefoongesprekken-nederlands {
    flex-direction: column;
  }

  .protocol-text-telefoongesprekken-nederlands,
  .protocol-image-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-wrapper-telefoongesprekken-nederlands {
    flex-direction: column-reverse;
  }

  .techniques-image-telefoongesprekken-nederlands,
  .techniques-text-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .best-practices-content-telefoongesprekken-nederlands {
    flex-direction: column;
  }

  .best-practices-text-telefoongesprekken-nederlands,
  .best-practices-image-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practices-grid-telefoongesprekken-nederlands {
    flex-direction: column;
  }

  .practice-item-telefoongesprekken-nederlands {
    flex: 1 1 100%;
  }

  .related-card-telefoongesprekken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .meta-badges-telefoongesprekken-nederlands {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-badge-telefoongesprekken-nederlands {
    flex: 0 1 auto;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .foundation-card-telefoongesprekken-nederlands {
    flex: 1 1 calc(50% - 1rem);
  }

  .scenarios-card-telefoongesprekken-nederlands {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-telefoongesprekken-nederlands {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .foundation-card-telefoongesprekken-nederlands {
    flex: 1 1 calc(25% - 0.75rem);
  }

  .scenarios-card-telefoongesprekken-nederlands {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .practice-item-telefoongesprekken-nederlands {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent-light: #dbeafe;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.business-dutch-about-main {
  width: 100%;
}

.hero-welcome-section-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-welcome-text-about {
  max-width: 700px;
}

.hero-welcome-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-welcome-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.25rem, 1.5rem);
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.hero-welcome-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-welcome-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-about {
  flex: 0 1 auto;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: #cbd5e1;
  font-weight: 500;
}

.hero-welcome-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .hero-welcome-content-about {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero-welcome-text-about {
    flex: 1 1 50%;
  }

  .hero-welcome-image-about {
    flex: 1 1 40%;
  }
}

.heritage-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.heritage-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.heritage-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.heritage-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.heritage-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heritage-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.heritage-timeline-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.timeline-milestone-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.milestone-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.milestone-content-about {
  flex: 1;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.milestone-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.milestone-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .heritage-content-about {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .heritage-header-about {
    text-align: left;
    flex: 0 1 40%;
    margin-bottom: 0;
  }

  .heritage-timeline-about {
    flex: 1 1 60%;
  }
}

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

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expertise-intro-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-intro-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.expertise-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expertise-card-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.expertise-card-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.expertise-card-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .expertise-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.mission-section-about {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mission-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mission-statement-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-quote-block-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
}

.mission-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mission-quote-author-about {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

.mission-values-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-value-item-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.mission-value-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.mission-value-content-about {
  flex: 1;
}

.mission-value-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.375rem;
}

.mission-value-description-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.mission-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .mission-content-about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .mission-statement-about {
    flex: 1 1 50%;
  }

  .mission-image-about {
    flex: 1 1 40%;
    margin-top: 0;
  }
}

.approach-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column !important;
  gap: 3rem;
}

.approach-header-about {
  text-align: center;
}

.approach-header-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.approach-header-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-step-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach-step-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 70px;
  flex-shrink: 0;
}

.approach-step-content-about {
  flex: 1;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.approach-step-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.approach-step-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

.approach-visual-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .approach-content-about {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .approach-steps-about {
    flex: 1 1 50%;
  }

  .approach-visual-about {
    flex: 1 1 40%;
  }
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.disclaimer-header-about {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-welcome-stats-about {
    gap: 3rem;
  }

  .hero-welcome-section-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .heritage-section-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .mission-section-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-welcome-title-about {
    font-size: 3.5rem;
  }

  .heritage-title-about {
    font-size: 2.5rem;
  }

  .expertise-intro-title-about {
    font-size: 2.5rem;
  }

  .approach-header-title-about {
    font-size: 2.5rem;
  }

  .mission-quote-text-about {
    font-size: 1.375rem;
  }
}

.legal-portal {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.legal-portal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.legal-portal-hero {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.legal-portal-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-portal-content {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.legal-portal-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-portal-section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.legal-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section:first-of-type h2 {
  margin-top: 0;
}

.legal-portal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-portal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  margin-top: 0;
  line-height: 1.25;
}

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

.legal-portal-contact strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-portal-updated {
  font-size: clamp(0.8125rem, 0.5vw + 0.75rem, 0.875rem);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .legal-portal-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .legal-portal-section {
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .legal-portal-content {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon i {
  font-size: clamp(3rem, 12vw, 5rem);
  color: var(--color-primary);
  display: block;
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .thank-content {
    padding: 2rem;
  }

  .thank-section h1 {
    margin-bottom: 1.5rem;
  }

  .thank-lead {
    margin-bottom: 1.5rem;
  }

  .thank-description {
    margin-bottom: 1.5rem;
  }

  .thank-next-steps {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    min-height: 100vh;
    padding: 6rem 0;
  }

  .thank-content {
    padding: 3rem;
  }

  .thank-icon {
    margin-bottom: 2.5rem;
  }

  .thank-icon i {
    font-size: 5rem;
  }

  .thank-section h1 {
    margin-bottom: 1.5rem;
  }

  .thank-lead {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }

  .thank-description {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
  }

  .thank-next-steps {
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    min-height: 100vh;
    padding: 6rem 0;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .thank-icon i {
    animation: success-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1;
  }
}

@keyframes success-bounce {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.error-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-visual {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 0;
  font-family: var(--font-heading);
}

.error-code::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.error-icon {
  font-size: clamp(3rem, 10vw, 5rem);
  color: rgba(14, 165, 233, 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
  max-width: 500px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 500px;
}

.suggestion-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  margin: 0 0 1rem 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.suggestions-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-primary);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

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

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-visual {
    margin-bottom: 3rem;
  }

  .error-code {
    animation: pulse-glow 2s ease-in-out infinite;
  }

  @keyframes pulse-glow {
    0%, 100% {
      text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
      text-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    }
  }

  .error-suggestions {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-title {
    margin-bottom: 1.5rem;
  }

  .error-description {
    margin-bottom: 3rem;
  }
}