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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(28, 25, 23, 0.03);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.1);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.2);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.25);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
  letter-spacing: -0.005em;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-ghost:hover {
  background: var(--color-bg-secondary);
  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;
}

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

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

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

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

.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-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

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

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

hr {
  border: none;
  height: 1px;
  background: #e7e5e4;
  margin: var(--space-lg) 0;
}

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

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

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

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

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

.animate-slide-in-up {
  animation: slideInUp var(--transition-base);
}

.animate-slide-in-down {
  animation: slideInDown var(--transition-base);
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.hide-mobile {
  display: none;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: block;
  }
  
  .show-mobile {
    display: none;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
}

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

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

::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}
.header-connect-hub {
  background: var(--color-bg-primary);
  border-bottom: 2px solid var(--color-secondary);
  position: relative;
  z-index: var(--z-sticky);
}

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

.header-connect-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-connect-hub-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-connect-hub-brand:hover .header-connect-hub-logo-text {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

.header-connect-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

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

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

.header-connect-hub-nav-link:hover:after {
  width: 100%;
}

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

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

.header-connect-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.header-connect-hub-mobile-toggle:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-connect-hub-mobile-toggle i {
  transition: transform var(--transition-fast);
}

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

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

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

.header-connect-hub-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  padding: 0;
}

