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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-light: #fffef9;
  --color-bg-overlay: rgba(255, 251, 235, 0.95);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #14b8a6;
  --color-secondary-light: #f0fdfa;
  
  
  --color-success: #059669;
  --color-warning: #d97706;
  --color-error: #dc2626;
  --color-info: #0284c7;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.07);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.15);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
}

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

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

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

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

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: var(--letter-spacing-tight);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 640px) {
  .grid {
    gap: var(--space-lg);
  }
}

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

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

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

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

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

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

.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-ghost:hover:not(:disabled) {
  background: var(--color-primary-light);
}

.btn-text {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-xs) 0;
  min-height: auto;
}

.btn-text:hover:not(:disabled) {
  color: var(--color-primary-hover);
}

.btn-sm {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-md) var(--space-lg);
  font-size: 1.125rem;
  min-height: 52px;
}

.btn-block {
  width: 100%;
}

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

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

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

.badge-success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-warning);
}

.badge-error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-error);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-light { font-weight: 400; }
.font-normal { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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

.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-error { color: var(--color-error); }
.text-info { color: var(--color-info); }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.tracking-tight { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }

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

.border { border: 1px solid rgba(28, 25, 23, 0.1); }
.border-t { border-top: 1px solid rgba(28, 25, 23, 0.1); }
.border-b { border-bottom: 1px solid rgba(28, 25, 23, 0.1); }
.border-l { border-left: 1px solid rgba(28, 25, 23, 0.1); }
.border-r { border-right: 1px solid rgba(28, 25, 23, 0.1); }

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

.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.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); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

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

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }
.min-h-full { min-height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(4px); }
.translate-y-2 { transform: translateY(8px); }
.-translate-y-1 { transform: translateY(-4px); }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid rgba(28, 25, 23, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

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

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

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

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

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

code {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

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

hr {
  border: none;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
  margin: var(--space-lg) 0;
}

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

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

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

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

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

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

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

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

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

.animate-bounce {
  animation: bounce var(--transition-slow) infinite;
}

@media (max-width: 640px) {
  .hidden-sm { display: none; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hidden-md { display: none; }
}

@media (min-width: 1025px) {
  .hidden-lg { display: none; }
}

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}

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

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
  border-radius: var(--radius-lg);
}

.skip-to-content:focus {
  top: var(--space-sm);
  left: var(--space-sm);
}

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

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

* {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: var(--transition-fast);
}

a, button {
  transition-property: all;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.header-mentor-nexus {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid #e7d5c8;
  position: relative;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-mentor-nexus-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, 12vw, 80px);
}

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

.header-mentor-nexus-brand:hover {
  opacity: 0.8;
}

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

.header-mentor-nexus-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.header-mentor-nexus-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 auto;
}

.header-mentor-nexus-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-mentor-nexus-nav-link:hover {
  color: var(--color-primary);
}

.header-mentor-nexus-nav-link:hover::after {
  width: 100%;
}

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

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

.header-mentor-nexus-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-mentor-nexus-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header-mentor-nexus-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

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

.header-mentor-nexus-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.header-mentor-nexus-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-overlay);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

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

.header-mentor-nexus-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid #e7d5c8;
}

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

.header-mentor-nexus-mobile-close:active {
  color: var(--color-primary-hover);
}

.header-mentor-nexus-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem 0;
}

.header-mentor-nexus-mobile-link {
  display: block;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid #f0ede8;
  transition: background var(--transition-base), color var(--transition-base);
}

.header-mentor-nexus-mobile-link:active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.header-mentor-nexus-mobile-cta {
  display: block;
  margin: 2rem 1.5rem;
  padding: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
}

.header-mentor-nexus-mobile-cta:active {
  background: var(--color-primary-hover);
  transform: scale(0.98);
}

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

  .header-mentor-nexus-cta-button {
    display: inline-block;
  }

  .header-mentor-nexus-mobile-toggle {
    display: none;
  }

  .header-mentor-nexus-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-mentor-nexus-logo-text {
    font-size: 1.1rem;
  }
}

    .mentorship-hub {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-subtitle-index {
  color: #f0fdfa;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
}

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

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

.stat-number-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label-index {
  color: #f0fdfa;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.hero-btn-index {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
}

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

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

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

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

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

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

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefits-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefits-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
  border-color: #0d9488;
}

