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

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;

  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;

  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1f4e6;
  --color-secondary: #10b981;
  --color-secondary-light: #dcf8f3;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'DM Serif Display', serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
}

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

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

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

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

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

button,
.btn {
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  padding: var(--spacing-sm) var(--spacing-lg);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

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

.btn-primary:active {
  transform: scale(0.98);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-header {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.card-body {
  margin-bottom: var(--spacing-lg);
}

.card-footer {
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border-light);
}

.section {
  padding: var(--spacing-4xl) var(--spacing-lg);
}

.section-alt {
  background: var(--color-bg-tertiary);
}

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

.gap-xl {
  gap: var(--spacing-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-success {
  background: #dcf8f3;
  color: var(--color-success);
}

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

.badge-danger {
  background: #fee2e2;
  color: var(--color-danger);
}

.divider {
  height: 1px;
  background: var(--color-border-light);
  margin: var(--spacing-lg) 0;
}

ul,
ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

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

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--spacing-lg);
  margin-left: 0;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-secondary);
  font-style: italic;
}

code {
  background: var(--color-bg-tertiary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: var(--color-primary);
}

pre {
  background: var(--color-bg-tertiary);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--spacing-lg);
}

pre code {
  background: none;
  padding: 0;
  color: var(--color-text-primary);
}

hr {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: var(--spacing-xl) 0;
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

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

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

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

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

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

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

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

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

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

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

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

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

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

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

.top-disclaimer-banner{
    background:#fef5e7;
    color:#3e2723;
    border-bottom:2px solid #d4a574;
    width:100%;
    padding:10px 20px;
    font-size:13px;
    line-height:1.5;
    text-align:center;
    position:relative;
    z-index:100;
    box-sizing:border-box;
    font-family:inherit;
}
.top-disclaimer-inner{
    max-width:1280px;
    margin:0 auto;
    display:block;
}
.top-disclaimer-banner strong{
    font-weight:700;
    letter-spacing:0.3px;
}
.top-disclaimer-banner em{
    font-style:italic;
}
@media (max-width:768px){
    .top-disclaimer-banner{
        font-size:12px;
        padding:8px 14px;
        line-height:1.55;
    }
}
@media (max-width:480px){
    .top-disclaimer-banner{
        font-size:11.5px;
        padding:8px 12px;
    }
}

    .header-dialogue-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  top: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
}

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

.header-dialogue-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header-dialogue-hub-brand:hover {
  opacity: 0.85;
}

.header-dialogue-hub-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.header-dialogue-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-dialogue-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  margin-left: clamp(1rem, 3vw, 2rem);
}

.header-dialogue-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-dialogue-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-dialogue-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-dialogue-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header-dialogue-hub-mobile-toggle:hover {
  opacity: 0.7;
}

.header-dialogue-hub-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header-dialogue-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  padding: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

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

.header-dialogue-hub-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.header-dialogue-hub-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: opacity var(--transition-fast);
}

.header-dialogue-hub-mobile-close:hover {
  opacity: 0.7;
}

.header-dialogue-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.header-dialogue-hub-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-dialogue-hub-mobile-link:hover {
  color: var(--color-primary);
}

.header-dialogue-hub-mobile-cta {
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.975rem, 2vw, 1.125rem);
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-fast);
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .header-dialogue-hub-cta-button {
    display: block;
  }

  .header-dialogue-hub-mobile-toggle {
    display: none;
  }

  .header-dialogue-hub-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-dialogue-hub-container {
    height: clamp(70px, 10vh, 90px);
  }

  .header-dialogue-hub-nav-link {
    font-size: 1rem;
  }

  .header-dialogue-hub-cta-button {
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
  }
}

    .dialogue-hub {
  width: 100%;
}

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary-front {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}

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

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

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

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

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

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

.hero-text-block-front {
  flex: 1 1 50%;
}