.header-connect-hub-mobile-close:active {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-connect-hub-mobile-links {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  gap: 0.75rem;
  flex: 1;
  overflow-y: auto;
}

.header-connect-hub-mobile-link {
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.header-connect-hub-mobile-link:active,
.header-connect-hub-mobile-link:hover {
  background: var(--color-bg-secondary);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}

.header-connect-hub-mobile-cta {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
  display: block;
}

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

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

  .header-connect-hub-desktop-nav {
    display: flex;
  }

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

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

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

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

  .header-connect-hub-logo-text {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  }

  .header-connect-hub-nav-link {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  }
}

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

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #99f6e4;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.stat-card-index {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 150px;
  max-width: 180px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fbbf24;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-index {
  font-size: 0.875rem;
  color: #99f6e4;
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #ccfbf1;
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.faq-subtitle-index {
  font-size: 1rem;
  color: #57534e;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-item-index {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  box-shadow: 0 2px 4px rgba(28, 25, 23, 0.05);
}

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

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

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

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

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

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

.posts-subtitle-index {
  font-size: 1rem;
  color: #57534e;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px rgba(28, 25, 23, 0.15);
}

.post-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

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

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

.post-body-index {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.post-excerpt-index {
  font-size: 0.9rem;
  color: #57534e;
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.post-link-index {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.posts-footer-index {
  text-align: center;
  padding-top: 1rem;
}

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

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

.about-text-index {
  flex: 1 1 300px;
  min-width: 0;
}

.about-image-index {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.about-title-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-description-index {
  font-size: 0.95rem;
  color: #57534e;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit-item-index {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

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

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

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

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

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

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

.process-subtitle-index {
  font-size: 1rem;
  color: #57534e;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.process-step-index {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  gap: 1.5rem;
}

.step-number-index {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  flex-shrink: 0;
  line-height: 1;
}

.step-content-index {
  flex: 1;
}

.step-title-index {
  font-size: 1.125rem;
  color: #1c1917;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

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

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

.features-subtitle-index {
  font-size: 1rem;
  color: #99f6e4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-index:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.4);
}

.feature-icon-index {
  font-size: 2.5rem;
  color: #14b8a6;
  margin-bottom: 1rem;
}

.feature-title-index {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-text-index {
  font-size: 0.9rem;
  color: #99f6e4;
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

.testimonials-subtitle-index {
  font-size: 1rem;
  color: #57534e;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-quote-index {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.1);
  margin: 1rem 0;
}

.quote-text-index {
  font-size: 1.125rem;
  color: #1c1917;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-index {
  font-size: 0.95rem;
  color: #57534e;
  font-style: normal;
  font-weight: 600;
}

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

.testimonial-card-index {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(28, 25, 23, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-text-index {
  font-size: 0.95rem;
  color: #57534e;
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  font-size: 0.85rem;
  color: #0d9488;
  font-weight: 600;
  font-style: normal;
}

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

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-box-index {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cta-text-index {
  font-size: 1rem;
  color: #99f6e4;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-lg-index {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  flex: 1 1 250px;
  min-width: 200px;
  line-height: 1.5;
}

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

.cookie-btn-accept {
  padding: 0.625rem 1.5rem;
  background: #0d9488;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

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

.cookie-btn-decline {
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    align-items: center;
  }

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

  .about-content-index {
    flex-direction: column;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
  }

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

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

@media (max-width: 480px) {
  .hero-title-index {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }

  .stat-card-index {
    flex: 1 1 120px;
    padding: 1.5rem 1rem;
  }

  .stat-number-index {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .faq-item-index,
  .post-card-index,
  .feature-card-index {
    padding: 1.25rem;
  }

  .step-number-index {
    font-size: 2rem;
  }
}

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

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

.footer-content {
  display: block;
  width: 100%;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 600px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

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

.footer-nav {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.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 {
  display: block;
}

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

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

.footer-contact {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.footer-contact p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 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-legal {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

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

  .footer-about {
    flex: 1 1 300px;
    margin-bottom: 0;
  }

  .footer-nav {
    flex: 0 1 auto;
    margin-bottom: 0;
  }

  .footer-contact {
    flex: 0 1 auto;
    margin-bottom: 0;
  }

  .footer-legal {
    flex: 0 1 auto;
    margin-bottom: 0;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    padding-top: clamp(2rem, 4vw, 2.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    justify-content: space-between;
  }

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 0 1 150px;
  }
}
    

.category-page-networking-career-advancement {
  width: 100%;
}

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

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

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

.hero-header-networking-career-advancement {
  text-align: center;
}

.hero-title-networking-career-advancement {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
  color: #ffffff;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-networking-career-advancement {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ccfbf1;
  font-weight: 500;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

.hero-description-networking-career-advancement {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(8px);
}

.hero-text-networking-career-advancement {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #f0fdf4;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtext-networking-career-advancement {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #d1fae5;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.posts-content-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.posts-header-networking-career-advancement {
  text-align: center;
}

.posts-title-networking-career-advancement {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: #1c1917;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.posts-subtitle-networking-career-advancement {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.1);
  transition: all 0.3s ease;
}

.card-networking-career-advancement:hover {
  box-shadow: 0 10px 20px rgba(28, 25, 23, 0.15);
  transform: translateY(-6px);
}

.card-networking-career-advancement img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-title-networking-career-advancement {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #1c1917;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-description-networking-career-advancement {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #57534e;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.card-meta-networking-career-advancement {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1rem;
  border-top: 1px solid #e7e5e4;
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.9rem);
  color: #a8a29e;
  margin-bottom: 1rem;
}

.card-reading-time-networking-career-advancement,
.card-level-networking-career-advancement,
.card-date-networking-career-advancement {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #a8a29e;
}

.card-reading-time-networking-career-advancement i,
.card-level-networking-career-advancement i,
.card-date-networking-career-advancement i {
  color: #0d9488;
  font-size: 0.95em;
}

.card-link-networking-career-advancement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-link-networking-career-advancement:hover {
  color: #0f766e;
  transform: translateX(4px);
}

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

.insights-content-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.insights-header-networking-career-advancement {
  text-align: center;
}

.insights-title-networking-career-advancement {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: #1c1917;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.insights-subtitle-networking-career-advancement {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto;
}

.insights-quote-box-networking-career-advancement {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border-left: 5px solid #0d9488;
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(1rem, 2vw, 2rem) auto;
  max-width: 800px;
}

.insights-blockquote-networking-career-advancement {
  margin: 0;
  padding: 0;
}

.insights-quote-text-networking-career-advancement {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #1c1917;
  font-style: italic;
  line-height: 1.6;
  font-family: 'Lora', serif;
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-attribution-networking-career-advancement {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #57534e;
  font-weight: 600;
  margin-bottom: 0;
  text-align: right;
}

.insights-text-networking-career-advancement {
  max-width: 900px;
  margin: 0 auto;
}

.insights-paragraph-networking-career-advancement,
.insights-paragraph-secondary-networking-career-advancement {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.insights-paragraph-secondary-networking-career-advancement {
  margin-bottom: 0;
}

.foundations-section-networking-career-advancement {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-content-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.foundations-header-networking-career-advancement {
  text-align: center;
}

.foundations-title-networking-career-advancement {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: #1c1917;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.foundations-subtitle-networking-career-advancement {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.foundations-list-networking-career-advancement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.foundation-item-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 250px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.08);
  transition: all 0.3s ease;
}

.foundation-item-networking-career-advancement:hover {
  box-shadow: 0 8px 16px rgba(28, 25, 23, 0.12);
  transform: translateY(-4px);
}

.foundation-number-networking-career-advancement {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  font-family: 'Lora', serif;
}

.foundation-content-networking-career-advancement {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundation-title-networking-career-advancement {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #1c1917;
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.foundation-text-networking-career-advancement {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-title-networking-career-advancement {
    font-size: 2rem;
  }

  .hero-subtitle-networking-career-advancement {
    font-size: 1rem;
  }

  .posts-title-networking-career-advancement {
    font-size: 1.75rem;
  }

  .insights-title-networking-career-advancement {
    font-size: 1.75rem;
  }

  .foundations-title-networking-career-advancement {
    font-size: 1.75rem;
  }

  .card-networking-career-advancement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-item-networking-career-advancement {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .posts-grid-networking-career-advancement {
    gap: 1.5rem;
  }

  .foundations-list-networking-career-advancement {
    gap: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .card-networking-career-advancement {
    flex: 1 1 calc(50% - 1rem);
    max-width: 350px;
  }

  .foundation-item-networking-career-advancement {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .card-networking-career-advancement {
    flex: 1 1 280px;
    max-width: 380px;
  }

  .foundation-item-networking-career-advancement {
    flex: 1 1 calc(25% - 2.25rem);
    max-width: 320px;
  }

  .foundations-list-networking-career-advancement {
    gap: 3rem;
  }
}

.main-linkedin-profiel-netwerken {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.hero-meta-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.hero-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 24px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.15);
}

@media (max-width: 768px) {
  .hero-content-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .hero-text-linkedin-profiel-netwerken,
  .hero-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breadcrumbs-linkedin-profiel-netwerken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-linkedin-profiel-netwerken a {
  color: #0d9488;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.breadcrumbs-linkedin-profiel-netwerken a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-linkedin-profiel-netwerken span {
  color: #a8a29e;
}

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

.intro-content-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.intro-text-linkedin-profiel-netwerken {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-stats-linkedin-profiel-netwerken {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-card-linkedin-profiel-netwerken {
  background: #fffbeb;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: clamp(12px, 1.5vw, 16px);
  text-align: center;
  border-left: 4px solid #0d9488;
}

.stat-number-linkedin-profiel-netwerken {
  color: #0d9488;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.85rem, 1vw, 1rem);
  display: block;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro-content-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .intro-text-linkedin-profiel-netwerken,
  .intro-stats-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-one-section-linkedin-profiel-netwerken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-wrapper-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-one-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-one-list-linkedin-profiel-netwerken {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.content-one-list-linkedin-profiel-netwerken li {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.content-one-list-linkedin-profiel-netwerken li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 1.25rem;
}

.content-one-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

@media (max-width: 768px) {
  .content-one-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .content-one-text-linkedin-profiel-netwerken,
  .content-one-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.content-two-wrapper-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-two-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.content-two-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-two-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-two-quote-linkedin-profiel-netwerken {
  border-left: 4px solid #0d9488;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  font-style: italic;
}

.content-two-quote-linkedin-profiel-netwerken p {
  color: #1c1917;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .content-two-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .content-two-text-linkedin-profiel-netwerken,
  .content-two-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-two-image-linkedin-profiel-netwerken {
    order: 0;
  }
}

.content-three-section-linkedin-profiel-netwerken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-wrapper-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-three-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-three-highlight-linkedin-profiel-netwerken {
  background: #fef3c7;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 4px solid #f59e0b;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-text-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

.content-three-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

@media (max-width: 768px) {
  .content-three-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .content-three-text-linkedin-profiel-netwerken,
  .content-three-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-four-section-linkedin-profiel-netwerken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-four-wrapper-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-four-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-four-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.content-four-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-four-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-four-checklist-linkedin-profiel-netwerken {
  background: #fffbeb;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.checklist-item-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  padding: 0.5rem 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-four-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .content-four-text-linkedin-profiel-netwerken,
  .content-four-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-four-image-linkedin-profiel-netwerken {
    order: 0;
  }
}

.content-five-section-linkedin-profiel-netwerken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-five-wrapper-linkedin-profiel-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-five-text-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-five-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-five-paragraph-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-five-image-linkedin-profiel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-five-img-linkedin-profiel-netwerken {
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

@media (max-width: 768px) {
  .content-five-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
  
  .content-five-text-linkedin-profiel-netwerken,
  .content-five-image-linkedin-profiel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-linkedin-profiel-netwerken {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-text-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.8;
}

.conclusion-cta-linkedin-profiel-netwerken {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(12px, 2vw, 16px);
  margin-top: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
}

.cta-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.cta-text-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
  line-height: 1.6;
}

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

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

.related-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin: 0;
}

.related-subtitle-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-align: center;
  margin: 0;
}

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

.related-card-linkedin-profiel-netwerken {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.1);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-linkedin-profiel-netwerken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(28, 25, 23, 0.15);
}

.related-card-image-linkedin-profiel-netwerken {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-text-linkedin-profiel-netwerken {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-description-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-linkedin-profiel-netwerken {
  color: #0d9488;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out;
  align-self: flex-start;
}

.related-card-link-linkedin-profiel-netwerken:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

.disclaimer-section-linkedin-profiel-netwerken {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-linkedin-profiel-netwerken {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 4px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-linkedin-profiel-netwerken {
  color: #1c1917;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-linkedin-profiel-netwerken {
  color: #57534e;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-linkedin-profiel-netwerken,
  .intro-content-linkedin-profiel-netwerken,
  .content-one-wrapper-linkedin-profiel-netwerken,
  .content-two-wrapper-linkedin-profiel-netwerken,
  .content-three-wrapper-linkedin-profiel-netwerken,
  .content-four-wrapper-linkedin-profiel-netwerken,
  .content-five-wrapper-linkedin-profiel-netwerken {
    flex-direction: column;
  }
}

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

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

@media (min-width: 1024px) {
  .hero-section-linkedin-profiel-netwerken {
    padding: 5rem 0;
  }
  
  .intro-section-linkedin-profiel-netwerken,
  .content-one-section-linkedin-profiel-netwerken,
  .content-two-section-linkedin-profiel-netwerken,
  .content-three-section-linkedin-profiel-netwerken,
  .content-four-section-linkedin-profiel-netwerken,
  .content-five-section-linkedin-profiel-netwerken {
    padding: 5rem 0;
  }
  
  .conclusion-section-linkedin-profiel-netwerken,
  .related-section-linkedin-profiel-netwerken {
    padding: 5rem 0;
  }
}

.main-vertrouwen-opbouwen-netwerken {
  width: 100%;
}

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

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

.breadcrumbs-vertrouwen-opbouwen-netwerken {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-vertrouwen-opbouwen-netwerken a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

.breadcrumbs-vertrouwen-opbouwen-netwerken span {
  color: var(--color-text-muted);
}

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

.hero-text-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-vertrouwen-opbouwen-netwerken {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-vertrouwen-opbouwen-netwerken {
  color: var(--color-text-secondary);
}

.meta-separator-vertrouwen-opbouwen-netwerken {
  color: var(--color-text-muted);
}

.hero-image-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .hero-text-vertrouwen-opbouwen-netwerken,
  .hero-image-vertrouwen-opbouwen-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-paragraph-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .intro-text-vertrouwen-opbouwen-netwerken,
  .intro-image-vertrouwen-opbouwen-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.fundamentals-text-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.fundamentals-paragraph-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fundamentals-tip-vertrouwen-opbouwen-netwerken {
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.tip-label-vertrouwen-opbouwen-netwerken {
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.fundamentals-image-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .fundamentals-content-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .fundamentals-text-vertrouwen-opbouwen-netwerken,
  .fundamentals-image-vertrouwen-opbouwen-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.preparation-content-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.preparation-image-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.preparation-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.preparation-text-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.preparation-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.preparation-paragraph-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .preparation-content-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .preparation-image-vertrouwen-opbouwen-netwerken {
    order: 0;
  }

  .preparation-text-vertrouwen-opbouwen-netwerken,
  .preparation-image-vertrouwen-opbouwen-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.techniques-content-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

.techniques-cards-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.technique-card-vertrouwen-opbouwen-netwerken {
  flex: 1 1 clamp(250px, 100%, 320px);
  max-width: 320px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-card-vertrouwen-opbouwen-netwerken:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-number-vertrouwen-opbouwen-netwerken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.card-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.card-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .techniques-cards-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .technique-card-vertrouwen-opbouwen-netwerken {
    max-width: 100%;
  }
}

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

.confidence-content-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.confidence-text-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.confidence-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.confidence-paragraph-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.featured-quote-vertrouwen-opbouwen-netwerken {
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(13, 148, 136, 0.05);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.quote-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.quote-author-vertrouwen-opbouwen-netwerken {
  display: block;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.confidence-image-vertrouwen-opbouwen-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.confidence-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .confidence-content-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .confidence-text-vertrouwen-opbouwen-netwerken,
  .confidence-image-vertrouwen-opbouwen-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.actionable-content-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.actionable-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

.actionable-steps-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-block-vertrouwen-opbouwen-netwerken {
  flex: 1 1 clamp(280px, 100%, 380px);
  max-width: 380px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.step-heading-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.step-list-vertrouwen-opbouwen-netwerken {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.step-item-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.step-item-vertrouwen-opbouwen-netwerken::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .actionable-steps-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .step-block-vertrouwen-opbouwen-netwerken {
    max-width: 100%;
  }
}

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

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

.conclusion-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-vertrouwen-opbouwen-netwerken {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.cta-heading-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.cta-link-vertrouwen-opbouwen-netwerken {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
}

.cta-link-vertrouwen-opbouwen-netwerken:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.disclaimer-content-vertrouwen-opbouwen-netwerken {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.related-content-vertrouwen-opbouwen-netwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

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

.related-card-vertrouwen-opbouwen-netwerken {
  flex: 1 1 clamp(280px, 100%, 360px);
  max-width: 360px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-card-image-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: auto;
  max-height: 220px;
  overflow: hidden;
}

.related-img-vertrouwen-opbouwen-netwerken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-vertrouwen-opbouwen-netwerken {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-vertrouwen-opbouwen-netwerken {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-vertrouwen-opbouwen-netwerken {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  transition: color var(--transition-fast);
  margin-top: auto;
}

.related-link-vertrouwen-opbouwen-netwerken:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-vertrouwen-opbouwen-netwerken {
    flex-direction: column;
  }

  .related-card-vertrouwen-opbouwen-netwerken {
    max-width: 100%;
  }
}

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

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

.main-betekenisvolle-gesprekken-netwerken {
  width: 100%;
}

.hero-section-betekenisvolle-gesprekken-netwerken {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-betekenisvolle-gesprekken-netwerken {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.1;
}

.hero-subtitle-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.hero-meta-betekenisvolle-gesprekken-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.meta-item-betekenisvolle-gesprekken-netwerken {
  color: #a8a29e;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-divider-betekenisvolle-gesprekken-netwerken {
  color: #d6d3d1;
}

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

.breadcrumbs-betekenisvolle-gesprekken-netwerken a {
  color: #0d9488;
  transition: color 0.2s ease;
}

.breadcrumbs-betekenisvolle-gesprekken-netwerken a:hover {
  color: #0f766e;
}

.breadcrumbs-betekenisvolle-gesprekken-netwerken span {
  color: #d6d3d1;
}

.hero-image-wrapper-betekenisvolle-gesprekken-netwerken {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-image-betekenisvolle-gesprekken-netwerken {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.intro-section-betekenisvolle-gesprekken-netwerken {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-img-betekenisvolle-gesprekken-netwerken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-betekenisvolle-gesprekken-netwerken {
    flex-direction: column;
  }

  .intro-text-betekenisvolle-gesprekken-netwerken,
  .intro-image-betekenisvolle-gesprekken-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-betekenisvolle-gesprekken-netwerken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-betekenisvolle-gesprekken-netwerken.content-one-betekenisvolle-gesprekken-netwerken {
  background: #ffffff;
}

.content-section-betekenisvolle-gesprekken-netwerken.content-two-betekenisvolle-gesprekken-netwerken {
  background: #fef3c7;
}

.content-section-betekenisvolle-gesprekken-netwerken.content-three-betekenisvolle-gesprekken-netwerken {
  background: #ffffff;
}

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

.content-wrapper-reverse-betekenisvolle-gesprekken-netwerken {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.content-text-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.content-quote-betekenisvolle-gesprekken-netwerken {
  border-left: 4px solid #0d9488;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  font-style: italic;
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

.content-image-img-betekenisvolle-gesprekken-netwerken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-betekenisvolle-gesprekken-netwerken,
  .content-wrapper-reverse-betekenisvolle-gesprekken-netwerken {
    flex-direction: column;
  }

  .content-text-betekenisvolle-gesprekken-netwerken,
  .content-image-betekenisvolle-gesprekken-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-betekenisvolle-gesprekken-netwerken {
  background: #1c1917;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-betekenisvolle-gesprekken-netwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-header-betekenisvolle-gesprekken-netwerken {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tips-title-betekenisvolle-gesprekken-netwerken {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.tips-subtitle-betekenisvolle-gesprekken-netwerken {
  color: #a8a29e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
}

.tips-grid-betekenisvolle-gesprekken-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 280px;
  max-width: 380px;
  background: #2d2622;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.tip-card-betekenisvolle-gesprekken-netwerken:hover {
  transform: translateY(-4px);
  background: #3a3330;
}

.tip-number-betekenisvolle-gesprekken-netwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: block;
}

.tip-card-title-betekenisvolle-gesprekken-netwerken {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.tip-card-text-betekenisvolle-gesprekken-netwerken {
  color: #d6d3d1;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-card-betekenisvolle-gesprekken-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-betekenisvolle-gesprekken-netwerken {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-betekenisvolle-gesprekken-netwerken {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-betekenisvolle-gesprekken-netwerken {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 2px solid #fef3c7;
}

.conclusion-cta-text-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
}

.disclaimer-section-betekenisvolle-gesprekken-netwerken {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e7e5e4;
}

.disclaimer-content-betekenisvolle-gesprekken-netwerken {
  background: #fef3c7;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.disclaimer-text-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
}

.related-section-betekenisvolle-gesprekken-netwerken {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-betekenisvolle-gesprekken-netwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.related-card-betekenisvolle-gesprekken-netwerken {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-betekenisvolle-gesprekken-netwerken:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card-image-betekenisvolle-gesprekken-netwerken {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-betekenisvolle-gesprekken-netwerken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-betekenisvolle-gesprekken-netwerken:hover .related-card-image-betekenisvolle-gesprekken-netwerken img {
  transform: scale(1.05);
}

.related-card-content-betekenisvolle-gesprekken-netwerken {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-betekenisvolle-gesprekken-netwerken {
  color: #1c1917;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
}

.related-card-text-betekenisvolle-gesprekken-netwerken {
  color: #57534e;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.5;
}

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

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

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

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

a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0f766e;
}

@media (max-width: 1024px) {
  .hero-section-betekenisvolle-gesprekken-netwerken {
    padding: 2rem 0;
  }

  .intro-section-betekenisvolle-gesprekken-netwerken,
  .content-section-betekenisvolle-gesprekken-netwerken,
  .tips-section-betekenisvolle-gesprekken-netwerken,
  .conclusion-section-betekenisvolle-gesprekken-netwerken,
  .disclaimer-section-betekenisvolle-gesprekken-netwerken,
  .related-section-betekenisvolle-gesprekken-netwerken {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 640px) {
  .hero-section-betekenisvolle-gesprekken-netwerken {
    padding: 1.5rem 0;
  }

  .breadcrumbs-betekenisvolle-gesprekken-netwerken {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .meta-item-betekenisvolle-gesprekken-netwerken {
    font-size: 0.75rem;
  }
}

.main-contacten-onderhouden-netwerk {
  width: 100%;
  overflow: hidden;
}

.hero-section-contacten-onderhouden-netwerk {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  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;
}

.breadcrumbs-contacten-onderhouden-netwerk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-contacten-onderhouden-netwerk a {
  color: #d6d3d1;
  transition: color var(--transition-base);
  text-decoration: none;
}

.breadcrumbs-contacten-onderhouden-netwerk a:hover {
  color: #0d9488;
}

.breadcrumbs-contacten-onderhouden-netwerk span {
  color: #a8a29e;
}

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

.hero-text-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #d6d3d1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-contacten-onderhouden-netwerk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-contacten-onderhouden-netwerk {
  color: #a8a29e;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.hero-image-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-contacten-onderhouden-netwerk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-contacten-onderhouden-netwerk,
  .hero-image-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-contacten-onderhouden-netwerk {
    flex-direction: column;
  }
}

.intro-section-contacten-onderhouden-netwerk {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-image-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-content-contacten-onderhouden-netwerk {
    flex-direction: column;
  }

  .intro-text-contacten-onderhouden-netwerk,
  .intro-image-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.timing-section-contacten-onderhouden-netwerk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.timing-content-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.timing-image-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-image-contacten-onderhouden-netwerk img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.timing-text-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.timing-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.timing-paragraph-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.timing-steps-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-contacten-onderhouden-netwerk {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #fef3c7;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.step-title-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #1c1917;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timing-content-contacten-onderhouden-netwerk {
    flex-direction: column;
  }

  .timing-image-contacten-onderhouden-netwerk,
  .timing-text-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.channels-section-contacten-onderhouden-netwerk {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.channels-content-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.channels-text-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.channels-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.channels-paragraph-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.channels-list-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.channel-item-contacten-onderhouden-netwerk {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
  box-shadow: var(--shadow-sm);
}

.channel-name-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #1c1917;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.channel-desc-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
}

.channels-image-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.channels-image-contacten-onderhouden-netwerk img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .channels-content-contacten-onderhouden-netwerk {
    flex-direction: column;
  }

  .channels-text-contacten-onderhouden-netwerk,
  .channels-image-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-contacten-onderhouden-netwerk {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-content-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-image-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-contacten-onderhouden-netwerk img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.strategy-text-contacten-onderhouden-netwerk {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.strategy-paragraph-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.strategy-tips-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.tip-box-contacten-onderhouden-netwerk {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: linear-gradient(135deg, #d1fae5 0%, #ccfbf1 100%);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.tip-title-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-content-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #115e59;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-content-contacten-onderhouden-netwerk {
    flex-direction: column;
  }

  .strategy-image-contacten-onderhouden-netwerk,
  .strategy-text-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.value-section-contacten-onderhouden-netwerk {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.value-content-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.value-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.value-intro-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.value-examples-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.value-example-contacten-onderhouden-netwerk {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #0d9488;
}

.example-title-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #1c1917;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-text-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
}

.value-image-contacten-onderhouden-netwerk {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.value-image-contacten-onderhouden-netwerk img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .value-example-contacten-onderhouden-netwerk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-contacten-onderhouden-netwerk {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-contacten-onderhouden-netwerk {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #d6d3d1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.conclusion-highlight-contacten-onderhouden-netwerk {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(13, 148, 136, 0.15);
  border-left: 4px solid #0d9488;
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.highlight-text-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #ccfbf1;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

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

.related-content-contacten-onderhouden-netwerk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-contacten-onderhouden-netwerk {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.related-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}

.related-subtitle-contacten-onderhouden-netwerk {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #57534e;
}

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

.related-card-contacten-onderhouden-netwerk {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.related-image-contacten-onderhouden-netwerk {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.related-image-contacten-onderhouden-netwerk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-contacten-onderhouden-netwerk:hover .related-image-contacten-onderhouden-netwerk img {
  transform: scale(1.05);
}

.related-text-contacten-onderhouden-netwerk {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
  flex-grow: 1;
}

.related-card-title-contacten-onderhouden-netwerk {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #1c1917;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
}

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

.disclaimer-section-contacten-onderhouden-netwerk {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e7e5e4;
}

.disclaimer-content-contacten-onderhouden-netwerk {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #fef3c7;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.disclaimer-title-contacten-onderhouden-netwerk {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #1c1917;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-contacten-onderhouden-netwerk {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #57534e;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .disclaimer-content-contacten-onderhouden-netwerk {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

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

.networking-expertise-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

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

.hero-text-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
}

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  text-align: center;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.foundation-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.foundation-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.15);
  transition: all var(--transition-base);
}

.foundation-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.card-icon-about {
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.step-number-about {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: clamp(60px, 12vw, 100px);
  font-family: var(--font-heading);
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.connection-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.connection-text-about {
  flex: 1 1 45%;
  min-width: 250px;
}

.connection-visual-about {
  flex: 1 1 45%;
  min-width: 250px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.connection-title-about {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.connection-text-about p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.connection-text-about p:last-child {
  margin-bottom: 0;
}

.featured-quote-about {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quote-text-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.quote-author-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  display: block;
  font-style: normal;
}

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

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

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

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.impact-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.impact-boxes-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.impact-box-about {
  flex: 1 1 220px;
  max-width: 300px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  text-align: center;
}

.impact-box-title-about {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.impact-box-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-item-about {
    flex: 0 1 100%;
  }

  .foundation-grid-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .foundation-card-about {
    flex: 1 1 100%;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    font-size: 2.25rem;
    min-width: auto;
  }

  .connection-split-about {
    flex-direction: column;
  }

  .connection-text-about,
  .connection-visual-about {
    flex: 1 1 100%;
    min-width: auto;
  }

  .impact-boxes-about {
    flex-direction: column;
  }

  .impact-box-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-stats-about {
    gap: 1.5rem;
    padding: 2rem;
  }

  .foundation-grid-about {
    gap: 1.5rem;
  }

  .impact-boxes-about {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 5rem 0 6rem;
  }

  .foundation-section-about,
  .approach-section-about,
  .connection-section-about,
  .impact-section-about {
    padding: 6rem 0;
  }

  .foundation-grid-about {
    gap: 2rem;
  }

  .process-steps-about {
    gap: 3rem;
  }

  .impact-boxes-about {
    gap: 2rem;
  }
}

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

.portfolio-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-sm);
  text-align: center;
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-bg-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 251, 235, 0.9);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.portfolio-card-image {
  width: 100%;
  height: 250px;
  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);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.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-full);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.portfolio-card-meta {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-container {
    padding: 0;
  }

  .portfolio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.02);
  }

  .portfolio-card-image img {
    transition: transform var(--transition-base);
  }
}

.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;
  padding: 0 var(--space-sm);
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  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: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.portfolio-cta-button:hover {
  background-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);
  }

  .portfolio-cta-content {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (max-width: 480px) {
  .portfolio-card {
    margin: 0;
  }

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

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .services-hero__title {
    margin-bottom: var(--space-lg);
  }
}

.services-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .services-content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card__icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
  line-height: 1.3;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__topics {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.2rem, 0.95rem);
  color: var(--color-text-secondary);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__topics li {
  padding-left: var(--space-md);
  position: relative;
}

.service-card__topics li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(28, 25, 23, 0.03);
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.1);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.2);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

.policy-guide {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.policy-guide .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow: hidden;
}

.policy-guide .content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-guide h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-md);
  margin-top: 0;
  padding-top: var(--space-lg);
}

.policy-guide .last-updated {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.policy-guide h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-primary-light);
}

.policy-guide p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.policy-guide ul,
.policy-guide ol {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  margin-left: var(--space-lg);
}

.policy-guide li {
  margin-bottom: var(--space-sm);
}

.policy-guide .contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
}

.policy-guide .contact-section h2 {
  border-bottom-color: var(--color-primary);
}

.policy-guide .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.policy-guide .contact-section strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .policy-guide {
    padding: var(--space-2xl) 0;
  }

  .policy-guide .container {
    padding: 0 var(--space-lg);
  }

  .policy-guide h1 {
    padding-top: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .policy-guide {
    padding: var(--space-3xl) 0;
  }

  .policy-guide .container {
    padding: 0 var(--space-2xl);
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(28, 25, 23, 0.03);
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.1);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.2);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.thank-you-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  width: 100%;
  overflow: hidden;
}

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: slideInUp 0.6s ease-out;
}

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

.thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-icon svg {
  width: 80px;
  height: 80px;
  animation: checkmark 0.6s ease-out 0.2s both;
}

@keyframes checkmark {
  from {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
  }
  to {
    stroke-dasharray: 166;
    stroke-dashoffset: 0;
  }
}

.thank-you-page h1 {
  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;
  letter-spacing: -0.5px;
  margin-top: var(--space-sm);
}

.thank-you-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.thank-you-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-next-steps {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  width: 100%;
  text-align: left;
}

.thank-you-next-steps h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-align: center;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.steps-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: var(--space-xl);
  position: relative;
  text-align: left;
}

.steps-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  margin-top: var(--space-lg);
  letter-spacing: 0.5px;
}

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

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

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

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-you-content {
    gap: var(--space-xl);
  }

  .thank-you-next-steps {
    padding: var(--space-xl) var(--space-2xl);
  }

  .thank-you-icon {
    width: 160px;
    height: 160px;
  }

  .thank-you-icon svg {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-you-content {
    gap: var(--space-2xl);
  }

  .thank-you-next-steps {
    padding: var(--space-2xl);
  }

  .btn {
    padding: var(--space-md) calc(var(--space-xl) * 1.5);
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-content,
  .thank-you-icon,
  .thank-you-icon svg {
    animation: none;
  }

  .btn {
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

  html,
  body {
    width: 100%;
    height: 100%;
  }

  .error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--color-bg-primary);
  }

  .error-section {
    width: 100%;
    padding: var(--space-lg);
    overflow: hidden;
  }

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

  .content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }

  .error-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
  }

  .error-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
  }

  .error-code-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-code {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
    position: relative;
    z-index: 2;
    letter-spacing: -0.05em;
  }

  .error-decoration {
    position: absolute;
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    background-color: var(--color-primary-light);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
  }

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

  .error-message {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .error-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
  }

  .error-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.6;
  }

  .error-description {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-suggestions {
    background-color: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--color-primary);
  }

  .suggestions-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-align: left;
  }

  .suggestions-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .suggestions-list li {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-left: var(--space-lg);
    position: relative;
  }

  .suggestions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    font-weight: 600;
    font-family: var(--font-primary);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 200px;
    margin-top: var(--space-md);
  }

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

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

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

  @media (min-width: 640px) {
    .error-section {
      padding: var(--space-xl);
    }

    .error-wrapper {
      gap: var(--space-2xl);
    }

    .error-visual {
      margin-bottom: var(--space-xl);
    }

    .error-suggestions {
      padding: var(--space-xl);
    }
  }

  @media (min-width: 768px) {
    .error-section {
      padding: var(--space-2xl) var(--space-lg);
    }

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

    .error-wrapper {
      gap: var(--space-3xl);
    }

    .error-visual {
      margin-bottom: var(--space-2xl);
    }

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

  @media (min-width: 1024px) {
    .error-section {
      padding: var(--space-3xl) var(--space-lg);
    }

    .container {
      padding: 0 var(--space-2xl);
    }

    .error-wrapper {
      gap: var(--space-4xl);
    }

    .error-visual {
      margin-bottom: var(--space-3xl);
    }
  }

  @media (max-width: 639px) {
    .error-code {
      font-size: clamp(3.5rem, 12vw, 5rem);
    }

    .error-decoration {
      width: clamp(150px, 35vw, 300px);
      height: clamp(150px, 35vw, 300px);
    }

    .btn {
      width: 100%;
      min-width: unset;
    }
  }

* {
  box-sizing: border-box;
}

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

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

.contact-page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-hero-content {
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-page-form-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .contact-page-info-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

.contact-page-form-header {
  margin-bottom: var(--space-xl);
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-required {
  color: var(--color-error);
  font-weight: 700;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border: 2px solid var(--color-text-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  line-height: 1.5;
  width: 100%;
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background-color: var(--color-bg-tertiary);
}

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

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

.contact-page-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-page-form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-page-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.contact-page-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

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

.contact-page-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-md);
  width: 100%;
}

.contact-page-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-page-submit:active {
  transform: translateY(0);
}

.contact-page-info-header {
  margin-bottom: var(--space-xl);
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

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

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-page-info-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

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

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-info-extra {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-page-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-page-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: var(--space-4xl) 0;
  }
}

.contact-page-cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-hover) 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-cta-content {
  text-align: center;
}

.contact-page-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

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

@media (min-width: 768px) {
  .contact-page-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-page-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-page-form-wrapper,
  .contact-page-info-wrapper {
    background-color: var(--color-bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }
}