.benefit-icon-index {
  font-size: 2.5rem;
  color: #0d9488;
  height: 3rem;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.partners-subtitle-index {
  color: #f0fdfa;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.partner-stat-index {
  flex: 1 1 180px;
  min-width: 150px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-stat-number-index {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.partner-stat-label-index {
  color: #f0fdfa;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.partners-testimonial-index {
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-index {
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid #fef3c7;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: 0;
}

.quote-text-index {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author-index {
  color: #f0fdfa;
  font-size: 0.95rem;
  font-style: normal;
}

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

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

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

.statistics-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.statistics-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.stat-block-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.stat-block-number-index {
  color: #0d9488;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.stat-block-title-index {
  color: #1c1917;
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

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

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

  .stat-block-number-index {
    text-align: left;
    min-width: auto;
  }
}

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

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

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

.featured-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fffbeb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card-large-index {
  flex: 2 1 450px;
  max-width: 500px;
}

.featured-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.12);
}

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

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

.featured-card-index:hover .card-img-index {
  transform: scale(1.05);
}

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

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

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

.card-link-index {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.card-link-index:hover {
  color: #0f766e;
  text-decoration: underline;
}

.featured-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.featured-cta-btn-index {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
}

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

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

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

.process-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-top: 3px solid #0d9488;
}

.step-number-index {
  color: #0d9488;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

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

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

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

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

  .step-number-index {
    text-align: left;
    min-width: auto;
  }
}

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

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

.cta-box-index {
  flex: 1 1 45%;
  min-width: 280px;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

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

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

.cta-button-index {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

.cta-info-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-info-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border-left: 3px solid #fef3c7;
}

.cta-info-title-index {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.cta-info-text-index {
  color: #f0fdfa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

  .cta-box-index,
  .cta-info-index {
    flex: 1 1 100%;
  }

  .cta-button-index {
    width: 100%;
    text-align: center;
  }
}

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

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

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

.resources-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.resources-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.resource-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.1);
}

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

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

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

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

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

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

.faq-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.1);
}

.faq-question-index {
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

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

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

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

.cookie-banner-text {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 40px;
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

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

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

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

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

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

@media (max-width: 640px) {
  .benefits-grid-index,
  .partners-stats-index,
  .resources-grid-index {
    flex-direction: column;
  }

  .benefit-card-index,
  .partner-stat-index,
  .resource-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-card-index,
  .featured-card-large-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-index {
    gap: 1.5rem;
    justify-content: space-around;
  }

  .stat-item-index {
    min-width: 100px;
  }
}

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

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: var(--letter-spacing-wide);
}

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-wide);
}

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

.footer-contact {
  display: block;
}

.footer-contact h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-wide);
}

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-wide);
}

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

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

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

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

.footer-copyright p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

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

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

