
    @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: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #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;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --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);
  
  
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-toast: 1100;
  --z-tooltip: 1200;
}

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

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

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

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

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

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

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

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

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

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

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

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

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

em, i {
  font-style: italic;
}

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

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

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid transparent;
  padding: calc(var(--space-sm) - 2px) var(--space-lg);
}

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.card-body {
  margin-bottom: var(--space-md);
}

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.badge-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden { display: none !important; }
.visible { display: block !important; }

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

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

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

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

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

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

.animate-fadeIn {
  animation: fadeIn var(--transition-base) ease-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;
}

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

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

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

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

@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .btn {
    width: 100%;
  }
  
  input,
  textarea,
  select {
    width: 100%;
  }
}

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none !important;
  }
}
.header-loopbaan-deck {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: 50;
  width: 100%;
}

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

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

.header-loopbaan-deck-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-loopbaan-deck-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-loopbaan-deck-nav-link:hover {
  color: var(--color-primary);
}

.header-loopbaan-deck-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, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-loopbaan-deck-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-loopbaan-deck-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
  z-index: 51;
}

.header-loopbaan-deck-mobile-toggle:hover {
  color: var(--color-primary);
}

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

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

.header-loopbaan-deck-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.header-loopbaan-deck-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.header-loopbaan-deck-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-loopbaan-deck-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: background var(--transition-base), color var(--transition-base);
}

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

.header-loopbaan-deck-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base);
}

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

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

  .header-loopbaan-deck-cta-button {
    display: inline-block;
  }

  .header-loopbaan-deck-mobile-toggle {
    display: none;
  }

  .header-loopbaan-deck-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-loopbaan-deck-container {
    height: 60px;
  }

  .header-loopbaan-deck-logo-text {
    display: none;
  }

  .header-loopbaan-deck-logo-img {
    width: 36px;
    height: 36px;
  }
}

    .roadmap-portal {
  width: 100%;
}

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

.roadmap-portal p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.hero-title-index {
  color: #1e293b;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1.2;
}

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

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

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

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

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

  .hero-buttons-index .btn {
    width: 100%;
  }
}

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

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

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

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

.how-it-works-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.how-it-works-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-base);
}

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

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

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

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

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

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

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

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

.benefits-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.benefits-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.benefit-card-index:hover {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon-index {
  font-size: 2.25rem;
  color: #2563eb;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card-text-index {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

.partners-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.partners-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.partners-logos-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  align-items: center;
}

.partner-logo-index {
  flex: 1 1 150px;
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  background: #ffffff;
  transition: all var(--transition-base);
}

.partner-logo-index:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #dbeafe;
}

.partners-quote-index {
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

.quote-text-index {
  color: #1e293b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-index {
  color: #64748b;
  font-size: 0.9375rem;
  font-style: normal;
  display: block;
}

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

  .partner-logo-index {
    flex: 1 1 100%;
  }
}

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

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

.faq-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.faq-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
  transition: all var(--transition-base);
}

.faq-item-index:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.faq-question-index {
  color: #1e293b;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
  .faq-items-index {
    max-width: 100%;
  }
}

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

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

.statistics-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.statistics-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.stat-card-index {
  flex: 1 1 240px;
  max-width: 300px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card-index:hover {
  border-color: #2563eb;
  box-shadow: var(--shadow-lg);
}

.stat-number-large-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-description-index {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

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

.about-image-block {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.about-description-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-description-index:last-of-type {
  margin-bottom: 0;
}

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

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

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

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

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

.blog-preview-title-index {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.blog-preview-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

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

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

.featured-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.card-body-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

.card-text-index {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-cta-index {
  text-align: center;
}

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

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

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

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-index .btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-box-index {
    padding: 2rem 1.5rem;
  }
}

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

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

.cookie-banner-text {
  color: #f1f5f9;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
  line-height: 1.6;
}

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

.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: #1d4ed8;
}

.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

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

@media (max-width: 480px) {
  .cookie-banner {
    padding: 1rem;
  }

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

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

    .footer {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: #cbd5e1;
  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, 3rem);
}

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

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

.footer-about p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-legal a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.footer-contact {
  max-width: 400px;
}

.footer-contact p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-copyright p {
  color: #94a3b8;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

  .footer-contact {
    flex: 0 1 260px;
  }

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: clamp(2rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 4vw, 2.5rem);
  }
}

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

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-nav {
    flex: 0 1 220px;
  }

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

  .footer-legal {
    flex: 0 1 220px;
  }
}

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

  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    width: 100%;
    max-width: none;
  }
}
    