.hero-card-front {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.hero-title-front {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.hero-subtitle-front {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 1.75rem 0;
  line-height: 1.6;
}

.hero-buttons-front {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

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

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

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

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

  .btn {
    width: 100%;
  }
}

.features-large-section-front {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-hero-feature-front {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
}

.features-tag-front {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.features-hero-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.features-hero-description-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
}

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

.features-card-front {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--color-bg-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.features-card-icon-front {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.features-card-title-front {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
}

.features-card-text-front {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-cards-grid-front {
    flex-direction: column;
    align-items: stretch;
  }

  .features-card-front {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-front {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.process-tag-front {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.process-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.process-subtitle-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps-front {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.process-step-number-front {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.process-step-content-front {
  flex: 1;
}

.process-step-title-front {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.process-step-text-front {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-block-front {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-front {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

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

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

.team-header-front {
  text-align: center;
}

.team-tag-front {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.team-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.team-subtitle-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid-front {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 2.5rem);
  justify-content: center;
}

.team-card-front {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-card-image-front {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.team-photo-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-name-front {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
}

.team-card-role-front {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid-front {
    flex-direction: row;
  }

  .team-card-front {
    flex: 1 1 150px;
    max-width: 200px;
  }
}

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

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

.blog-header-front {
  text-align: center;
}

.blog-tag-front {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.blog-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.3;
}

.blog-featured-front {
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.blog-featured-link-front {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.blog-featured-content-front {
  flex: 1 1 50%;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-featured-title-front {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-featured-link-front:hover .blog-featured-title-front {
  color: var(--color-primary);
}

.blog-featured-description-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.blog-featured-cta-front {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog-featured-link-front:hover .blog-featured-cta-front {
  transform: translateX(4px);
}

.blog-featured-image-front {
  flex: 1 1 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.blog-cards-grid-front {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 2.5rem);
  justify-content: center;
}

.blog-card-front {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.blog-card-content-front {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card-title-front {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card-front:hover .blog-card-title-front {
  color: var(--color-primary);
}

.blog-card-description-front {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.blog-footer-front {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-featured-front {
    flex-direction: column;
  }

  .blog-featured-content-front {
    flex: 1 1 100%;
  }

  .blog-featured-image-front {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .blog-cards-grid-front {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-card-front {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.stats-header-front {
  text-align: center;
}

.stats-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.stats-subtitle-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.stats-grid-front {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.stats-card-front {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stats-number-front {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1;
}

.stats-label-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid-front {
    flex-direction: row;
  }

  .stats-card-front {
    flex: 1 1 150px;
    max-width: 200px;
  }
}

.cta-section-front {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-front {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}

.cta-title-front {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.3;
}

.cta-description-front {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-front {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons-front {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

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

.newsletter-content-front {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.newsletter-icon-front {
  font-size: 3.5rem;
  color: var(--color-primary);
}

.newsletter-title-front {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.3;
}

.newsletter-text-front {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
}

.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: 1.5rem;
}

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #ffffff;
}

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(0.5rem, 1vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 280px;
  }

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

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

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

.category-page-communication-skills {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.hero-section-communication-skills {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.hero-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.hero-breadcrumb-communication-skills {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.hero-breadcrumb-communication-skills a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.hero-breadcrumb-communication-skills a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.hero-breadcrumb-separator-communication-skills {
  color: var(--color-text-muted);
}

.hero-title-communication-skills {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-communication-skills {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlights-section-communication-skills {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.highlights-title-communication-skills {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlights-cards-communication-skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.highlight-card-communication-skills {
  flex: 1 1 clamp(250px, 30vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.highlight-icon-communication-skills {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-card-title-communication-skills {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-card-text-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-section-communication-skills {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-title-communication-skills {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.card-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

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

.card-image-wrapper-communication-skills {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.card-image-communication-skills {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-text-wrapper-communication-skills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title-communication-skills {
  font-size: clamp(1.2rem, 2.5vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-communication-skills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
}

.card-reading-time-communication-skills,
.card-level-communication-skills,
.card-date-communication-skills {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-communication-skills i,
.card-level-communication-skills i,
.card-date-communication-skills i {
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.card-link-communication-skills {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  transition: all var(--transition-base);
  width: fit-content;
}

.card-link-communication-skills:hover {
  background: var(--color-primary-hover);
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .card-left-communication-skills {
    flex-direction: row;
    align-items: stretch;
  }

  .card-left-communication-skills .card-image-wrapper-communication-skills {
    flex: 1 1 45%;
    min-height: 300px;
  }

  .card-left-communication-skills .card-text-wrapper-communication-skills {
    flex: 1 1 55%;
    justify-content: center;
  }

  .card-right-communication-skills {
    flex-direction: row-reverse;
    align-items: stretch;
  }

  .card-right-communication-skills .card-image-wrapper-communication-skills {
    flex: 1 1 45%;
    min-height: 300px;
  }

  .card-right-communication-skills .card-text-wrapper-communication-skills {
    flex: 1 1 55%;
    justify-content: center;
  }

  .card-image-wrapper-communication-skills {
    border-radius: var(--radius-md);
  }

  .card-image-communication-skills {
    height: 100%;
  }
}

.insights-section-communication-skills {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.insights-box-communication-skills {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-secondary);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.insights-title-communication-skills {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw + 0.5rem, 2.2rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-communication-skills {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-communication-skills:last-child {
  margin-bottom: 0;
}

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

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

  .highlights-section-communication-skills {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-communication-skills {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insights-section-communication-skills {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (max-width: 767px) {
  .card-left-communication-skills,
  .card-right-communication-skills {
    flex-direction: column;
  }

  .card-left-communication-skills .card-image-wrapper-communication-skills,
  .card-right-communication-skills .card-image-wrapper-communication-skills {
    flex: 1 1 100%;
    min-height: auto;
  }

  .card-left-communication-skills .card-text-wrapper-communication-skills,
  .card-right-communication-skills .card-text-wrapper-communication-skills {
    flex: 1 1 100%;
  }
}

.main-actief-luisteren-technieken {
  width: 100%;
}

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

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

.hero-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-actief-luisteren-technieken a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.breadcrumbs-actief-luisteren-technieken a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-actief-luisteren-technieken span {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.hero-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0;
}

.hero-subtitle-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-normal);
  margin: 1rem 0 0 0;
}

.hero-metadata-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.metadata-item-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.metadata-item-actief-luisteren-technieken i {
  color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.hero-image-block-actief-luisteren-technieken {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-actief-luisteren-technieken {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .hero-content-actief-luisteren-technieken {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .hero-text-block-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-block-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 450px;
  }
}

.intro-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.intro-text-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.technique-one-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-one-wrapper-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.technique-one-text-actief-luisteren-technieken {
  flex: 1 1 100%;
}

.technique-one-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0 0 1.5rem 0;
}

.technique-one-para-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

.technique-one-highlight-actief-luisteren-technieken {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.highlight-text-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.technique-one-image-actief-luisteren-technieken {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.technique-image-actief-luisteren-technieken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .technique-one-wrapper-actief-luisteren-technieken {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .technique-one-text-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .technique-one-image-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.technique-two-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-two-wrapper-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.technique-two-image-actief-luisteren-technieken {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.technique-two-text-actief-luisteren-technieken {
  flex: 1 1 100%;
}

.technique-two-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0 0 1.5rem 0;
}

.technique-two-para-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
  .technique-two-wrapper-actief-luisteren-technieken {
    flex-direction: row-reverse;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .technique-two-image-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .technique-two-text-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.disclaimer-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-callout-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-callout-actief-luisteren-technieken i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-block-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disclaimer-text-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.technique-three-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-three-wrapper-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.technique-three-text-actief-luisteren-technieken {
  flex: 1 1 100%;
}

.technique-three-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0 0 1.5rem 0;
}

.technique-three-para-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

.technique-three-list-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}

.list-item-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-normal);
  padding-left: 2rem;
  position: relative;
}

.list-item-actief-luisteren-technieken::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.technique-three-image-actief-luisteren-technieken {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .technique-three-wrapper-actief-luisteren-technieken {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .technique-three-text-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .technique-three-image-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.technique-four-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-four-wrapper-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.technique-four-image-actief-luisteren-technieken {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.technique-four-text-actief-luisteren-technieken {
  flex: 1 1 100%;
}

.technique-four-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0 0 1.5rem 0;
}

.technique-four-para-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

.technique-four-stats-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 2rem 0 0 0;
  flex-wrap: wrap;
}

.stat-box-actief-luisteren-technieken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 120px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number-actief-luisteren-technieken {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  font-family: var(--font-heading);
}

.stat-label-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.2vw + 0.4rem, 1rem);
  line-height: var(--line-height-tight);
  margin: 0;
}

@media (min-width: 768px) {
  .technique-four-wrapper-actief-luisteren-technieken {
    flex-direction: row-reverse;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .technique-four-image-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .technique-four-text-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.technique-five-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.technique-five-wrapper-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.technique-five-text-actief-luisteren-technieken {
  flex: 1 1 100%;
}

.technique-five-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0 0 1.5rem 0;
}

.technique-five-para-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 1.5rem 0;
}

.technique-five-quote-actief-luisteren-technieken {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: 2rem 0;
}

.quote-text-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.technique-five-image-actief-luisteren-technieken {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .technique-five-wrapper-actief-luisteren-technieken {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }

  .technique-five-text-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .technique-five-image-actief-luisteren-technieken {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practice-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.practice-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0;
  text-align: center;
}

.practice-intro-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.practice-steps-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-actief-luisteren-technieken {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 280px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-actief-luisteren-technieken {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  font-family: var(--font-heading);
  margin: 0;
}

.step-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  line-height: var(--line-height-tight);
  margin: 0;
}

.step-text-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (min-width: 1024px) {
  .step-card-actief-luisteren-technieken {
    flex: 1 1 calc(25% - 1.125rem);
  }
}

.conclusion-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0;
}

.conclusion-text-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.author-section-actief-luisteren-technieken {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.author-profile-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.author-photo-actief-luisteren-technieken {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.author-info-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.author-name-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  line-height: var(--line-height-tight);
  margin: 0;
}

.author-link-actief-luisteren-technieken {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-link-actief-luisteren-technieken:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.author-title-actief-luisteren-technieken {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.author-bio-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.related-section-actief-luisteren-technieken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-content-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0;
  text-align: center;
}

.related-grid-actief-luisteren-technieken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-actief-luisteren-technieken {
  flex: 1 1 calc(33.333% - 1.333rem);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.related-card-actief-luisteren-technieken:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-actief-luisteren-technieken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-img-actief-luisteren-technieken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-actief-luisteren-technieken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-actief-luisteren-technieken {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-desc-actief-luisteren-technieken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.related-link-actief-luisteren-technieken {
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-link-actief-luisteren-technieken:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-card-actief-luisteren-technieken {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 767px) {
  .related-card-actief-luisteren-technieken {
    flex: 1 1 100%;
  }

  .step-card-actief-luisteren-technieken {
    flex: 1 1 100%;
  }
}

.main-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-duidelijk-communiceren-zelfverzekerd a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.breadcrumbs-duidelijk-communiceren-zelfverzekerd a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-duidelijk-communiceren-zelfverzekerd span {
  color: var(--color-text-muted);
}

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

.hero-text-block-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
}

.meta-item-duidelijk-communiceren-zelfverzekerd i {
  color: var(--color-primary);
}

.hero-image-block-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.intro-text-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.fundamentals-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.fundamentals-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-wrapper-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principles-list-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-subtitle-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-intro-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-items-duidelijk-communiceren-zelfverzekerd {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.principle-item-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  padding-left: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-item-duidelijk-communiceren-zelfverzekerd::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.principle-item-duidelijk-communiceren-zelfverzekerd strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

.principles-image-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-image-element-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.disclaimer-section-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.disclaimer-box-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.disclaimer-icon-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-body-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-section-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-wrapper-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.techniques-text-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-subtitle-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-step-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-image-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-element-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practice-section-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-left-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-element-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practice-right-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-intro-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-steps-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-step-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.practice-step-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-step-text-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.habits-section-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.habits-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.habits-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.habits-cards-wrapper-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.habit-card-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.habit-card-duidelijk-communiceren-zelfverzekerd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.habit-icon-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-primary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.habit-card-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 1.8vw + 0.5rem, 1.35rem);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.habit-card-text-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.conclusion-text-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cta-duidelijk-communiceren-zelfverzekerd {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-duidelijk-communiceren-zelfverzekerd {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  transition: all var(--transition-fast);
}

.cta-link-duidelijk-communiceren-zelfverzekerd:hover {
  background: var(--color-primary-hover);
  opacity: 0.9;
}

.conclusion-image-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-element-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.author-section-duidelijk-communiceren-zelfverzekerd {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-card-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.author-photo-duidelijk-communiceren-zelfverzekerd {
  flex-shrink: 0;
}

.author-image-duidelijk-communiceren-zelfverzekerd {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.author-info-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.author-name-duidelijk-communiceren-zelfverzekerd {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw + 0.5rem, 1.35rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.author-name-duidelijk-communiceren-zelfverzekerd a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.author-name-duidelijk-communiceren-zelfverzekerd a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.author-position-duidelijk-communiceren-zelfverzekerd {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  font-weight: 700;
}

.author-bio-duidelijk-communiceren-zelfverzekerd {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-content-duidelijk-communiceren-zelfverzekerd {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-duidelijk-communiceren-zelfverzekerd {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-duidelijk-communiceren-zelfverzekerd {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.67rem));
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-duidelijk-communiceren-zelfverzekerd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-duidelijk-communiceren-zelfverzekerd {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-duidelijk-communiceren-zelfverzekerd:hover .related-card-image-duidelijk-communiceren-zelfverzekerd {
  transform: scale(1.05);
}

.related-card-body-duidelijk-communiceren-zelfverzekerd {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-duidelijk-communiceren-zelfverzekerd {
  margin: 0;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.related-card-title-duidelijk-communiceren-zelfverzekerd a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.related-card-title-duidelijk-communiceren-zelfverzekerd a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.related-card-text-duidelijk-communiceren-zelfverzekerd {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1023px) {
  .hero-content-duidelijk-communiceren-zelfverzekerd,
  .intro-content-duidelijk-communiceren-zelfverzekerd,
  .principles-wrapper-duidelijk-communiceren-zelfverzekerd,
  .techniques-wrapper-duidelijk-communiceren-zelfverzekerd,
  .practice-content-duidelijk-communiceren-zelfverzekerd,
  .conclusion-content-duidelijk-communiceren-zelfverzekerd {
    flex-direction: column;
  }

  .hero-text-block-duidelijk-communiceren-zelfverzekerd,
  .hero-image-block-duidelijk-communiceren-zelfverzekerd,
  .intro-text-duidelijk-communiceren-zelfverzekerd,
  .intro-image-duidelijk-communiceren-zelfverzekerd,
  .principles-list-duidelijk-communiceren-zelfverzekerd,
  .principles-image-duidelijk-communiceren-zelfverzekerd,
  .techniques-text-duidelijk-communiceren-zelfverzekerd,
  .techniques-image-duidelijk-communiceren-zelfverzekerd,
  .practice-left-duidelijk-communiceren-zelfverzekerd,
  .practice-right-duidelijk-communiceren-zelfverzekerd,
  .conclusion-text-duidelijk-communiceren-zelfverzekerd,
  .conclusion-image-duidelijk-communiceren-zelfverzekerd {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .habit-card-duidelijk-communiceren-zelfverzekerd {
    flex: 1 1 100%;
    min-width: auto;
  }

  .related-card-duidelijk-communiceren-zelfverzekerd {
    flex: 1 1 100%;
    min-width: auto;
  }

  .author-card-duidelijk-communiceren-zelfverzekerd {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .disclaimer-box-duidelijk-communiceren-zelfverzekerd {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

* {
  box-sizing: border-box;
}

.main-sterke-relaties-opbouwen {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-sterke-relaties-opbouwen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs-sterke-relaties-opbouwen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-sterke-relaties-opbouwen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-sterke-relaties-opbouwen span {
  color: var(--color-text-muted);
}

.hero-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.hero-metadata-sterke-relaties-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.meta-item-sterke-relaties-opbouwen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
}

.meta-item-sterke-relaties-opbouwen i {
  color: var(--color-primary);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.hero-lead-sterke-relaties-opbouwen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0;
}

.hero-image-container-sterke-relaties-opbouwen {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image-sterke-relaties-opbouwen {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

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

.intro-content-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.intro-text-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.intro-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.intro-highlight-sterke-relaties-opbouwen {
  background: var(--color-bg-tertiary);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
}

.highlight-text-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.intro-stats-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.stat-card-sterke-relaties-opbouwen {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.stat-number-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}

.stat-label-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.content-one-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-one-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.content-one-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.steps-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.step-item-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.step-number-sterke-relaties-opbouwen {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.step-title-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.step-text-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.content-one-image-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-sterke-relaties-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.disclaimer-section-sterke-relaties-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.disclaimer-box-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
}

.disclaimer-icon-sterke-relaties-opbouwen {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-warning);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(2.5rem, 4vw, 3.5rem);
  height: clamp(2.5rem, 4vw, 3.5rem);
}

.disclaimer-content-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.disclaimer-title-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.disclaimer-text-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.content-two-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-img-sterke-relaties-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-two-text-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-two-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.content-two-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.content-two-list-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item-sterke-relaties-opbouwen {
  font-size: clamp(0.9rem, 1.05vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
}

.list-item-sterke-relaties-opbouwen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.list-item-sterke-relaties-opbouwen strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.content-three-sterke-relaties-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-three-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.content-three-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.quote-box-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.quote-text-sterke-relaties-opbouwen {
  font-size: clamp(1rem, 1.3vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.quote-author-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.content-three-image-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-sterke-relaties-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-four-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-four-wrapper-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-four-image-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-img-sterke-relaties-opbouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-four-text-sterke-relaties-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-four-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.content-four-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.conclusion-sterke-relaties-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.conclusion-paragraph-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.conclusion-cta-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.cta-text-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.cta-link-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
}

.cta-link-sterke-relaties-opbouwen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.author-section-sterke-relaties-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.author-content-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.author-photo-sterke-relaties-opbouwen {
  flex-shrink: 0;
}

.author-image-sterke-relaties-opbouwen {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: block;
}

.author-info-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.author-label-sterke-relaties-opbouwen {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.85rem);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.author-name-sterke-relaties-opbouwen {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
}

.author-link-sterke-relaties-opbouwen {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.author-link-sterke-relaties-opbouwen:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.author-title-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-primary);
  margin: 0;
}

.author-bio-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 600px;
}

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

.related-content-sterke-relaties-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.related-title-sterke-relaties-opbouwen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  text-align: center;
}

.related-subtitle-sterke-relaties-opbouwen {
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

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

.related-card-sterke-relaties-opbouwen {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-sterke-relaties-opbouwen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-sterke-relaties-opbouwen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-sterke-relaties-opbouwen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all var(--transition-base);
}

.related-card-sterke-relaties-opbouwen:hover .related-card-image-sterke-relaties-opbouwen {
  transform: scale(1.05);
}

.related-card-text-sterke-relaties-opbouwen {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-sterke-relaties-opbouwen {
  font-size: clamp(1rem, 1.3vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-sterke-relaties-opbouwen {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-card-link-sterke-relaties-opbouwen:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.related-card-description-sterke-relaties-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (max-width: 768px) {
  .content-one-wrapper-sterke-relaties-opbouwen,
  .content-two-wrapper-sterke-relaties-opbouwen,
  .content-three-wrapper-sterke-relaties-opbouwen,
  .content-four-wrapper-sterke-relaties-opbouwen {
    flex-direction: column;
  }

  .content-one-text-sterke-relaties-opbouwen,
  .content-one-image-sterke-relaties-opbouwen,
  .content-two-text-sterke-relaties-opbouwen,
  .content-two-image-sterke-relaties-opbouwen,
  .content-three-text-sterke-relaties-opbouwen,
  .content-three-image-sterke-relaties-opbouwen,
  .content-four-text-sterke-relaties-opbouwen,
  .content-four-image-sterke-relaties-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .author-content-sterke-relaties-opbouwen {
    flex-direction: column;
    text-align: center;
  }

  .author-info-sterke-relaties-opbouwen {
    align-items: center;
  }

  .intro-stats-sterke-relaties-opbouwen {
    flex-direction: column;
  }

  .stat-card-sterke-relaties-opbouwen {
    max-width: 100%;
  }

  .related-card-sterke-relaties-opbouwen {
    max-width: 100%;
  }

  .disclaimer-box-sterke-relaties-opbouwen {
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer-icon-sterke-relaties-opbouwen {
    min-width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-metadata-sterke-relaties-opbouwen {
    flex-direction: column;
    gap: 0.5rem;
  }

  .intro-stats-sterke-relaties-opbouwen {
    flex-direction: column;
    gap: 1.25rem;
  }

  .stat-card-sterke-relaties-opbouwen {
    min-width: 100%;
  }

  .steps-sterke-relaties-opbouwen {
    gap: 1rem;
  }

  .step-item-sterke-relaties-opbouwen {
    padding-left: 2rem;
  }

  .breadcrumbs-sterke-relaties-opbouwen {
    gap: 0.25rem;
    font-size: 0.75rem;
  }

  .related-cards-sterke-relaties-opbouwen {
    flex-direction: column;
    gap: 1.25rem;
  }

  .related-card-sterke-relaties-opbouwen {
    min-width: 100%;
  }

  .author-image-sterke-relaties-opbouwen {
    width: 100px;
    height: 100px;
  }
}

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

.main-constructieve-dialogen-meningsverschillen {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
}

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

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

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

.breadcrumbs-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
}

.breadcrumbs-constructieve-dialogen-meningsverschillen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-constructieve-dialogen-meningsverschillen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-constructieve-dialogen-meningsverschillen span {
  color: var(--color-text-muted);
}

.hero-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-header-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.hero-meta-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-separator-constructieve-dialogen-meningsverschillen {
  color: var(--color-border);
}

.hero-title-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.2;
}

.hero-subtitle-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.hero-image-container-constructieve-dialogen-meningsverschillen {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.introduction-section-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.introduction-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.introduction-text-constructieve-dialogen-meningsverschillen {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.introduction-title-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.introduction-paragraph-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.introduction-highlight-constructieve-dialogen-meningsverschillen {
  flex: 1 1 35%;
}

.highlight-box-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.highlight-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-list-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.highlight-item-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-constructieve-dialogen-meningsverschillen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.content-section-one-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-one-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-one-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.content-paragraph-one-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.principle-card-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.principle-name-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.15rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.principle-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.content-image-one-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
  height: 100%;
}

.content-img-constructieve-dialogen-meningsverschillen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.disclaimer-callout-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-section-two-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-two-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-two-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.content-paragraph-two-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.technique-box-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.technique-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.15rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.technique-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.content-section-three-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-three-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-three-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.content-paragraph-three-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.warning-box-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.warning-item-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-image-three-constructieve-dialogen-meningsverschillen {
  flex: 1 1 50%;
  max-width: 50%;
}

.steps-section-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.steps-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.steps-title-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.steps-subtitle-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-constructieve-dialogen-meningsverschillen {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-constructieve-dialogen-meningsverschillen {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.conclusion-section-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

.conclusion-title-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.conclusion-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-cta-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
}

.cta-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cta-link-constructieve-dialogen-meningsverschillen {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
  font-weight: 500;
  transition: var(--transition-base);
}

.cta-link-constructieve-dialogen-meningsverschillen:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.author-section-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.author-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.author-card-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.author-image-constructieve-dialogen-meningsverschillen {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.author-name-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.author-name-constructieve-dialogen-meningsverschillen a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.author-name-constructieve-dialogen-meningsverschillen a:hover {
  color: var(--color-primary);
}

.author-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-primary);
  font-weight: 500;
}

.author-bio-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-section-constructieve-dialogen-meningsverschillen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-constructieve-dialogen-meningsverschillen {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.related-grid-constructieve-dialogen-meningsverschillen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-constructieve-dialogen-meningsverschillen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.related-card-constructieve-dialogen-meningsverschillen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.related-image-constructieve-dialogen-meningsverschillen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-img-constructieve-dialogen-meningsverschillen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-constructieve-dialogen-meningsverschillen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-constructieve-dialogen-meningsverschillen {
  font-size: clamp(1rem, 1.5vw + 0.4rem, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-constructieve-dialogen-meningsverschillen {
  font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.related-link-constructieve-dialogen-meningsverschillen {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem);
  font-weight: 500;
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-link-constructieve-dialogen-meningsverschillen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .introduction-content-constructieve-dialogen-meningsverschillen {
    flex-direction: column;
  }

  .introduction-text-constructieve-dialogen-meningsverschillen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-highlight-constructieve-dialogen-meningsverschillen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-one-constructieve-dialogen-meningsverschillen,
  .content-wrapper-two-constructieve-dialogen-meningsverschillen,
  .content-wrapper-three-constructieve-dialogen-meningsverschillen {
    flex-direction: column;
  }

  .content-text-one-constructieve-dialogen-meningsverschillen,
  .content-image-one-constructieve-dialogen-meningsverschillen,
  .content-text-two-constructieve-dialogen-meningsverschillen,
  .content-image-two-constructieve-dialogen-meningsverschillen,
  .content-text-three-constructieve-dialogen-meningsverschillen,
  .content-image-three-constructieve-dialogen-meningsverschillen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-constructieve-dialogen-meningsverschillen {
    order: 0;
  }

  .step-card-constructieve-dialogen-meningsverschillen {
    flex: 1 1 100%;
    min-width: unset;
  }

  .related-card-constructieve-dialogen-meningsverschillen {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-constructieve-dialogen-meningsverschillen {
    flex-wrap: wrap;
  }

  .author-card-constructieve-dialogen-meningsverschillen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-image-constructieve-dialogen-meningsverschillen {
    width: 100px;
    height: 100px;
  }

  .related-card-constructieve-dialogen-meningsverschillen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

html, body, h1, h2, h3, h4, h5, h6, p, span, a, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.communication-dialogue-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-dialogue-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-dialogue-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.hero-dialogue-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: 700;
}

.hero-dialogue-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.foundation-dialogue-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.foundation-header-about {
  text-align: center;
}

.foundation-label-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.foundation-description-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-blocks-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.foundation-block-about {
  flex: 1 1 clamp(280px, 45vw, 380px);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.foundation-block-about:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.foundation-block-title-about {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.foundation-block-text-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.journey-dialogue-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-dialogue-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.journey-header-about {
  text-align: center;
}

.journey-label-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

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

.journey-phase-about {
  flex: 1 1 clamp(250px, 40vw, 320px);
  text-align: center;
}

.journey-phase-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.journey-phase-title-about {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.journey-phase-text-about {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.expertise-dialogue-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.expertise-header-about {
  text-align: center;
}

.expertise-label-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.expertise-intro-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 750px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem) auto;
  line-height: 1.7;
  text-align: center;
}

.expertise-items-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.expertise-item-about {
  flex: 1 1 clamp(200px, 28vw, 280px);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.expertise-item-about:hover {
  box-shadow: var(--shadow-md);
  background: var(--color-bg-secondary);
}

.expertise-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  display: block;
}

.expertise-item-title-about {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.expertise-item-text-about {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.approach-dialogue-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-dialogue-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.approach-header-about {
  text-align: center;
}

.approach-label-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

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

.approach-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

.approach-step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--color-primary);
  font-weight: 700;
  min-width: 60px;
  line-height: 1;
}

.approach-step-content-about {
  flex: 1;
}

.approach-step-title-about {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.approach-step-text-about {
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.impact-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.disclaimer-dialogue-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-dialogue-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
}

.disclaimer-icon-about {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

  .journey-grid-about {
    flex-direction: column;
  }

  .journey-phase-about {
    flex: 1 1 100%;
  }

  .expertise-items-about {
    flex-direction: column;
  }

  .expertise-item-about {
    flex: 1 1 100%;
  }

  .approach-step-about {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .approach-step-number-about {
    min-width: auto;
  }

  .hero-dialogue-content-about {
    text-align: center;
  }

  .journey-header-about {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .foundation-blocks-about {
    flex-direction: row;
  }

  .foundation-block-about {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .journey-grid-about {
    flex-direction: row;
  }

  .journey-phase-about {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .expertise-items-about {
    flex-direction: row;
  }

  .expertise-item-about {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1025px) {
  .foundation-blocks-about {
    flex-direction: row;
  }

  .foundation-block-about {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .journey-grid-about {
    flex-direction: row;
  }

  .journey-phase-about {
    flex: 1 1 calc(25% - 1.125rem);
  }

  .expertise-items-about {
    flex-direction: row;
  }

  .expertise-item-about {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

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

html, body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-primary-marieke-van-den-berg {
  background: var(--color-primary);
  color: var(--color-bg-secondary);
}

.btn-primary-marieke-van-den-berg:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-marieke-van-den-berg {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary-marieke-van-den-berg:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary-hover);
}

.hero-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-marieke-van-den-berg {
    flex-direction: row;
    align-items: flex-start;
  }
}

.hero-text-marieke-van-den-berg {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  .hero-text-marieke-van-den-berg {
    flex: 1 1 55%;
  }
}

.hero-label-marieke-van-den-berg {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(2.5rem, 6vw + 1rem, 4rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 500;
}

.hero-description-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 500px;
}

.hero-stats-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.stat-item-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-marieke-van-den-berg {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.stat-label-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-marieke-van-den-berg {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-marieke-van-den-berg {
    flex: 1 1 40%;
    justify-content: flex-end;
  }
}

.author-photo-marieke-van-den-berg {
  width: 100%;
  max-width: 350px;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .author-photo-marieke-van-den-berg {
    max-width: 100%;
    height: 500px;
  }
}

.about-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.about-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.about-header-marieke-van-den-berg {
  text-align: center;
}

.section-label-marieke-van-den-berg {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.3;
  font-weight: 700;
}

.about-text-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

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

.expertise-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-header-marieke-van-den-berg {
  text-align: center;
}

.expertise-cards-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-marieke-van-den-berg {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 280px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  text-align: center;
}

.expertise-card-marieke-van-den-berg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expertise-icon-marieke-van-den-berg {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
}

.expertise-card-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.expertise-card-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.credentials-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.credentials-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.credentials-header-marieke-van-den-berg {
  text-align: center;
}

.credentials-grid-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.credentials-block-marieke-van-den-berg {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 350px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.credentials-block-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

.credentials-list-marieke-van-den-berg {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credentials-item-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credentials-item-label-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-weight: 500;
  display: block;
}

.credentials-item-detail-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw + 0.35rem, 0.875rem);
  display: block;
}

.philosophy-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.philosophy-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.philosophy-header-marieke-van-den-berg {
  text-align: center;
}

.philosophy-blocks-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.philosophy-block-marieke-van-den-berg {
  flex: 1 1 100%;
  min-width: 260px;
  max-width: 300px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--color-primary);
}

.philosophy-block-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.philosophy-block-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.articles-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.articles-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.articles-header-marieke-van-den-berg {
  text-align: center;
}

.articles-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-top: 0.75rem;
}

.articles-grid-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.article-link-marieke-van-den-berg {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 280px;
  color: inherit;
}

.article-card-marieke-van-den-berg {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.article-card-marieke-van-den-berg:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-icon-marieke-van-den-berg {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
}

.article-card-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.article-card-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.cta-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.cta-box-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border-left: 5px solid var(--color-primary);
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-buttons-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

@media (max-width: 640px) {
  .cta-buttons-marieke-van-den-berg {
    flex-direction: column;
  }

  .cta-buttons-marieke-van-den-berg .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .about-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .expertise-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .credentials-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .philosophy-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .articles-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .cta-section-marieke-van-den-berg {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .credentials-grid-marieke-van-den-berg {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .philosophy-blocks-marieke-van-den-berg {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .articles-grid-marieke-van-den-berg {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-3xl) var(--spacing-md);
  text-align: center;
  overflow: hidden;
}

.services-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  font-weight: 400;
}

.services-hero p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-hero h1 {
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }
}

.services-grid {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-3xl) var(--spacing-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--spacing-2xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.service-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 400;
}

.service-card p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-lg) 0;
  flex-grow: 1;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-highlights li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.service-highlights li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.service-cta {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.05rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: color var(--transition-fast);
  width: fit-content;
  margin-top: auto;
  padding: var(--spacing-sm) 0;
}

.service-cta:hover {
  color: var(--color-primary-hover);
}

.service-cta:after {
  content: "";
  transition: transform var(--transition-fast);
}

.service-cta:hover:after {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .services-grid {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
  }

  .service-card {
    padding: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

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

.services-images {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-3xl) var(--spacing-md);
  overflow: hidden;
}

.services-images-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.services-image-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.services-image-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
}

@media (min-width: 768px) {
  .services-images {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .services-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
  }
}

@media (min-width: 1024px) {
  .services-images {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

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

.services-cta-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-3xl) var(--spacing-md);
  text-align: center;
  overflow: hidden;
}

.services-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 400;
}

.services-cta-section p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-2xl) 0;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: 2px solid var(--color-primary);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services-cta-section {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta-section {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }
}

.portfolio-page {
  width: 100%;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.portfolio-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin: 0;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 500px;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .portfolio-hero-title {
    margin-bottom: var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .portfolio-projects {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .portfolio-projects {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  align-items: center;
}

.portfolio-card-queue {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-year {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.portfolio-card-link {
  margin-top: auto;
}

.portfolio-card-cta {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-sm) 0;
  border-bottom: 2px solid var(--color-primary);
  transition: all var(--transition-base);
}

.portfolio-card-cta:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .portfolio-card-content {
    padding: var(--spacing-lg);
  }

  .portfolio-card-image {
    height: 260px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin: 0;
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.portfolio-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
}

.portfolio-cta-button {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid;
}

.portfolio-cta-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-color: var(--color-primary);
}

.portfolio-cta-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.portfolio-cta-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.portfolio-cta-secondary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .portfolio-cta-buttons {
    flex-direction: row;
    gap: var(--spacing-lg);
  }

  .portfolio-cta-button {
    min-width: 200px;
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .portfolio-cta-title {
    margin-bottom: var(--spacing-lg);
  }

  .portfolio-cta-text {
    margin-bottom: var(--spacing-2xl);
  }
}

.dialog-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.dialog-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.dialog-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) 0;
}

.dialog-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

.dialog-docs .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-2xl);
  display: block;
}

.dialog-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.dialog-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border-light);
}

.dialog-docs h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: var(--spacing-xl);
}

.dialog-docs ul {
  margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
  list-style-position: outside;
}

.dialog-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.dialog-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.dialog-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-3xl);
}

.dialog-docs .contact-section h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  color: var(--color-text-primary);
}

.dialog-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.dialog-docs .contact-section p:last-child {
  margin-bottom: 0;
}

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

  .dialog-docs .content {
    padding: var(--spacing-4xl) 0;
  }

  .dialog-docs h1 {
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .dialog-docs .container {
    padding: 0 var(--spacing-xl);
  }

  .dialog-docs .content {
    padding: var(--spacing-4xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
  animation: iconPulse 0.6s ease-out;
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  stroke-width: 1.5;
}

@keyframes iconPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin: var(--spacing-md) 0;
  animation: slideUp 0.7s ease-out 0.1s backwards;
}

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

.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 500;
  margin: var(--spacing-md) 0;
  animation: slideUp 0.7s ease-out 0.2s backwards;
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: var(--spacing-lg) 0;
  animation: slideUp 0.7s ease-out 0.3s backwards;
}

.thank-next {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--spacing-md) 0 var(--spacing-lg);
  animation: slideUp 0.7s ease-out 0.4s backwards;
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-2xl);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-primary);
  animation: slideUp 0.7s ease-out 0.5s backwards;
}

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

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

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

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

@media (min-width: 480px) {
  .thank-section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .thank-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--spacing-xl);
  }

  .thank-icon svg {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  .thank-content {
    gap: var(--spacing-xl);
  }

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-lg);
  }

  .thank-icon svg {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .container {
    padding: 0 var(--spacing-xl);
  }

  .thank-content {
    gap: var(--spacing-2xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .thank-icon svg {
    width: 72px;
    height: 72px;
  }

  .btn {
    padding: var(--spacing-md) var(--spacing-3xl);
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 479px) {
  .thank-section {
    min-height: auto;
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .thank-content {
    gap: var(--spacing-md);
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  position: relative;
  z-index: 1;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  position: relative;
  text-align: center;
  padding: var(--spacing-lg);
}

.error-code-wrapper {
  position: relative;
  margin-bottom: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-primary);
  display: block;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.error-accent {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-primary-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--spacing-xs);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.suggestions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

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

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

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

.error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.08;
  border: 2px solid var(--color-primary);
}

.decoration-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.decoration-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

.decoration-line {
  position: absolute;
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 640px) {
  .error-wrapper {
    padding: var(--spacing-xl);
  }

  .error-code-wrapper {
    margin-bottom: var(--spacing-3xl);
  }

  .suggestions-list {
    gap: var(--spacing-md);
  }

  .suggestions-list li {
    padding-left: var(--spacing-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--spacing-lg);
  }

  .error-wrapper {
    padding: var(--spacing-2xl);
  }

  .error-code-wrapper {
    margin-bottom: var(--spacing-3xl);
  }

  .error-description {
    margin-bottom: var(--spacing-2xl);
  }

  .error-suggestions {
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
  }

  .btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: clamp(0.95rem, 1vw, 1.1rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--spacing-2xl);
  }

  .error-wrapper {
    padding: var(--spacing-3xl);
  }

  .error-code-wrapper {
    margin-bottom: var(--spacing-4xl);
  }

  .error-code {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .error-title {
    margin-bottom: var(--spacing-lg);
  }

  .error-description {
    margin-bottom: var(--spacing-2xl);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }

  .suggestions-list li {
    font-size: clamp(0.95rem, 1vw, 1rem);
  }

  .decoration-circle-1 {
    width: 300px;
    height: 300px;
  }

  .decoration-circle-2 {
    width: 250px;
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .decoration-circle-1,
  .decoration-circle-2 {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

.contact-get-started {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.contact-get-started-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
}

.contact-get-started-hero-content {
  text-align: center;
}

.contact-get-started-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: var(--spacing-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-hero {
    padding: var(--spacing-4xl) 0;
  }
}

.contact-get-started-main {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
}

.contact-get-started-content {
  width: 100%;
}

.contact-get-started-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3xl);
  width: 100%;
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-get-started-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-get-started-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-get-started-input,
.contact-get-started-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-bg-card);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  line-height: var(--line-height-normal);
}

.contact-get-started-input:focus,
.contact-get-started-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
  background-color: var(--color-bg-primary);
}

.contact-get-started-input::placeholder,
.contact-get-started-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-started-textarea {
  min-height: 140px;
  resize: vertical;
  max-height: 300px;
}

.contact-get-started-consent {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.contact-get-started-consent-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-get-started-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-get-started-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  padding: var(--spacing-lg) var(--spacing-2xl);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-get-started-submit:active {
  transform: translateY(0);
}

.contact-get-started-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-get-started-info {
  width: 100%;
}

.contact-get-started-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xl) 0;
  line-height: var(--line-height-tight);
}

.contact-get-started-info-item {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-get-started-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: var(--spacing-2xl);
}

.contact-get-started-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-get-started-info-content {
  flex: 1;
}

.contact-get-started-info-heading {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xs) 0;
}

.contact-get-started-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-get-started-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

.contact-get-started-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--spacing-xl);
}

.contact-get-started-info-cta-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.contact-get-started-info-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
}

.contact-get-started-info-cta-link {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-sm) 0;
  border-bottom: 2px solid var(--color-primary);
  transition: var(--transition-fast);
}

.contact-get-started-info-cta-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .contact-get-started-main {
    padding: var(--spacing-3xl) 0;
  }

  .contact-get-started-grid {
    gap: var(--spacing-4xl);
  }

  .contact-get-started-form-wrapper {
    flex: 1 1 45%;
    max-width: 520px;
  }

  .contact-get-started-info-wrapper {
    flex: 1 1 45%;
    max-width: 520px;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-main {
    padding: var(--spacing-4xl) 0;
  }

  .contact-get-started-grid {
    gap: var(--spacing-4xl);
  }

  .contact-get-started-form-wrapper {
    flex: 1 1 48%;
  }

  .contact-get-started-info-wrapper {
    flex: 1 1 48%;
  }
}
.header-dialogue-hub-mobile-close,.header-dialogue-hub-mobile-toggle{
  width: 34px;
}

.header-dialogue-hub-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}

.container{
  display: block !important;
}

html{
  scroll-padding-top: 80px;
}

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

input,textarea,select{
  max-width: 100%;
  box-sizing: border-box;
}

#cookieBanner{
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.card img,.portfolio-card img,[class*="-card"] img{
  flex-shrink: 0;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
}

.header-dialogue-hub-mobile-menu{
  padding-top: max(env(safe-area-inset-top), 0px);
}
@media (max-width: 480px){
  .header-dialogue-hub-mobile-menu{
    max-width: 100%;
  }
}

.header-dialogue-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
}

@media (max-width: 768px) {
  .blog-card-image-front {
    aspect-ratio: 6 / 9;
  }
  .card-image-communication-skills {
    aspect-ratio: 6 / 9;
  }
}