.category-page-mentorship-guidance-netherlands {
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

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

@media (min-width: 1024px) {
  .hero-content-mentorship-guidance-netherlands {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-mentorship-guidance-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 100%;
}

@media (min-width: 1024px) {
  .hero-text-mentorship-guidance-netherlands {
    flex: 1 1 50%;
  }
}

.hero-title-mentorship-guidance-netherlands {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-mentorship-guidance-netherlands {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.hero-cta-mentorship-guidance-netherlands {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-visual-mentorship-guidance-netherlands {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-visual-mentorship-guidance-netherlands {
    flex: 1 1 50%;
  }
}

.hero-image-mentorship-guidance-netherlands {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.posts-section-mentorship-guidance-netherlands {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-mentorship-guidance-netherlands {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-mentorship-guidance-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.posts-description-mentorship-guidance-netherlands {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.card-mentorship-guidance-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.08);
  transition: all var(--transition-base);
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .card-mentorship-guidance-netherlands {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .card-mentorship-guidance-netherlands {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.card-image-wrapper-mentorship-guidance-netherlands {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
}

.card-image-mentorship-guidance-netherlands {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.card-title-mentorship-guidance-netherlands {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.card-description-mentorship-guidance-netherlands {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.card-meta-mentorship-guidance-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  margin-top: auto;
}

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

.card-reading-time-mentorship-guidance-netherlands i,
.card-level-mentorship-guidance-netherlands i,
.card-date-mentorship-guidance-netherlands i {
  color: #0d9488;
  font-size: 0.9rem;
}

.insight-section-mentorship-guidance-netherlands {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-mentorship-guidance-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.insight-header-mentorship-guidance-netherlands {
  text-align: center;
}

.insight-title-mentorship-guidance-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #f1f5f9;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.insight-quote-mentorship-guidance-netherlands {
  display: flex;
  justify-content: center;
  padding: 0;
}

.insight-blockquote-mentorship-guidance-netherlands {
  border-left: 4px solid #0d9488;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0;
}

.insight-quote-text-mentorship-guidance-netherlands {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #f1f5f9;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.insight-attribution-mentorship-guidance-netherlands {
  display: block;
}

.insight-author-mentorship-guidance-netherlands {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.insight-text-mentorship-guidance-netherlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.insight-paragraph-mentorship-guidance-netherlands {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.framework-section-mentorship-guidance-netherlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.framework-header-mentorship-guidance-netherlands {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.framework-title-mentorship-guidance-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.framework-subtitle-mentorship-guidance-netherlands {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.framework-steps-mentorship-guidance-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.framework-step-mentorship-guidance-netherlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 100%;
  max-width: 280px;
  text-align: center;
}

@media (min-width: 768px) {
  .framework-step-mentorship-guidance-netherlands {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .framework-step-mentorship-guidance-netherlands {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.framework-step-number-mentorship-guidance-netherlands {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto;
}

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

.framework-step-title-mentorship-guidance-netherlands {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.framework-step-text-mentorship-guidance-netherlands {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.btn:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

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

.btn-primary {
  background: #0d9488;
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background: #0f766e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-text {
  background: transparent;
  color: #0d9488;
  padding: 0.5rem 0;
  min-height: auto;
  font-weight: 600;
}

.btn-text:hover:not(:disabled) {
  color: #0f766e;
  text-decoration: underline;
}

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

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

@media (max-width: 640px) {
  .hero-visual-mentorship-guidance-netherlands {
    max-width: 100%;
  }

  .card-mentorship-guidance-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-step-mentorship-guidance-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .card-mentorship-guidance-netherlands {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }

  .framework-step-mentorship-guidance-netherlands {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

.main-actief-luisteren-kracht {
  background: #fffbeb;
  overflow: hidden;
}

.hero-section-actief-luisteren-kracht {
  background: #0a0a0a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-actief-luisteren-kracht {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #9ca3af;
}

.breadcrumbs-actief-luisteren-kracht a {
  color: #14b8a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-actief-luisteren-kracht a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-actief-luisteren-kracht span {
  color: #6b7280;
}

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

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

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

.hero-subtitle-actief-luisteren-kracht {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-actief-luisteren-kracht {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #9ca3af;
}

.meta-item-actief-luisteren-kracht {
  color: #9ca3af;
}

.meta-divider-actief-luisteren-kracht {
  color: #6b7280;
}

.hero-image-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-actief-luisteren-kracht {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-actief-luisteren-kracht,
  .hero-image-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-actief-luisteren-kracht {
    font-size: 0.75rem;
  }
}

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

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

.intro-text-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-actief-luisteren-kracht {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-actief-luisteren-kracht:last-child {
  margin-bottom: 0;
}

.intro-image-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-actief-luisteren-kracht {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-actief-luisteren-kracht {
    flex-direction: column;
  }

  .intro-text-actief-luisteren-kracht,
  .intro-image-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.core-section-actief-luisteren-kracht {
  background: #0a0a0a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.core-content-actief-luisteren-kracht {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.core-text-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.core-paragraph-actief-luisteren-kracht {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.pillars-list-actief-luisteren-kracht {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.pillar-item-actief-luisteren-kracht {
  padding: clamp(1rem, 2vw, 1.25rem);
  background: rgba(13, 148, 136, 0.1);
  border-left: 4px solid #14b8a6;
  border-radius: 4px;
}

.pillar-title-actief-luisteren-kracht {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #14b8a6;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-text-actief-luisteren-kracht {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.core-image-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-img-actief-luisteren-kracht {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .core-content-actief-luisteren-kracht {
    flex-direction: column;
  }

  .core-text-actief-luisteren-kracht,
  .core-image-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-actief-luisteren-kracht {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.practice-image-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-actief-luisteren-kracht {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.practice-text-actief-luisteren-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-paragraph-actief-luisteren-kracht {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.exercise-box-actief-luisteren-kracht {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: #fef3c7;
  border-left: 4px solid #d97706;
  border-radius: 6px;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.exercise-box-actief-luisteren-kracht:last-child {
  margin-bottom: 0;
}

.exercise-title-actief-luisteren-kracht {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #92400e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.exercise-text-actief-luisteren-kracht {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #78350f;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-content-actief-luisteren-kracht {
    flex-direction: column;
  }

  .practice-image-actief-luisteren-kracht,
  .practice-text-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-actief-luisteren-kracht {
  background: #0a0a0a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.obstacles-content-actief-luisteren-kracht {
  display: flex;
  flex-direction: column;
}

.obstacles-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.obstacles-intro-actief-luisteren-kracht {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.obstacle-card-actief-luisteren-kracht {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #1f2937;
  border-radius: 10px;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.obstacle-card-title-actief-luisteren-kracht {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: #14b8a6;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.obstacle-card-text-actief-luisteren-kracht {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .obstacle-cards-actief-luisteren-kracht {
    flex-direction: column;
  }

  .obstacle-card-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.result-section-actief-luisteren-kracht {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.result-content-actief-luisteren-kracht {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.result-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.result-paragraph-actief-luisteren-kracht {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.result-paragraph-actief-luisteren-kracht:last-child {
  margin-bottom: 0;
}

.disclaimer-section-actief-luisteren-kracht {
  background: #0a0a0a;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-actief-luisteren-kracht {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-actief-luisteren-kracht {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #14b8a6;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-actief-luisteren-kracht {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(13, 148, 136, 0.05);
  border-left: 3px solid #14b8a6;
  border-radius: 4px;
}

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

.related-content-actief-luisteren-kracht {
  display: flex;
  flex-direction: column;
}

.related-title-actief-luisteren-kracht {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-actief-luisteren-kracht {
  flex: 1 1 300px;
  max-width: 380px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-actief-luisteren-kracht:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-link-actief-luisteren-kracht {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-image-actief-luisteren-kracht {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.related-card-title-actief-luisteren-kracht {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-actief-luisteren-kracht {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 768px) {
  .related-cards-actief-luisteren-kracht {
    flex-direction: column;
  }

  .related-card-actief-luisteren-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-section-actief-luisteren-kracht {
    padding: 1.5rem 0;
  }

  .intro-section-actief-luisteren-kracht,
  .core-section-actief-luisteren-kracht,
  .practice-section-actief-luisteren-kracht,
  .obstacles-section-actief-luisteren-kracht,
  .result-section-actief-luisteren-kracht,
  .disclaimer-section-actief-luisteren-kracht,
  .related-section-actief-luisteren-kracht {
    padding: 2rem 0;
  }

  .breadcrumbs-actief-luisteren-kracht {
    margin-bottom: 1rem;
  }
}

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

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

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

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

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

.main-basisprincipes-effectief-coachen {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-wrapper-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-basisprincipes-effectief-coachen {
  color: #ffffff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle-basisprincipes-effectief-coachen {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-basisprincipes-effectief-coachen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item-basisprincipes-effectief-coachen {
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-basisprincipes-effectief-coachen i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-wrapper-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-basisprincipes-effectief-coachen {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs-basisprincipes-effectief-coachen a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-basisprincipes-effectief-coachen a:hover {
  color: #14b8a6;
  text-decoration: underline;
}

.breadcrumbs-basisprincipes-effectief-coachen span {
  margin: 0 0.5rem;
  color: #64748b;
}

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

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

.intro-text-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-paragraph-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.intro-image-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-basisprincipes-effectief-coachen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.principles-section-basisprincipes-effectief-coachen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: column;
}

.principle-header-basisprincipes-effectief-coachen {
  margin-bottom: 2rem;
}

.principles-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0;
  line-height: 1.3;
}

.principle-wrapper-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principle-text-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-description-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.principle-highlight-basisprincipes-effectief-coachen {
  background: #ecfdf5;
  border-left: 4px solid #0d9488;
  padding: 1.5rem;
  border-radius: 8px;
  color: #047857;
  font-size: 0.95rem;
  line-height: 1.6;
}

.principle-image-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-image-element-basisprincipes-effectief-coachen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.coaching-framework-basisprincipes-effectief-coachen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.framework-text-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.framework-description-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.framework-image-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-image-element-basisprincipes-effectief-coachen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.feedback-section-basisprincipes-effectief-coachen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.feedback-text-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.feedback-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.feedback-description-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.feedback-highlight-basisprincipes-effectief-coachen {
  background: #fef3c7;
  border-left: 4px solid #d97706;
  padding: 1.5rem;
  border-radius: 8px;
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feedback-image-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.feedback-image-element-basisprincipes-effectief-coachen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.practical-section-basisprincipes-effectief-coachen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: column;
}

.practical-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

.practical-intro-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.practical-steps-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-basisprincipes-effectief-coachen {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  min-width: 80px;
  line-height: 1;
}

.step-content-basisprincipes-effectief-coachen {
  flex: 1;
}

.step-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-text-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.closing-section-basisprincipes-effectief-coachen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.closing-text-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.closing-paragraph-basisprincipes-effectief-coachen {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.closing-quote-basisprincipes-effectief-coachen {
  margin: 2rem 0 0 0;
}

.featured-quote-basisprincipes-effectief-coachen {
  border-left: 4px solid #0d9488;
  padding-left: 1.5rem;
  margin: 0;
  font-style: italic;
}

.quote-text-basisprincipes-effectief-coachen {
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-basisprincipes-effectief-coachen {
  color: #64748b;
  font-size: 0.9rem;
  font-style: normal;
  display: block;
}

.closing-image-basisprincipes-effectief-coachen {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-image-element-basisprincipes-effectief-coachen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.disclaimer-section-basisprincipes-effectief-coachen {
  background: #1e293b;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-basisprincipes-effectief-coachen {
  display: flex;
  justify-content: center;
}

.disclaimer-box-basisprincipes-effectief-coachen {
  max-width: 800px;
  background: #0f172a;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.disclaimer-title-basisprincipes-effectief-coachen {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-basisprincipes-effectief-coachen {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.related-content-basisprincipes-effectief-coachen {
  display: flex;
  flex-direction: column;
}

.related-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.3;
}

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

.related-card-basisprincipes-effectief-coachen {
  flex: 1 1 100%;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-basisprincipes-effectief-coachen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.related-image-wrapper-basisprincipes-effectief-coachen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-basisprincipes-effectief-coachen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-basisprincipes-effectief-coachen {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-basisprincipes-effectief-coachen {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-basisprincipes-effectief-coachen {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.related-card-link-basisprincipes-effectief-coachen {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.related-card-link-basisprincipes-effectief-coachen:hover {
  color: #14b8a6;
  text-decoration: underline;
}

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

  .hero-text-wrapper-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-basisprincipes-effectief-coachen {
    flex-direction: column;
  }

  .intro-text-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-wrapper-basisprincipes-effectief-coachen {
    flex-direction: column;
  }

  .principle-text-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-image-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-content-basisprincipes-effectief-coachen {
    flex-direction: column;
  }

  .framework-text-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-image-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feedback-content-basisprincipes-effectief-coachen {
    flex-direction: column;
  }

  .feedback-text-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feedback-image-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .closing-content-basisprincipes-effectief-coachen {
    flex-direction: column;
  }

  .closing-text-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .closing-image-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-basisprincipes-effectief-coachen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-basisprincipes-effectief-coachen {
    min-width: auto;
  }

  .related-card-basisprincipes-effectief-coachen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .related-card-basisprincipes-effectief-coachen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1025px) {
  .related-card-basisprincipes-effectief-coachen {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

.main-feedback-geven-constructief {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-feedback-geven-constructief {
  background: #1a1a1a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-feedback-geven-constructief a {
  color: #888;
  text-decoration: none;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  transition: color 0.3s ease;
}

.breadcrumbs-feedback-geven-constructief a:hover {
  color: #0d9488;
}

.breadcrumb-separator-feedback-geven-constructief {
  color: #666;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumb-current-feedback-geven-constructief {
  color: #999;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

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

.hero-text-block-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-feedback-geven-constructief {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-feedback-geven-constructief {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.hero-meta-feedback-geven-constructief {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label-feedback-geven-constructief {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value-feedback-geven-constructief {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: #0d9488;
  font-weight: 600;
}

.hero-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

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

  .hero-text-block-feedback-geven-constructief,
  .hero-image-block-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-feedback-geven-constructief {
    gap: 1rem;
  }
}

.intro-section-feedback-geven-constructief {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4a5568;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-feedback-geven-constructief {
    flex-direction: column;
  }

  .intro-text-wrapper-feedback-geven-constructief,
  .intro-image-wrapper-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-feedback-geven-constructief {
  background: #f5f5f5;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.foundation-content-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundation-text-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-image-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.foundation-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4a5568;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

.principles-list-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.principle-item-feedback-geven-constructief {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.principle-number-feedback-geven-constructief {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #0d9488;
  font-weight: 700;
  min-width: 60px;
}

.principle-content-feedback-geven-constructief {
  flex: 1;
}

.principle-title-feedback-geven-constructief {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.principle-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4a5568;
  line-height: 1.6;
}

.foundation-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .foundation-content-feedback-geven-constructief {
    flex-direction: column;
  }

  .foundation-text-wrapper-feedback-geven-constructief,
  .foundation-image-wrapper-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.method-section-feedback-geven-constructief {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.method-content-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.method-text-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-image-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.method-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4a5568;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.method-quote-feedback-geven-constructief {
  border-left: 4px solid #0d9488;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 2vw, 2.5rem) 0;
  font-style: italic;
}

.quote-text-feedback-geven-constructief {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 0;
}

.method-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .method-content-feedback-geven-constructief {
    flex-direction: column;
  }

  .method-text-wrapper-feedback-geven-constructief,
  .method-image-wrapper-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.execution-section-feedback-geven-constructief {
  background: #f5f5f5;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.execution-content-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.execution-text-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.execution-image-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.execution-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.execution-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4a5568;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

.steps-list-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-item-feedback-geven-constructief {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-feedback-geven-constructief {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0d9488;
  font-weight: 800;
  min-width: 70px;
  line-height: 1;
}

.step-body-feedback-geven-constructief {
  flex: 1;
}

.step-title-feedback-geven-constructief {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4a5568;
  line-height: 1.6;
}

.execution-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .execution-content-feedback-geven-constructief {
    flex-direction: column;
  }

  .execution-text-wrapper-feedback-geven-constructief,
  .execution-image-wrapper-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-feedback-geven-constructief {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
}

.mistakes-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.mistakes-grid-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  justify-content: center;
}

.mistake-card-feedback-geven-constructief {
  flex: 1 1 calc(50% - 1.25rem);
  max-width: 500px;
  background: #f9f9f9;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-radius: clamp(8px, 1vw, 12px);
  border: 1px solid #e5e5e5;
}

.mistake-heading-feedback-geven-constructief {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mistake-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mistake-card-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.closing-section-feedback-geven-constructief {
  background: #1a1a1a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.closing-content-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.closing-text-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-image-wrapper-feedback-geven-constructief {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.closing-text-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #d1d5db;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.closing-image-feedback-geven-constructief {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .closing-content-feedback-geven-constructief {
    flex-direction: column;
  }

  .closing-text-wrapper-feedback-geven-constructief,
  .closing-image-wrapper-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-feedback-geven-constructief {
  background: #f0f4f8;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e0e7ff;
  border-bottom: 1px solid #e0e7ff;
}

.disclaimer-content-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
}

.disclaimer-title-feedback-geven-constructief {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-feedback-geven-constructief {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #4a5568;
  line-height: 1.7;
}

.related-section-feedback-geven-constructief {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-content-feedback-geven-constructief {
  display: flex;
  flex-direction: column;
}

.related-title-feedback-geven-constructief {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a1a1a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.related-cards-feedback-geven-constructief {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  justify-content: center;
}

.related-card-feedback-geven-constructief {
  flex: 1 1 calc(33.333% - 1.67rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: clamp(8px, 1vw, 12px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-feedback-geven-constructief:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-feedback-geven-constructief {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.related-card-img-feedback-geven-constructief {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-feedback-geven-constructief:hover .related-card-img-feedback-geven-constructief {
  transform: scale(1.05);
}

.related-card-body-feedback-geven-constructief {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-feedback-geven-constructief {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-feedback-geven-constructief {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #4a5568;
  line-height: 1.6;
}

.related-card-link-feedback-geven-constructief {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-feedback-geven-constructief:hover {
  color: #0f766e;
}

@media (max-width: 1024px) {
  .related-card-feedback-geven-constructief {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

@media (max-width: 768px) {
  .related-card-feedback-geven-constructief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-feedback-geven-constructief {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .step-number-feedback-geven-constructief {
    min-width: 50px;
  }

  .principle-number-feedback-geven-constructief {
    min-width: 50px;
  }
}

.main-ontwikkelingsdoelen-stellen {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #57534e;
}

.breadcrumbs-ontwikkelingsdoelen-stellen a {
  color: #0d9488;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-ontwikkelingsdoelen-stellen a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-ontwikkelingsdoelen-stellen span {
  color: #a8a29e;
}

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

.hero-text-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-ontwikkelingsdoelen-stellen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #57534e;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #57534e;
  margin-bottom: 0;
}

.meta-item-ontwikkelingsdoelen-stellen {
  color: #57534e;
}

.meta-separator-ontwikkelingsdoelen-stellen {
  color: #a8a29e;
}

.hero-image-ontwikkelingsdoelen-stellen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
  display: block;
  object-fit: cover;
}

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

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

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

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

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

.intro-text-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-ontwikkelingsdoelen-stellen:last-child {
  margin-bottom: 0;
}

.intro-image-ontwikkelingsdoelen-stellen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
  display: block;
  object-fit: cover;
}

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

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

.smart-section-ontwikkelingsdoelen-stellen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.smart-content-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.smart-text-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.smart-image-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.smart-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.smart-paragraph-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.smart-list-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.smart-item-ontwikkelingsdoelen-stellen {
  background: rgba(13, 148, 136, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
}

.smart-item-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.smart-item-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0;
}

.smart-image-ontwikkelingsdoelen-stellen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .smart-content-ontwikkelingsdoelen-stellen {
    flex-direction: column;
    align-items: center;
  }

  .smart-text-block-ontwikkelingsdoelen-stellen,
  .smart-image-block-ontwikkelingsdoelen-stellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.process-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.5rem;
}

.process-intro-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.process-steps-wrapper-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.process-step-block-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #fffbeb;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.process-step-number-ontwikkelingsdoelen-stellen {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  flex-shrink: 0;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.process-step-content-ontwikkelingsdoelen-stellen {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0;
}

.process-step-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0;
}

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

  .process-step-number-ontwikkelingsdoelen-stellen {
    align-self: flex-start;
  }
}

.techniques-section-ontwikkelingsdoelen-stellen {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.techniques-text-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-intro-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.technique-card-ontwikkelingsdoelen-stellen {
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.technique-card-ontwikkelingsdoelen-stellen:last-child {
  margin-bottom: 0;
}

.technique-heading-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.technique-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.65;
  margin-bottom: 0;
}

.techniques-image-ontwikkelingsdoelen-stellen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
  display: block;
  object-fit: cover;
}

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

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

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

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

.challenges-content-ontwikkelingsdoelen-stellen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.challenges-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.5rem;
}

.challenges-intro-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.challenge-item-ontwikkelingsdoelen-stellen {
  background: #fef3c7;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
}

.challenge-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.challenge-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.65;
  margin-bottom: 0;
}

.quote-section-ontwikkelingsdoelen-stellen {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-ontwikkelingsdoelen-stellen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid #0d9488;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.1);
}

.quote-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #1c1917;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.quote-author-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  display: block;
  font-style: normal;
}

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

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

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

.conclusion-text-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-block-ontwikkelingsdoelen-stellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-ontwikkelingsdoelen-stellen:last-of-type {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-cta-box-ontwikkelingsdoelen-stellen {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  text-align: center;
}

.cta-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 0;
}

.conclusion-image-ontwikkelingsdoelen-stellen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conclusion-content-ontwikkelingsdoelen-stellen {
    flex-direction: column;
  }

  .conclusion-text-block-ontwikkelingsdoelen-stellen,
  .conclusion-image-block-ontwikkelingsdoelen-stellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-ontwikkelingsdoelen-stellen {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-header-ontwikkelingsdoelen-stellen {
  text-align: center;
}

.related-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.6;
}

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

.related-card-ontwikkelingsdoelen-stellen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.08);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-ontwikkelingsdoelen-stellen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(28, 25, 23, 0.15);
}

.related-card-image-ontwikkelingsdoelen-stellen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-img-ontwikkelingsdoelen-stellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-ontwikkelingsdoelen-stellen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

.related-card-description-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
}

.related-card-link-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms ease;
  align-self: flex-start;
}

.related-card-link-ontwikkelingsdoelen-stellen:hover {
  color: #0f766e;
  text-decoration: underline;
}

.disclaimer-section-ontwikkelingsdoelen-stellen {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-ontwikkelingsdoelen-stellen {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
}

.disclaimer-title-ontwikkelingsdoelen-stellen {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-ontwikkelingsdoelen-stellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .related-cards-wrapper-ontwikkelingsdoelen-stellen {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-ontwikkelingsdoelen-stellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .breadcrumbs-ontwikkelingsdoelen-stellen {
    font-size: 0.75rem;
  }

  .hero-content-ontwikkelingsdoelen-stellen,
  .intro-content-ontwikkelingsdoelen-stellen,
  .smart-content-ontwikkelingsdoelen-stellen,
  .techniques-content-ontwikkelingsdoelen-stellen,
  .conclusion-content-ontwikkelingsdoelen-stellen {
    gap: 1.5rem;
  }

  .process-step-block-ontwikkelingsdoelen-stellen {
    gap: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

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

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

.mentorship-foundation-about {
  background: #0a0f1e;
  color: #ffffff;
  font-family: var(--font-primary);
}

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

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

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

.hero-intro-header-about {
  text-align: center;
  max-width: 900px;
}

.hero-intro-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-tight);
}

.hero-intro-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

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

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  text-align: center;
}

.hero-image-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

.expertise-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-tight);
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.expertise-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.08);
}

.expertise-card-icon-about {
  font-size: 2.5rem;
  color: #14b8a6;
  margin-bottom: 1rem;
}

.expertise-card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.expertise-card-text-about {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-tight);
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-about {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

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

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

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

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

.philosophy-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
}

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

.philosophy-image-about {
  flex: 1 1 45%;
  min-width: 280px;
  max-height: 450px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-tight);
}

.philosophy-body-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.philosophy-body-about p {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #cbd5e1;
}

.philosophy-body-about p:last-child {
  margin-bottom: 0;
}

.value-highlight-about {
  background: rgba(20, 184, 166, 0.12);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.value-highlight-title-about {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.value-highlight-text-about {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
}

.featured-quote-about {
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid #14b8a6;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: clamp(2rem, 3vw, 2.5rem) 0;
  max-width: 700px;
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #ffffff;
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-style: normal;
}

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

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

.journey-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.journey-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: var(--letter-spacing-tight);
}

.journey-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.journey-blocks-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.journey-block-about {
  flex: 1 1 260px;
  max-width: 320px;
  background: rgba(20, 184, 166, 0.08);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.journey-block-year-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #14b8a6;
  margin-bottom: 0.75rem;
}

.journey-block-title-about {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.journey-block-text-about {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-about {
  background: #0d1526;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 184, 166, 0.15);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #14b8a6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

.disclaimer-text-about p {
  margin: 0;
  color: #cbd5e1;
}

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

  .expertise-cards-about {
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }

  .expertise-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-step-about {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .philosophy-split-about {
    flex-direction: column;
  }

  .philosophy-text-about,
  .philosophy-image-about {
    flex: 1 1 100%;
  }

  .philosophy-image-about {
    max-height: 350px;
  }

  .journey-blocks-about {
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }

  .journey-block-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 45%;
  }

  .journey-block-about {
    flex: 1 1 30%;
  }
}

@media (min-width: 1025px) {
  .expertise-card-about {
    flex: 1 1 30%;
  }

  .journey-block-about {
    flex: 1 1 auto;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .portfolio-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.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(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-card__tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
}

.portfolio-card__year {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 900px;
  margin: 0 auto;
}

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

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-light);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: var(--letter-spacing-wide);
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.faq-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-content__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #e7e5e4;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-card);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  transition: background-color var(--transition-fast);
}

.faq-item__trigger:hover {
  background-color: var(--color-bg-secondary);
}

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

.faq-item__question {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  text-align: left;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: var(--color-bg-light);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.faq-item__answer p {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  letter-spacing: var(--letter-spacing-normal);
}

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  color: var(--color-bg-tertiary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.faq-cta__text {
  font-family: var(--font-primary);
  color: var(--color-bg-tertiary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: var(--letter-spacing-normal);
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1rem);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
}

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

.faq-cta__button:focus {
  outline: 2px solid var(--color-bg-tertiary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-item.active .faq-item__answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.docs-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.docs-portal main {
  width: 100%;
}

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

.docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.docs-portal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.docs-portal .last-updated {
  font-size: clamp(0.85rem, 0.9vw, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.docs-portal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.docs-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.docs-portal ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.docs-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

.docs-portal .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
}

.docs-portal .contact-section h2 {
  margin-top: 0;
}

.docs-portal .contact-info {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.docs-portal .contact-info strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .docs-content {
    padding: var(--space-4xl) 0;
  }

  .docs-portal .contact-section {
    padding: var(--space-xl);
  }
}

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

  .docs-content {
    padding: var(--space-4xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.6s ease-out;
}

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

.success-icon {
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out 0.2s both;
}

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

.success-icon svg {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
}

.thank-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
}

.lead-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-normal);
}

.description-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.next-steps-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  letter-spacing: var(--letter-spacing-normal);
}

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

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-4xl) var(--space-3xl);
  }

  .thank-wrapper h1 {
    margin-bottom: var(--space-lg);
  }

  .lead-text {
    margin-bottom: var(--space-lg);
  }

  .description-text {
    margin-bottom: var(--space-lg);
  }

  .next-steps-text {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-xl);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .success-icon {
    animation: none;
  }

  .btn-primary {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: var(--letter-spacing-tight);
  text-shadow: 
    2px 2px 0 var(--color-secondary-light),
    4px 4px 0 var(--color-primary-light),
    6px 6px 20px rgba(13, 148, 136, 0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  animation: pulse 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.error-message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: slideUp 0.6s ease-out 0.2s both;
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-content-block {
  width: 100%;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  margin: var(--space-md) 0;
  border-left: 4px solid var(--color-primary);
}

.error-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-md);
}

.error-suggestions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.error-suggestions li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
}

.error-suggestions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.error-suggestions li:hover {
  color: var(--color-text-primary);
  padding-left: calc(var(--space-lg) + 4px);
}

.error-suggestions li:hover::before {
  background-color: var(--color-secondary);
  transform: scale(1.3);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-top: var(--space-lg);
}

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

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }
  
  .error-wrapper {
    gap: var(--space-2xl);
  }
  
  .error-visual {
    margin-bottom: var(--space-2xl);
  }
  
  .error-content-block {
    padding: var(--space-xl);
  }
  
  .error-suggestions li {
    text-align: center;
    padding-left: 0;
  }
  
  .error-suggestions li::before {
    display: none;
  }
  
  .error-suggestions li:hover {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-code-container {
    max-width: 400px;
  }
  
  .error-decoration {
    width: 280px;
    height: 280px;
  }
  
  .error-message {
    gap: var(--space-lg);
  }
  
  .error-content-block {
    padding: var(--space-xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) 0;
    min-height: 100vh;
  }
  
  .error-wrapper {
    gap: var(--space-4xl);
  }
  
  .error-code-container {
    max-width: 500px;
  }
  
  .error-decoration {
    width: 350px;
    height: 350px;
  }
  
  .btn {
    padding: var(--space-md) calc(var(--space-xl) * 1.5);
    margin-top: var(--space-2xl);
  }
}

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

.contact-feedback-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-feedback-hero {
  background-color: var(--color-bg-tertiary);
  padding: 3rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-text-light);
}

.contact-feedback-hero-content {
  text-align: center;
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: 5rem 0;
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-feedback-main-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .contact-feedback-grid {
    gap: 2.5rem;
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 4rem 0;
  }

  .contact-feedback-grid {
    gap: 3.5rem;
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 48%;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 48%;
  }
}

.contact-feedback-form-header {
  margin-bottom: 2rem;
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-feedback-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
}

.contact-feedback-input,
.contact-feedback-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-normal);
  transition: all var(--transition-base);
}

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

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

.contact-feedback-input:hover,
.contact-feedback-textarea:hover {
  border-color: var(--color-secondary);
}

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

.contact-feedback-form-privacy {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-feedback-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-feedback-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.contact-feedback-submit:active {
  transform: translateY(0);
}

.contact-feedback-info-header {
  margin-bottom: 2rem;
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-feedback-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-feedback-info-item {
  display: flex;
  gap: 1.25rem;
}

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

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-feedback-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  margin-bottom: 0.25rem;
  line-height: var(--line-height-normal);
}

.contact-feedback-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-feedback-info-link:hover {
  color: var(--color-primary-hover);
}

.contact-feedback-info-hours {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.9rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
  font-style: italic;
}

.contact-feedback-cta {
  padding: 1.75rem;
  background-color: var(--color-secondary-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-feedback-cta-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-feedback-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-feedback-services {
  background-color: var(--color-bg-tertiary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-text-light);
}

.contact-feedback-services-content {
  width: 100%;
}

.contact-feedback-services-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-feedback-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

.contact-feedback-service-card {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.contact-feedback-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-feedback-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-feedback-service-name {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-feedback-service-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: 4rem 0;
  }

  .contact-feedback-services {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-services {
    padding: 5rem 0;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}