.category-page-professional-development-roadmap {
  background: #0a0f1e;
  color: #ffffff;
}

.hero-section-professional-development-roadmap {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-header-professional-development-roadmap {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-professional-development-roadmap {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-professional-development-roadmap {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 600px;
}

.hero-intro-professional-development-roadmap {
  background: rgba(15, 23, 42, 0.6);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.hero-text-professional-development-roadmap {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

.posts-section-professional-development-roadmap {
  background: #111d2f;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-professional-development-roadmap {
  text-align: center;
}

.posts-title-professional-development-roadmap {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-professional-development-roadmap {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
}

.posts-grid-professional-development-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-professional-development-roadmap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 320px;
  max-width: 400px;
  background: #0d1526;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
  padding: 0;
}

.card-professional-development-roadmap:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-title-professional-development-roadmap {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  line-height: 1.3;
  margin: 0;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}

.card-description-professional-development-roadmap {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding: 0 1.5rem;
}

.card-meta-professional-development-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1.5rem;
  font-size: 0.85rem;
}

.card-reading-time-professional-development-roadmap,
.card-level-professional-development-roadmap,
.card-date-professional-development-roadmap {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-professional-development-roadmap i,
.card-level-professional-development-roadmap i,
.card-date-professional-development-roadmap i {
  color: #f59e0b;
}

.card-link-professional-development-roadmap {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  padding: 0 1.5rem 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.card-link-professional-development-roadmap:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.insights-section-professional-development-roadmap {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-professional-development-roadmap {
  text-align: center;
}

.insights-title-professional-development-roadmap {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin: 0;
}

.insights-steps-professional-development-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.insights-step-professional-development-roadmap {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number-professional-development-roadmap {
  width: 60px;
  height: 60px;
  background: #f59e0b;
  color: #0a0f1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.step-title-professional-development-roadmap {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.step-text-professional-development-roadmap {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.resources-section-professional-development-roadmap {
  background: #111d2f;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.resources-header-professional-development-roadmap {
  text-align: center;
  margin-bottom: 1rem;
}

.resources-title-professional-development-roadmap {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.resources-subtitle-professional-development-roadmap {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
}

.resources-faq-professional-development-roadmap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-professional-development-roadmap {
  background: #0d1526;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question-professional-development-roadmap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.125rem);
  transition: all 0.3s ease;
}

.faq-question-professional-development-roadmap:hover {
  background: rgba(245, 158, 11, 0.05);
  color: #fbbf24;
}

.faq-item-professional-development-roadmap details[open] .faq-question-professional-development-roadmap {
  background: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
}

.faq-answer-professional-development-roadmap {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.faq-item-professional-development-roadmap summary {
  list-style: none;
}

.faq-item-professional-development-roadmap summary::-webkit-details-marker {
  display: none;
}

.faq-question-professional-development-roadmap::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #f59e0b;
}

.faq-item-professional-development-roadmap details[open] .faq-question-professional-development-roadmap::after {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hero-section-professional-development-roadmap {
    padding: 3rem 0;
  }

  .posts-section-professional-development-roadmap {
    padding: 3rem 0;
  }

  .insights-section-professional-development-roadmap {
    padding: 3rem 0;
  }

  .resources-section-professional-development-roadmap {
    padding: 3rem 0;
  }

  .card-professional-development-roadmap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-steps-professional-development-roadmap {
    flex-direction: column;
  }

  .insights-step-professional-development-roadmap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resources-faq-professional-development-roadmap {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-professional-development-roadmap {
    font-size: 1.5rem;
  }

  .posts-title-professional-development-roadmap,
  .insights-title-professional-development-roadmap,
  .resources-title-professional-development-roadmap {
    font-size: 1.5rem;
  }

  .card-title-professional-development-roadmap {
    font-size: 1.125rem;
  }

  .card-professional-development-roadmap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-professional-development-roadmap {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .faq-question-professional-development-roadmap {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer-professional-development-roadmap {
    padding: 0 1.25rem 1.25rem;
  }
}

.main-eerste-loopbaankaart-opzetten {
  width: 100%;
  background: #ffffff;
}

.hero-section-eerste-loopbaankaart-opzetten {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-eerste-loopbaankaart-opzetten a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-eerste-loopbaankaart-opzetten a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-eerste-loopbaankaart-opzetten span {
  color: #64748b;
}

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

.hero-text-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-lead-eerste-loopbaankaart-opzetten {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-eerste-loopbaankaart-opzetten {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-eerste-loopbaankaart-opzetten {
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-divider-eerste-loopbaankaart-opzetten {
  color: #475569;
}

.hero-image-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

  .hero-title-eerste-loopbaankaart-opzetten {
    font-size: 1.75rem;
  }
}

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

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

.intro-text-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-eerste-loopbaankaart-opzetten {
  color: #334155;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.process-section-eerste-loopbaankaart-opzetten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.process-header-eerste-loopbaankaart-opzetten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.process-subtitle-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.steps-container-eerste-loopbaankaart-opzetten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-card-eerste-loopbaankaart-opzetten {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card-eerste-loopbaankaart-opzetten:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-number-eerste-loopbaankaart-opzetten {
  color: #2563eb;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: clamp(3rem, 6vw, 4rem);
}

.step-content-eerste-loopbaankaart-opzetten {
  flex: 1;
}

.step-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 600;
}

.step-text-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .step-card-eerste-loopbaankaart-opzetten {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-eerste-loopbaankaart-opzetten {
    min-width: auto;
  }
}

.framework-section-eerste-loopbaankaart-opzetten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.framework-wrapper-eerste-loopbaankaart-opzetten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.framework-text-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.framework-intro-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.framework-details-eerste-loopbaankaart-opzetten {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.detail-item-eerste-loopbaankaart-opzetten {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
}

.detail-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-text-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.framework-image-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-img-eerste-loopbaankaart-opzetten {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .framework-wrapper-eerste-loopbaankaart-opzetten {
    flex-direction: column;
  }

  .framework-text-eerste-loopbaankaart-opzetten,
  .framework-image-eerste-loopbaankaart-opzetten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-eerste-loopbaankaart-opzetten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implementation-wrapper-eerste-loopbaankaart-opzetten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-eerste-loopbaankaart-opzetten {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-eerste-loopbaankaart-opzetten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-intro-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.implementation-list-eerste-loopbaankaart-opzetten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  padding-left: 0;
  margin: 0;
}

.list-strong-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .implementation-wrapper-eerste-loopbaankaart-opzetten {
    flex-direction: column-reverse;
  }

  .implementation-image-eerste-loopbaankaart-opzetten,
  .implementation-text-eerste-loopbaankaart-opzetten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-eerste-loopbaankaart-opzetten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-header-eerste-loopbaankaart-opzetten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.tips-subtitle-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

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

.tip-card-eerste-loopbaankaart-opzetten {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.tip-card-eerste-loopbaankaart-opzetten:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tip-icon-eerste-loopbaankaart-opzetten {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 4vw, 4rem);
  height: clamp(3rem, 4vw, 4rem);
  background: #dbeafe;
  border-radius: 50%;
  color: #2563eb;
  font-size: clamp(1.5rem, 2vw, 2rem);
  flex-shrink: 0;
}

.tip-card-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.tip-card-text-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tip-card-eerste-loopbaankaart-opzetten {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .tip-card-eerste-loopbaankaart-opzetten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-eerste-loopbaankaart-opzetten {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-eerste-loopbaankaart-opzetten {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-eerste-loopbaankaart-opzetten {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-eerste-loopbaankaart-opzetten {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-eerste-loopbaankaart-opzetten {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.conclusion-cta-text-eerste-loopbaankaart-opzetten {
  color: #93c5fd;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-eerste-loopbaankaart-opzetten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.related-subtitle-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

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

.related-card-eerste-loopbaankaart-opzetten {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-eerste-loopbaankaart-opzetten:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.related-image-eerste-loopbaankaart-opzetten {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-eerste-loopbaankaart-opzetten {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

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

.related-card-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-eerste-loopbaankaart-opzetten {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-eerste-loopbaankaart-opzetten:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

.disclaimer-section-eerste-loopbaankaart-opzetten {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-eerste-loopbaankaart-opzetten {
  max-width: 750px;
  margin: 0 auto;
}

.disclaimer-title-eerste-loopbaankaart-opzetten {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-eerste-loopbaankaart-opzetten {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-eerste-loopbaankaart-opzetten {
    padding: 2rem 0;
  }

  .intro-section-eerste-loopbaankaart-opzetten,
  .process-section-eerste-loopbaankaart-opzetten,
  .framework-section-eerste-loopbaankaart-opzetten,
  .implementation-section-eerste-loopbaankaart-opzetten,
  .tips-section-eerste-loopbaankaart-opzetten,
  .conclusion-section-eerste-loopbaankaart-opzetten,
  .related-section-eerste-loopbaankaart-opzetten,
  .disclaimer-section-eerste-loopbaankaart-opzetten {
    padding: 2rem 0;
  }
}

.main-vaardigheden-identificeren {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
}

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

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

.breadcrumbs-vaardigheden-identificeren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

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

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

.breadcrumbs-vaardigheden-identificeren span {
  color: #94a3b8;
}

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

.hero-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-vaardigheden-identificeren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-vaardigheden-identificeren {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-meta-vaardigheden-identificeren {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-vaardigheden-identificeren {
  color: #94a3b8;
}

.meta-divider-vaardigheden-identificeren {
  color: #cbd5e1;
}

.hero-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .hero-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-vaardigheden-identificeren {
    padding: 2rem 0;
  }
}

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

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

.intro-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-paragraph-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.skills-content-vaardigheden-identificeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.skills-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.skills-paragraph-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.skills-list-vaardigheden-identificeren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item-vaardigheden-identificeren {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skill-name-vaardigheden-identificeren {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.skill-description-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.skills-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .skills-content-vaardigheden-identificeren {
    flex-direction: column;
    gap: 2rem;
  }

  .skills-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .skills-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.assessment-content-vaardigheden-identificeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.assessment-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.assessment-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assessment-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.assessment-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.assessment-paragraph-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.steps-list-vaardigheden-identificeren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-vaardigheden-identificeren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.step-content-vaardigheden-identificeren {
  flex: 1;
}

.step-title-vaardigheden-identificeren {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .assessment-content-vaardigheden-identificeren {
    flex-direction: column;
    gap: 2rem;
  }

  .assessment-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
    order: 1;
  }

  .assessment-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-vaardigheden-identificeren {
    gap: 1rem;
  }

  .step-number-vaardigheden-identificeren {
    min-width: 50px;
  }
}

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

.tools-content-vaardigheden-identificeren {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tools-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
}

.tools-intro-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.tool-card-vaardigheden-identificeren {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-vaardigheden-identificeren:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tool-name-vaardigheden-identificeren {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tool-description-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .tool-card-vaardigheden-identificeren {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .tool-card-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-grid-vaardigheden-identificeren {
    gap: 1.5rem;
  }
}

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

.reality-content-vaardigheden-identificeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reality-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reality-intro-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.example-box-vaardigheden-identificeren {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2563eb;
}

.example-title-vaardigheden-identificeren {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.example-text-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-text-vaardigheden-identificeren:last-child {
  margin-bottom: 0;
}

.reality-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .reality-content-vaardigheden-identificeren {
    flex-direction: column;
    gap: 2rem;
  }

  .reality-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .reality-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-text-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-list-vaardigheden-identificeren {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.conclusion-item-vaardigheden-identificeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.conclusion-item-vaardigheden-identificeren:before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.conclusion-image-vaardigheden-identificeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-vaardigheden-identificeren {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .conclusion-content-vaardigheden-identificeren {
    flex-direction: column;
    gap: 2rem;
  }

  .conclusion-text-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-image-vaardigheden-identificeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-vaardigheden-identificeren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-title-vaardigheden-identificeren {
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.disclaimer-text-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.8;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #94a3b8;
}

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

.related-content-vaardigheden-identificeren {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-vaardigheden-identificeren {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
}

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

.related-card-vaardigheden-identificeren {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-vaardigheden-identificeren:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-image-vaardigheden-identificeren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-img-vaardigheden-identificeren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-vaardigheden-identificeren {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-vaardigheden-identificeren {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
}

.related-card-text-vaardigheden-identificeren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-link-vaardigheden-identificeren {
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-vaardigheden-identificeren:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-vaardigheden-identificeren {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 100%;
  }
}

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

  .related-grid-vaardigheden-identificeren {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-vaardigheden-identificeren {
    font-size: 1.5rem;
  }

  .skills-title-vaardigheden-identificeren,
  .assessment-title-vaardigheden-identificeren,
  .tools-title-vaardigheden-identificeren,
  .reality-title-vaardigheden-identificeren,
  .conclusion-title-vaardigheden-identificeren,
  .related-title-vaardigheden-identificeren {
    font-size: 1.25rem;
  }

  .step-number-vaardigheden-identificeren {
    font-size: 1.25rem;
    min-width: 45px;
  }

  .breadcrumbs-vaardigheden-identificeren {
    font-size: 0.7rem;
  }
}

.main-doelen-stellen-smart {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

.hero-section-doelen-stellen-smart .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-doelen-stellen-smart {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.breadcrumbs-doelen-stellen-smart a {
  color: #93c5fd;
  transition: color var(--transition-base);
}

.breadcrumbs-doelen-stellen-smart a:hover {
  color: #ffffff;
}

.breadcrumbs-doelen-stellen-smart span {
  color: #64748b;
}

.breadcrumbs-doelen-stellen-smart span:last-child {
  color: #e2e8f0;
  font-weight: 500;
}

.hero-content-doelen-stellen-smart {
  flex: 1;
}

.hero-title-doelen-stellen-smart {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-doelen-stellen-smart {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  max-width: 600px;
}

.hero-meta-doelen-stellen-smart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-doelen-stellen-smart {
  display: inline-flex;
  align-items: center;
}

.meta-divider-doelen-stellen-smart {
  color: #475569;
}

.hero-image-doelen-stellen-smart {
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-doelen-stellen-smart {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-section-doelen-stellen-smart .container {
    flex-direction: column;
  }
  
  .hero-image-doelen-stellen-smart {
    min-height: 250px;
  }
}

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

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

.intro-text-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.intro-paragraph-doelen-stellen-smart {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-img-doelen-stellen-smart {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .intro-wrapper-doelen-stellen-smart {
    flex-direction: column;
  }
  
  .intro-text-doelen-stellen-smart,
  .intro-image-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.framework-header-doelen-stellen-smart {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.framework-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.framework-subtitle-doelen-stellen-smart {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.framework-wrapper-doelen-stellen-smart {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.framework-text-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-paragraph-doelen-stellen-smart {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.framework-subhead-doelen-stellen-smart {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.framework-image-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.framework-img-doelen-stellen-smart {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .framework-wrapper-doelen-stellen-smart {
    flex-direction: column;
  }
  
  .framework-text-doelen-stellen-smart,
  .framework-image-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.breakdown-header-doelen-stellen-smart {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breakdown-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.breakdown-subtitle-doelen-stellen-smart {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breakdown-wrapper-doelen-stellen-smart {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.breakdown-image-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.breakdown-img-doelen-stellen-smart {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.breakdown-text-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-paragraph-doelen-stellen-smart {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.breakdown-subhead-doelen-stellen-smart {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .breakdown-wrapper-doelen-stellen-smart {
    flex-direction: column;
  }
  
  .breakdown-image-doelen-stellen-smart,
  .breakdown-text-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tracking-header-doelen-stellen-smart {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tracking-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.tracking-subtitle-doelen-stellen-smart {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.tracking-wrapper-doelen-stellen-smart {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tracking-text-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-paragraph-doelen-stellen-smart {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.tracking-image-doelen-stellen-smart {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tracking-img-doelen-stellen-smart {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .tracking-wrapper-doelen-stellen-smart {
    flex-direction: column;
  }
  
  .tracking-text-doelen-stellen-smart,
  .tracking-image-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.obstacles-header-doelen-stellen-smart {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.obstacles-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.obstacles-subtitle-doelen-stellen-smart {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.obstacles-cards-doelen-stellen-smart {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.obstacle-card-doelen-stellen-smart {
  flex: 1 1 calc(50% - 1rem);
  max-width: 450px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.obstacle-card-doelen-stellen-smart:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #2563eb;
}

.obstacle-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.obstacle-text-doelen-stellen-smart {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .obstacle-card-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-doelen-stellen-smart {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.conclusion-text-doelen-stellen-smart {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.conclusion-cta-doelen-stellen-smart {
  margin-top: var(--space-lg);
}

.conclusion-cta-doelen-stellen-smart .btn {
  display: inline-flex;
}

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

.related-header-doelen-stellen-smart {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: var(--space-md);
}

.related-subtitle-doelen-stellen-smart {
  color: #64748b;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.related-card-doelen-stellen-smart {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-doelen-stellen-smart:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #2563eb;
}

.related-image-doelen-stellen-smart {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-doelen-stellen-smart {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-doelen-stellen-smart {
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-card-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-text-doelen-stellen-smart {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-doelen-stellen-smart {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.related-link-doelen-stellen-smart:hover {
  color: #1d4ed8;
}

@media (max-width: 1024px) {
  .related-card-doelen-stellen-smart {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-doelen-stellen-smart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-doelen-stellen-smart {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-doelen-stellen-smart {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-doelen-stellen-smart {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.disclaimer-text-doelen-stellen-smart {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-doelen-stellen-smart {
    padding: var(--space-2xl) 0;
  }
  
  .disclaimer-content-doelen-stellen-smart {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-title-doelen-stellen-smart {
    font-size: 1.5rem;
  }
  
  .framework-title-doelen-stellen-smart,
  .breakdown-title-doelen-stellen-smart,
  .tracking-title-doelen-stellen-smart,
  .obstacles-title-doelen-stellen-smart,
  .conclusion-title-doelen-stellen-smart,
  .related-title-doelen-stellen-smart {
    font-size: 1.25rem;
  }
}

.main-mentorschap-vinden-gebruiken {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-mentorschap-vinden-gebruiken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #64748b;
}

.breadcrumbs-mentorschap-vinden-gebruiken a {
  color: #2563eb;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-mentorschap-vinden-gebruiken a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-mentorschap-vinden-gebruiken span {
  color: #cbd5e1;
}

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

.hero-text-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

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

.hero-meta-mentorschap-vinden-gebruiken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-item-mentorschap-vinden-gebruiken {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-divider-mentorschap-vinden-gebruiken {
  color: #cbd5e1;
}

.hero-image-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-mentorschap-vinden-gebruiken {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

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

  .hero-text-mentorschap-vinden-gebruiken,
  .hero-image-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-mentorschap-vinden-gebruiken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-mentorschap-vinden-gebruiken {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro-text-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-section-mentorschap-vinden-gebruiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-text-body-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-mentorschap-vinden-gebruiken {
  list-style: none;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  padding: 0;
}

.list-item-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.list-item-mentorschap-vinden-gebruiken:before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 600;
}

.content-img-mentorschap-vinden-gebruiken {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .content-wrapper-mentorschap-vinden-gebruiken {
    flex-direction: column;
  }

  .content-text-mentorschap-vinden-gebruiken,
  .content-image-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.approach-section-mentorschap-vinden-gebruiken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-wrapper-mentorschap-vinden-gebruiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.approach-image-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.approach-text-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.approach-img-mentorschap-vinden-gebruiken {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  min-height: 300px;
}

.approach-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.approach-text-body-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .approach-wrapper-mentorschap-vinden-gebruiken {
    flex-direction: column;
  }

  .approach-image-mentorschap-vinden-gebruiken,
  .approach-text-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.expectations-section-mentorschap-vinden-gebruiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expectations-content-mentorschap-vinden-gebruiken {
  max-width: 1100px;
  margin: 0 auto;
}

.expectations-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

.expectations-cards-mentorschap-vinden-gebruiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}

.expectation-card-mentorschap-vinden-gebruiken {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.card-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.card-list-mentorschap-vinden-gebruiken {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-item-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: 1.5rem;
  position: relative;
}

.card-item-mentorschap-vinden-gebruiken:before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .expectation-card-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
  }
}

.featured-quote-mentorschap-vinden-gebruiken {
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-text-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.quote-author-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

.using-section-mentorschap-vinden-gebruiken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.using-wrapper-mentorschap-vinden-gebruiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.using-text-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.using-image-mentorschap-vinden-gebruiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.using-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.using-text-body-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.using-img-mentorschap-vinden-gebruiken {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  min-height: 300px;
}

@media (max-width: 768px) {
  .using-wrapper-mentorschap-vinden-gebruiken {
    flex-direction: column;
  }

  .using-text-mentorschap-vinden-gebruiken,
  .using-image-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.growth-section-mentorschap-vinden-gebruiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.growth-content-mentorschap-vinden-gebruiken {
  max-width: 900px;
  margin: 0 auto;
}

.growth-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  line-height: 1.2;
}

.growth-intro-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.growth-list-mentorschap-vinden-gebruiken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.growth-item-mentorschap-vinden-gebruiken {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.growth-item-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 600;
}

.growth-item-text-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
}

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

.conclusion-content-mentorschap-vinden-gebruiken {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.cta-box-mentorschap-vinden-gebruiken {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-mentorschap-vinden-gebruiken {
  color: #ffffff;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

.cta-text-mentorschap-vinden-gebruiken {
  color: #f0f9ff;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
}

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

.related-content-mentorschap-vinden-gebruiken {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

.related-cards-mentorschap-vinden-gebruiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-mentorschap-vinden-gebruiken {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.related-card-mentorschap-vinden-gebruiken:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-mentorschap-vinden-gebruiken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-img-mentorschap-vinden-gebruiken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-mentorschap-vinden-gebruiken {
  color: #64748b;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.related-link-mentorschap-vinden-gebruiken {
  color: #2563eb;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 250ms ease;
  align-self: flex-start;
}

.related-link-mentorschap-vinden-gebruiken:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-mentorschap-vinden-gebruiken {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-mentorschap-vinden-gebruiken {
    flex: 1 1 100%;
  }
}

.disclaimer-section-mentorschap-vinden-gebruiken {
  background: #f0f9ff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}

.disclaimer-content-mentorschap-vinden-gebruiken {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-mentorschap-vinden-gebruiken {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.disclaimer-text-mentorschap-vinden-gebruiken {
  color: #475569;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-mentorschap-vinden-gebruiken,
  .intro-section-mentorschap-vinden-gebruiken,
  .content-section-mentorschap-vinden-gebruiken,
  .approach-section-mentorschap-vinden-gebruiken,
  .expectations-section-mentorschap-vinden-gebruiken,
  .using-section-mentorschap-vinden-gebruiken,
  .growth-section-mentorschap-vinden-gebruiken,
  .conclusion-section-mentorschap-vinden-gebruiken,
  .related-section-mentorschap-vinden-gebruiken,
  .disclaimer-section-mentorschap-vinden-gebruiken {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-section-mentorschap-vinden-gebruiken,
  .intro-section-mentorschap-vinden-gebruiken,
  .content-section-mentorschap-vinden-gebruiken,
  .approach-section-mentorschap-vinden-gebruiken,
  .expectations-section-mentorschap-vinden-gebruiken,
  .using-section-mentorschap-vinden-gebruiken,
  .growth-section-mentorschap-vinden-gebruiken,
  .conclusion-section-mentorschap-vinden-gebruiken,
  .related-section-mentorschap-vinden-gebruiken,
  .disclaimer-section-mentorschap-vinden-gebruiken {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}

html {
  scroll-behavior: smooth;
}

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

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

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

.professional-roadmap-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.hero-roadmap-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-roadmap-header-about {
  text-align: center;
}

.hero-title-about {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-subtitle-about {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  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 {
  color: #38bdf8;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.stat-label-about {
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.journey-roadmap-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title-about {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-about {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.journey-text-about {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.journey-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.approach-roadmap-about {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.approach-title-about {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

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

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

.step-number-about {
  color: #38bdf8;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  min-width: clamp(3.5rem, 8vw, 5rem);
  text-align: center;
}

.step-content-about {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-about {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-text-about {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

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

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expertise-title-about {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.expertise-card-about {
  flex: 1 1 clamp(250px, 30vw, 320px);
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title-about {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text-about {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.quote-roadmap-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-roadmap-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-about {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
}

.disclaimer-roadmap-about {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-roadmap-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
  min-width: 30px;
  margin-top: 0.2rem;
}

.disclaimer-title-about {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

.disclaimer-text-about {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1rem;
  }

  .stat-number-about {
    font-size: 1.5rem;
  }

  .stat-label-about {
    font-size: 0.65rem;
  }

  .process-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 3rem;
    font-size: 1.5rem;
  }

  .expertise-card-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  border-bottom: 2px solid var(--color-bg-tertiary);
  overflow: hidden;
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: 4rem var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.service-detail-item {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background-color: var(--color-bg-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-xl);
  }
}

.services-cta-content {
  display: flex;
  flex-direction: column;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
}

.services-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  box-shadow: var(--shadow-md);
}

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

.services-cta-button:active {
  transform: translateY(0);
}

.services-cta-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .services-cta-image {
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .services-cta-image {
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .services-cta-container {
    grid-template-columns: 1fr;
  }
  
  .services-cta-image {
    order: -1;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.portfolio-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 320px;
  }
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

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

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-cards-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: box-shadow var(--transition-base), transform 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: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.4;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  display: block;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: 2px solid var(--color-primary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --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);
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-toast: 1100;
  --z-tooltip: 1200;
}

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

.pathway-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  min-height: 100vh;
}

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

.pathway-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.pathway-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.pathway-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.pathway-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.pathway-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.pathway-docs-header {
  border-bottom: 2px solid var(--color-bg-tertiary);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.pathway-docs-header .update-date {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.pathway-docs-section {
  margin-bottom: var(--space-3xl);
}

.pathway-docs-section h2 {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
}

.contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.contact-section h2 {
  border-left: none;
  padding-left: 0;
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .pathway-docs-content {
    padding: var(--space-3xl) 0;
  }

  .contact-section {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

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

  .pathway-docs-content {
    padding: var(--space-3xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-2xl) var(--space-md);
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

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

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.5s ease-out;
}

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

.success-icon svg {
  width: 80px;
  height: 80px;
  display: block;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.5px;
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  letter-spacing: 0.3px;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0 0 var(--space-xl) 0;
  font-weight: 400;
}

.thank-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .thank-benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.benefit-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: var(--space-2xl) 0 var(--space-2xl) 0;
  font-weight: 400;
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
  margin-top: var(--space-lg);
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-2xl) 0;
  }

  .thank-title {
    margin-bottom: var(--space-md);
  }

  .thank-description {
    margin-bottom: var(--space-2xl);
  }

  .thank-next-steps {
    margin: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
  }

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

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

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

  .benefit-text {
    font-size: clamp(0.9rem, 0.95vw, 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper {
    animation: none;
  }

  .success-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.error-code-display {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.error-icon {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-2xl);
  color: var(--color-primary);
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

.error-icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
}

.error-content-wrapper {
  width: 100%;
}

.error-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.error-description {
  margin-bottom: var(--space-xl);
}

.error-description p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.error-roadmap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  transition: all var(--transition-base);
}

.roadmap-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.roadmap-icon {
  font-size: clamp(1.5rem, 3vw, 2rem);
  flex-shrink: 0;
}

.roadmap-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 500;
}

.error-actions {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

.error-footer {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
}

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

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .roadmap-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .roadmap-item:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-heading {
    margin-bottom: var(--space-md);
  }

  .error-subtitle {
    margin-bottom: var(--space-xl);
  }

  .error-description {
    margin-bottom: var(--space-2xl);
  }

  .error-roadmap {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0;
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .error-roadmap {
    margin-bottom: var(--space-3xl);
  }

  .btn {
    padding: var(--space-md) var(--space-xl);
  }
}

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

.contact-message-us {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-message-us-hero {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-message-us-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-message-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: 5rem 0;
  }
}

.contact-message-us-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: 2rem 0;
  overflow: hidden;
}

.contact-message-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.contact-message-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-message-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-message-us-main {
    padding: 3rem 0;
  }

  .contact-message-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-message-us-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-main {
    padding: 4rem 0;
  }

  .contact-message-us-grid {
    gap: 4rem;
  }
}

.contact-message-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-message-us-input,
.contact-message-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  background-color: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.contact-message-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-message-us-form-privacy {
  margin-top: 0.5rem;
}

.contact-message-us-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.85vw + 0.5rem, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-message-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.contact-message-us-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-message-us-info-card {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.contact-message-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.contact-message-us-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-message-us-info-item:last-child {
  margin-bottom: 0;
}

.contact-message-us-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.contact-message-us-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-message-us-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-message-us-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-message-us-cta-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-message-us-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-message-us-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-message-us-cta-highlight {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.contact-message-us-cta-response {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.85vw + 0.5rem, 0.95rem);
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .contact-message-us-info-card,
  .contact-message-us-cta-card {
    padding: 1.5rem;
  }

  .contact-message-us-form {
    gap: 1rem;
  }

  .contact-message-us-form-row {
    gap: 0.375rem;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 3rem;
  }
}
.header-loopbaan-deck-mobile-toggle[aria-expanded="true"]{
  display: none;
}  