@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: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;

  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;

  --color-accent-green: #10b981;
  --color-accent-orange: #f97316;
  --color-accent-purple: #8b5cf6;

  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

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

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

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

  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

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

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: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

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

button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  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-color: var(--color-primary);
}

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

.btn-text {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) 0;
}

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

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

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

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

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

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

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

.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(250px, 1fr));
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-xs {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.my-sm {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.my-md {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.my-lg {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.my-xl {
  margin-top: var(--space-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);
}

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

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

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

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

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

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent-green);
}

.badge-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-accent-orange);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-accent-purple);
}

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

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

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

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

.list {
  list-style: none;
}

.list-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.list-item:last-child {
  border-bottom: none;
}

.list-check {
  list-style: none;
}

.list-check li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: 700;
}

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

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

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

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

  .flex-between {
    flex-direction: column;
    gap: var(--space-md);
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

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

  button,
  .btn {
    width: 100%;
  }
}
.header-connect-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 100;
  padding: 1rem 0;
}

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

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

.header-connect-portal-brand:hover {
  opacity: 0.85;
}

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

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

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

.header-connect-portal-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

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

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

.header-connect-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-connect-portal-toggle-line {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

.header-connect-portal-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 101;
}

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

.header-connect-portal-mobile-close:hover {
  color: var(--color-primary);
}

.header-connect-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem clamp(1rem, 4vw, 2rem);
}

.header-connect-portal-mobile-link {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.header-connect-portal-mobile-link:hover {
  color: var(--color-primary);
}

.header-connect-portal-mobile-cta {
  margin: 2rem clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base), transform var(--transition-fast);
  display: block;
}

.header-connect-portal-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

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

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

  .header-connect-portal-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-connect-portal-desktop-nav {
    display: none;
  }

  .header-connect-portal-cta-button {
    display: none;
  }

  .header-connect-portal-logo-text {
    font-size: 1.1rem;
  }
}

    

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

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

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

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

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

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

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

.hero-text-wrapper-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

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

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

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

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-wrapper-index {
  flex: 1 1 45%;
  min-height: 300px;
}

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

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

  .hero-text-wrapper-index {
    flex: 1 1 100%;
  }

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

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

  .btn {
    width: 100%;
  }

  .hero-stats-index {
    gap: 1rem;
  }
}

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

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

.about-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.about-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.about-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.about-image-wrapper-index {
  flex: 1 1 45%;
  min-height: 300px;
}

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

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

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

  .about-image-wrapper-index {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .about-header-index {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
}

.features-section-index {
  background: var(--color-bg-primary);
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.features-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-index {
  width: 50px;
  height: 50px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.feature-title-index {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.feature-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

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

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

.approach-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.approach-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 70px;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

.featured-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.featured-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.featured-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.card-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.card-link-index:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

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

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

.testimonials-section-index {
  background: var(--color-bg-secondary);
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.testimonials-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

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

.faq-section-index {
  background: var(--color-bg-primary);
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
}

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

.faq-item-index {
  flex: 1 1 300px;
  max-width: 450px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.faq-question-index {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

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

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

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

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

.resources-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  line-height: 1.3;
}

.resources-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.resources-info-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.resources-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resources-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.resources-cta-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  .resources-text-index {
    flex: 1 1 100%;
  }

  .resources-cta-index {
    flex: 1 1 100%;
  }
}

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

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: center;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  max-width: 600px;
}

.cta-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  line-height: 1.3;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  flex: 1 1 100%;
  text-align: center;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  border: none;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

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

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

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

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

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

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

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 120px;
  }
}

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

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

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

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

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

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

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  max-width: 55ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.footer-contact p + p {
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

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

  .footer-nav,
  .footer-legal {
    flex: 0 1 auto;
    min-width: 160px;
  }

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

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

@media (max-width: 767px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
  }
}
    

.category-page-networking-skills-netherlands {
  background: var(--color-bg-primary);
}

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

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

.hero-header-networking-skills-netherlands {
  text-align: center;
}

.hero-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-text-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.posts-header-networking-skills-netherlands {
  text-align: center;
}

.posts-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-networking-skills-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) ease;
  flex: 1 1 100%;
  max-width: 420px;
  margin: 0 auto;
}

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

.card-image-wrapper-networking-skills-netherlands {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.card-image-networking-skills-netherlands {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-networking-skills-netherlands {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border-light);
}

.card-reading-time-networking-skills-netherlands,
.card-level-networking-skills-netherlands,
.card-date-networking-skills-netherlands {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.9rem);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-networking-skills-netherlands i,
.card-level-networking-skills-netherlands i,
.card-date-networking-skills-netherlands i {
  color: var(--color-text-muted);
}

.card-link-networking-skills-netherlands {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast) ease;
  margin-top: auto;
}

.card-link-networking-skills-netherlands:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

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

.insights-header-networking-skills-netherlands {
  text-align: center;
}

.insights-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-grid-networking-skills-netherlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.insight-card-networking-skills-netherlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.insight-number-networking-skills-netherlands {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.insight-heading-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-text-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.practices-header-networking-skills-netherlands {
  text-align: center;
}

.practices-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-subtitle-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-list-networking-skills-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.practice-item-networking-skills-netherlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  align-items: flex-start;
}

.practice-icon-networking-skills-netherlands {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  flex-shrink: 0;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-bg-primary);
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.practice-text-networking-skills-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.practice-title-networking-skills-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-description-networking-skills-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 767px) {
  .card-networking-skills-netherlands {
    max-width: 100%;
  }

  .insight-card-networking-skills-netherlands {
    max-width: 100%;
  }

  .practice-item-networking-skills-netherlands {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-icon-networking-skills-netherlands {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 768px) {
  .posts-grid-networking-skills-netherlands {
    flex-direction: row;
  }

  .card-networking-skills-netherlands {
    flex: 1 1 calc(50% - 1rem);
  }

  .insights-grid-networking-skills-netherlands {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .insight-card-networking-skills-netherlands {
    flex: 1 1 calc(50% - 1rem);
  }

  .practice-item-networking-skills-netherlands {
    flex-direction: row;
    gap: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .card-networking-skills-netherlands {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: 350px;
  }

  .insight-card-networking-skills-netherlands {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: 300px;
  }
}

.main-echt-gesprek-voeren-vreemden {
  width: 100%;
}

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

.hero-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.meta-item-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-echt-gesprek-voeren-vreemden i {
  color: var(--color-primary);
}

.hero-img-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-echt-gesprek-voeren-vreemden a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-echt-gesprek-voeren-vreemden a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-echt-gesprek-voeren-vreemden span {
  color: var(--color-text-secondary);
}

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

  .hero-text-echt-gesprek-voeren-vreemden,
  .hero-image-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
}

.intro-wrapper-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 350px;
}

@media (max-width: 768px) {
  .intro-wrapper-echt-gesprek-voeren-vreemden {
    flex-direction: column;
  }

  .intro-text-echt-gesprek-voeren-vreemden,
  .intro-image-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.approach-header-echt-gesprek-voeren-vreemden {
  text-align: center;
}

.approach-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-subtitle-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.approach-steps-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-echt-gesprek-voeren-vreemden {
  flex: 1 1 calc(50% - 1rem);
  max-width: 500px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-echt-gesprek-voeren-vreemden {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

.step-details-echt-gesprek-voeren-vreemden {
  flex: 1;
}

.step-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
  }
}

.practice-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
}

.practice-wrapper-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-paragraph-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-highlight-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.practice-img-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 350px;
}

@media (max-width: 768px) {
  .practice-wrapper-echt-gesprek-voeren-vreemden {
    flex-direction: column;
  }

  .practice-text-echt-gesprek-voeren-vreemden,
  .practice-image-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mistakes-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
}

.mistakes-header-echt-gesprek-voeren-vreemden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistakes-subtitle-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.mistakes-wrapper-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-subheading-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistakes-paragraph-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mistakes-img-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 350px;
}

@media (max-width: 768px) {
  .mistakes-wrapper-echt-gesprek-voeren-vreemden {
    flex-direction: column;
  }

  .mistakes-text-echt-gesprek-voeren-vreemden,
  .mistakes-image-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-header-echt-gesprek-voeren-vreemden {
  text-align: center;
}

.tips-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-subtitle-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.tips-cards-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-echt-gesprek-voeren-vreemden {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.tip-card-echt-gesprek-voeren-vreemden:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tip-title-echt-gesprek-voeren-vreemden i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tip-card-echt-gesprek-voeren-vreemden {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tip-card-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
  }
}

.insight-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
}

.insight-wrapper-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insight-image-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-text-echt-gesprek-voeren-vreemden {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-paragraph-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insight-img-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 350px;
}

.insight-quote-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 2vw, 2rem);
  font-style: italic;
}

.quote-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .insight-wrapper-echt-gesprek-voeren-vreemden {
    flex-direction: column;
  }

  .insight-image-echt-gesprek-voeren-vreemden,
  .insight-text-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.related-section-echt-gesprek-voeren-vreemden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-echt-gesprek-voeren-vreemden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-echt-gesprek-voeren-vreemden {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-echt-gesprek-voeren-vreemden:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-echt-gesprek-voeren-vreemden {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-echt-gesprek-voeren-vreemden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-echt-gesprek-voeren-vreemden:hover .related-image-echt-gesprek-voeren-vreemden img {
  transform: scale(1.05);
}

.related-info-echt-gesprek-voeren-vreemden {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-echt-gesprek-voeren-vreemden {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-echt-gesprek-voeren-vreemden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-echt-gesprek-voeren-vreemden {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-echt-gesprek-voeren-vreemden {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

.main-community-groepen-waar-beginnen {
  width: 100%;
}

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

.hero-section-community-groepen-waar-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-community-groepen-waar-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-community-groepen-waar-beginnen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-community-groepen-waar-beginnen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.hero-text-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-community-groepen-waar-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0;
}

.meta-item-community-groepen-waar-beginnen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.meta-item-community-groepen-waar-beginnen i {
  color: var(--color-primary);
}

.hero-image-community-groepen-waar-beginnen img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

  .hero-text-community-groepen-waar-beginnen,
  .hero-image-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-community-groepen-waar-beginnen img {
    max-height: 300px;
  }
}

.intro-section-community-groepen-waar-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 768px) {
  .intro-content-community-groepen-waar-beginnen {
    flex-direction: column;
  }

  .intro-text-community-groepen-waar-beginnen,
  .intro-image-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-community-groepen-waar-beginnen img {
    max-height: 300px;
  }
}

.types-section-community-groepen-waar-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.types-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.types-header-community-groepen-waar-beginnen {
  text-align: center;
}

.types-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.types-subtitle-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.types-grid-community-groepen-waar-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.type-card-community-groepen-waar-beginnen {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.type-card-community-groepen-waar-beginnen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-community-groepen-waar-beginnen {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
}

.card-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .type-card-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.finding-section-community-groepen-waar-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.finding-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.finding-image-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.finding-text-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.finding-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.finding-paragraph-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.finding-list-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.list-item-community-groepen-waar-beginnen {
  background: rgba(var(--color-primary-rgb), 0.05);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.list-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-description-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.finding-image-community-groepen-waar-beginnen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .finding-content-community-groepen-waar-beginnen {
    flex-direction: column;
  }

  .finding-image-community-groepen-waar-beginnen,
  .finding-text-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .finding-image-community-groepen-waar-beginnen img {
    max-height: 300px;
  }
}

.steps-section-community-groepen-waar-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.steps-header-community-groepen-waar-beginnen {
  text-align: center;
}

.steps-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-list-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.step-item-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-community-groepen-waar-beginnen {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(3rem, 5vw, 4rem);
}

.step-details-community-groepen-waar-beginnen {
  flex: 1;
}

.step-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .step-item-community-groepen-waar-beginnen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-community-groepen-waar-beginnen {
    min-width: 2.5rem;
  }
}

.tips-section-community-groepen-waar-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tips-header-community-groepen-waar-beginnen {
  text-align: center;
}

.tips-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-wrapper-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tips-text-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-paragraph-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-bullets-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.bullet-item-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bullet-item-community-groepen-waar-beginnen:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.tips-image-community-groepen-waar-beginnen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .tips-wrapper-community-groepen-waar-beginnen {
    flex-direction: column;
  }

  .tips-text-community-groepen-waar-beginnen,
  .tips-image-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-image-community-groepen-waar-beginnen img {
    max-height: 300px;
  }
}

.challenges-section-community-groepen-waar-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-text-community-groepen-waar-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-paragraph-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenge-box-community-groepen-waar-beginnen {
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.challenge-box-community-groepen-waar-beginnen:last-child {
  margin-bottom: 0;
}

.challenge-box-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenge-box-text-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-image-community-groepen-waar-beginnen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .challenges-content-community-groepen-waar-beginnen {
    flex-direction: column;
  }

  .challenges-image-community-groepen-waar-beginnen,
  .challenges-text-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-image-community-groepen-waar-beginnen img {
    max-height: 300px;
  }
}

.cta-section-community-groepen-waar-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-box-community-groepen-waar-beginnen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-community-groepen-waar-beginnen {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-community-groepen-waar-beginnen {
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary-community-groepen-waar-beginnen {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
}

.btn-primary-community-groepen-waar-beginnen:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-section-community-groepen-waar-beginnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-header-community-groepen-waar-beginnen {
  text-align: center;
}

.related-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-community-groepen-waar-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.related-card-community-groepen-waar-beginnen {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
}

.related-card-community-groepen-waar-beginnen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card-image-community-groepen-waar-beginnen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-community-groepen-waar-beginnen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-community-groepen-waar-beginnen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-community-groepen-waar-beginnen {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
}

.related-card-link-community-groepen-waar-beginnen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-community-groepen-waar-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-community-groepen-waar-beginnen {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-community-groepen-waar-beginnen {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.disclaimer-box-community-groepen-waar-beginnen {
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-community-groepen-waar-beginnen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-community-groepen-waar-beginnen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

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

.main-authentieke-verbindingen-opbouwen {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-text-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-divider-authentieke-verbindingen-opbouwen {
  color: var(--color-border);
  font-size: 0.85rem;
}

.hero-img-authentieke-verbindingen-opbouwen {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-authentieke-verbindingen-opbouwen a {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.breadcrumbs-authentieke-verbindingen-opbouwen span {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-border);
}

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

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

.intro-text-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-img-authentieke-verbindingen-opbouwen {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-section-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-img-authentieke-verbindingen-opbouwen {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-section-2-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-2-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-2-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-2-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-2-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-img-2-authentieke-verbindingen-opbouwen {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.highlights-section-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlights-content-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.highlights-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.highlight-card-authentieke-verbindingen-opbouwen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

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

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

.card-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.card-text-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.story-section-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.story-content-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.story-text-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.story-image-authentieke-verbindingen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.story-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.story-paragraph-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.story-quote-authentieke-verbindingen-opbouwen {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
}

.quote-text-authentieke-verbindingen-opbouwen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.quote-author-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  display: block;
}

.story-img-authentieke-verbindingen-opbouwen {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.practical-section-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-content-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practical-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.6;
}

.practical-steps-authentieke-verbindingen-opbouwen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.step-head-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.step-number-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

.step-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.step-text-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

.conclusion-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-cta-authentieke-verbindingen-opbouwen {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-authentieke-verbindingen-opbouwen {
  display: inline-block;
  padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all var(--transition-base);
}

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

.disclaimer-section-authentieke-verbindingen-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-authentieke-verbindingen-opbouwen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent-orange);
  border-radius: var(--radius-md);
}

.disclaimer-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-authentieke-verbindingen-opbouwen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-base);
}

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

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

.related-image-authentieke-verbindingen-opbouwen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-authentieke-verbindingen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-authentieke-verbindingen-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.related-card-desc-authentieke-verbindingen-opbouwen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1023px) {
  .hero-content-authentieke-verbindingen-opbouwen,
  .intro-content-authentieke-verbindingen-opbouwen,
  .content-wrapper-authentieke-verbindingen-opbouwen,
  .content-wrapper-2-authentieke-verbindingen-opbouwen,
  .story-content-authentieke-verbindingen-opbouwen {
    flex-direction: column;
  }

  .hero-text-authentieke-verbindingen-opbouwen,
  .hero-image-authentieke-verbindingen-opbouwen,
  .intro-text-authentieke-verbindingen-opbouwen,
  .intro-image-authentieke-verbindingen-opbouwen,
  .content-text-authentieke-verbindingen-opbouwen,
  .content-image-authentieke-verbindingen-opbouwen,
  .content-image-2-authentieke-verbindingen-opbouwen,
  .content-text-2-authentieke-verbindingen-opbouwen,
  .story-text-authentieke-verbindingen-opbouwen,
  .story-image-authentieke-verbindingen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .highlight-card-authentieke-verbindingen-opbouwen {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-card-authentieke-verbindingen-opbouwen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .highlight-card-authentieke-verbindingen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-authentieke-verbindingen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .highlights-cards-authentieke-verbindingen-opbouwen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .related-cards-authentieke-verbindingen-opbouwen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .practical-steps-authentieke-verbindingen-opbouwen {
    grid-template-columns: 1fr;
  }

  .hero-content-authentieke-verbindingen-opbouwen,
  .intro-content-authentieke-verbindingen-opbouwen,
  .content-wrapper-authentieke-verbindingen-opbouwen,
  .content-wrapper-2-authentieke-verbindingen-opbouwen,
  .story-content-authentieke-verbindingen-opbouwen {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .breadcrumbs-authentieke-verbindingen-opbouwen {
    font-size: 0.75rem;
  }
}

html, body {
width: 100%;
}

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

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

.main-professioneel-netwerk-uitbreiden {
width: 100%;
overflow: hidden;
}

.hero-section-professioneel-netwerk-uitbreiden {
background: var(--color-bg-primary);
padding: clamp(2rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.hero-text-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
line-height: 1.2;
}

.hero-subtitle-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0 0 1.5rem 0;
line-height: 1.6;
}

.hero-meta-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: row;
gap: 1.5rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.meta-item-professioneel-netwerk-uitbreiden {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
color: var(--color-text-secondary);
}

.meta-item-professioneel-netwerk-uitbreiden i {
color: var(--color-primary);
}

.hero-image-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.hero-img-professioneel-netwerk-uitbreiden {
width: 100%;
height: auto;
border-radius: var(--radius-lg);
display: block;
box-shadow: var(--shadow-lg);
}

.breadcrumbs-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
margin-bottom: 2rem;
font-size: 0.875rem;
}

.breadcrumbs-professioneel-netwerk-uitbreiden a {
color: var(--color-primary);
text-decoration: none;
transition: var(--transition-fast);
}

.breadcrumbs-professioneel-netwerk-uitbreiden a:hover {
color: var(--color-primary-hover);
text-decoration: underline;
}

.breadcrumbs-professioneel-netwerk-uitbreiden span {
color: var(--color-text-muted);
}

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

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

.intro-text-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 1.5rem 0;
line-height: 1.3;
}

.intro-paragraph-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0 0 1.5rem 0;
line-height: 1.7;
}

.intro-paragraph-professioneel-netwerk-uitbreiden:last-child {
margin-bottom: 0;
}

.intro-image-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

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

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

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

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

.foundation-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
line-height: 1.3;
}

.foundation-subtitle-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

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

.foundation-card-professioneel-netwerk-uitbreiden {
flex: 1 1 280px;
max-width: 380px;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: flex;
flex-direction: column;
gap: 1rem;
transition: var(--transition-base);
}

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

.card-icon-professioneel-netwerk-uitbreiden {
font-size: 2.5rem;
color: var(--color-primary);
}

.card-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1.125rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0;
}

.card-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

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

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

.strategy-text-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.strategy-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
line-height: 1.3;
}

.strategy-paragraph-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0 0 2rem 0;
line-height: 1.7;
}

.strategy-steps-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: 2rem;
margin-top: 1.5rem;
}

.step-card-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: row;
gap: 1.5rem;
align-items: flex-start;
padding: 1.5rem;
background: var(--color-bg-primary);
border-radius: var(--radius-lg);
}

.step-number-professioneel-netwerk-uitbreiden {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--color-primary);
min-width: 70px;
text-align: center;
line-height: 1;
}

.step-details-professioneel-netwerk-uitbreiden {
flex: 1;
}

.step-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1.125rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0 0 0.75rem 0;
}

.step-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

.strategy-image-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

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

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

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

.maintenance-image-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.maintenance-image-professioneel-netwerk-uitbreiden img {
width: 100%;
height: auto;
border-radius: var(--radius-lg);
display: block;
box-shadow: var(--shadow-lg);
}

.maintenance-text-professioneel-netwerk-uitbreiden {
flex: 1 1 50%;
max-width: 50%;
}

.maintenance-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
line-height: 1.3;
}

.maintenance-paragraph-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0 0 2rem 0;
line-height: 1.7;
}

.maintenance-tips-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.tip-item-professioneel-netwerk-uitbreiden {
padding: 1.5rem;
background: var(--color-bg-secondary);
border-left: 4px solid var(--color-primary);
border-radius: var(--radius-md);
}

.tip-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1rem, 2vw, 1.25rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0 0 0.75rem 0;
}

.tip-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

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

.authenticity-content-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.authenticity-header-professioneel-netwerk-uitbreiden {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

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

.authenticity-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0;
line-height: 1.3;
}

.authenticity-cards-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
margin-top: 2rem;
}

.authenticity-card-professioneel-netwerk-uitbreiden {
flex: 1 1 300px;
max-width: 380px;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
display: flex;
flex-direction: column;
gap: 1rem;
}

.authenticity-card-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1.125rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0;
}

.authenticity-card-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

.featured-quote-professioneel-netwerk-uitbreiden {
padding: clamp(2rem, 3vw, 3rem);
border-left: 5px solid var(--color-primary);
background: var(--color-bg-primary);
border-radius: var(--radius-lg);
margin-top: 3rem;
}

.quote-text-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.25rem, 3vw, 1.75rem);
font-style: italic;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
line-height: 1.5;
}

.quote-author-professioneel-netwerk-uitbreiden {
font-size: 0.875rem;
color: var(--color-text-secondary);
font-style: normal;
}

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

.action-content-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
max-width: 900px;
margin: 0 auto;
}

.action-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 0.5rem 0;
line-height: 1.3;
text-align: center;
}

.action-subtitle-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0 0 2rem 0;
line-height: 1.6;
text-align: center;
}

.action-checklist-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: 1.5rem;
margin: 2rem 0;
}

.checklist-item-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: row;
gap: 1.5rem;
align-items: flex-start;
padding: 1.5rem;
background: var(--color-bg-secondary);
border-radius: var(--radius-lg);
}

.checklist-item-professioneel-netwerk-uitbreiden i {
color: var(--color-accent-green);
font-size: 1.5rem;
min-width: 24px;
margin-top: 0.25rem;
}

.checklist-content-professioneel-netwerk-uitbreiden {
flex: 1;
}

.checklist-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1rem, 2vw, 1.25rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0 0 0.5rem 0;
}

.checklist-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

.cta-box-professioneel-netwerk-uitbreiden {
background: linear-gradient(135deg, var(--color-primary), #1e40af);
padding: clamp(2.5rem, 5vw, 4rem);
border-radius: var(--radius-lg);
text-align: center;
color: #ffffff;
margin-top: 2rem;
}

.cta-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.25rem, 3vw, 2rem);
font-weight: 700;
color: #ffffff;
margin: 0 0 1rem 0;
}

.cta-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: #e0e7ff;
margin: 0 0 1.5rem 0;
line-height: 1.6;
}

.btn-primary-professioneel-netwerk-uitbreiden {
display: inline-block;
padding: 0.75rem 2rem;
background: #ffffff;
color: var(--color-primary);
text-decoration: none;
border-radius: var(--radius-md);
font-weight: 600;
font-size: clamp(0.875rem, 1vw, 1rem);
transition: var(--transition-base);
}

.btn-primary-professioneel-netwerk-uitbreiden:hover {
background: #f1f5f9;
color: var(--color-primary-hover);
}

.disclaimer-section-professioneel-netwerk-uitbreiden {
background: var(--color-bg-secondary);
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-professioneel-netwerk-uitbreiden {
display: flex;
flex-direction: column;
gap: 1rem;
}

.disclaimer-box-professioneel-netwerk-uitbreiden {
background: var(--color-bg-primary);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1.125rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0 0 1rem 0;
}

.disclaimer-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
}

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

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

.related-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin: 0 0 2rem 0;
line-height: 1.3;
text-align: center;
}

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

.related-card-professioneel-netwerk-uitbreiden {
flex: 1 1 300px;
max-width: 380px;
background: var(--color-bg-card);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
display: flex;
flex-direction: column;
transition: var(--transition-base);
}

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

.related-image-professioneel-netwerk-uitbreiden {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}

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

.related-card-title-professioneel-netwerk-uitbreiden {
font-family: var(--font-primary);
font-size: clamp(1.125rem, 2vw, 1.5rem);
font-weight: 600;
color: var(--color-text-primary);
margin: 0;
line-height: 1.3;
}

.related-card-text-professioneel-netwerk-uitbreiden {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin: 0;
line-height: 1.6;
flex: 1;
}

.related-link-professioneel-netwerk-uitbreiden {
color: var(--color-primary);
text-decoration: none;
font-weight: 600;
font-size: clamp(0.875rem, 1vw, 1rem);
transition: var(--transition-fast);
}

.related-link-professioneel-netwerk-uitbreiden:hover {
color: var(--color-primary-hover);
text-decoration: underline;
}

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

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

.intro-content-professioneel-netwerk-uitbreiden {
flex-direction: column;
}

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

.strategy-content-professioneel-netwerk-uitbreiden {
flex-direction: column;
}

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

.maintenance-content-professioneel-netwerk-uitbreiden {
flex-direction: column;
}

.maintenance-image-professioneel-netwerk-uitbreiden,
.maintenance-text-professioneel-netwerk-uitbreiden {
flex: 1 1 100%;
max-width: 100%;
}

.step-card-professioneel-netwerk-uitbreiden {
flex-direction: column;
align-items: flex-start;
}

.step-number-professioneel-netwerk-uitbreiden {
min-width: auto;
}
}

@media (min-width: 769px) and (max-width: 1023px) {
.foundation-cards-professioneel-netwerk-uitbreiden {
flex-direction: row;
}

.foundation-card-professioneel-netwerk-uitbreiden {
flex: 1 1 calc(50% - 1rem);
max-width: calc(50% - 1rem);
}

.authenticity-cards-professioneel-netwerk-uitbreiden {
flex-direction: row;
}

.authenticity-card-professioneel-netwerk-uitbreiden {
flex: 1 1 calc(50% - 1rem);
max-width: calc(50% - 1rem);
}

.related-cards-professioneel-netwerk-uitbreiden {
flex-direction: row;
}

.related-card-professioneel-netwerk-uitbreiden {
flex: 1 1 calc(50% - 1rem);
max-width: calc(50% - 1rem);
}
}

@media (min-width: 1024px) {
.hero-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.foundation-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.strategy-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.maintenance-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.authenticity-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.action-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}

.related-section-professioneel-netwerk-uitbreiden {
padding: clamp(4rem, 8vw, 7rem) 0;
}
}

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

html, body {
  width: 100%;
}

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

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

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

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

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

.hero-gateway-text-about {
  max-width: 750px;
}

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

.hero-subtitle-about {
  font-size: clamp(0.95rem, 1.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-md);
}

.foundation-section-about {
  background: var(--color-bg-secondary);
  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: clamp(0.25rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.block-item-about {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.approach-text-about {
  flex: 1 1 45%;
  min-width: 0;
}

.approach-visual-about {
  flex: 1 1 45%;
  min-width: 0;
  height: 100%;
  min-height: 350px;
  max-height: 450px;
}

.approach-visual-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.approach-text-paragraph-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-text-paragraph-about:last-child {
  margin-bottom: 0;
}

.impact-section-about {
  background: var(--color-bg-tertiary);
  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-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.impact-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

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

.impact-icon-about {
  width: 60px;
  height: 60px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon-about i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

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

.impact-card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.values-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.value-item-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-secondary);
}

.value-item-title-about {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.value-item-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.commitment-section-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.commitment-text-about {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.cta-button-about {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

.cta-button-about:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.95;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.825rem, 0.95vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: left;
}

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

  .approach-text-about,
  .approach-visual-about {
    flex: 1 1 100%;
  }

  .approach-visual-about {
    min-height: 280px;
    max-height: 350px;
  }

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

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

  .commitment-section-about {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }
}

@media (max-width: 480px) {
  .block-item-about {
    border-left-width: 3px;
  }

  .hero-gateway-content-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin: 0;
  line-height: 1.6;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
  margin: var(--space-sm) 0 0 0;
  line-height: 1.3;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: var(--space-xs) 0 var(--space-sm) 0;
  line-height: 1.6;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: auto;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  padding: 0.95rem 2.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
  display: inline-block;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-hero {
    padding: 5rem var(--space-lg);
  }

  .portfolio-projects {
    padding: 4rem var(--space-lg);
  }

  .portfolio-cta {
    padding: 5rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-hero {
    padding: 6rem var(--space-2xl);
  }

  .portfolio-projects {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-cta {
    padding: 6rem var(--space-2xl);
  }

  .portfolio-card {
    flex-direction: row;
  }

  .portfolio-card img {
    width: 45%;
    height: auto;
    min-height: 280px;
  }

  .portfolio-card-content {
    width: 55%;
    justify-content: center;
  }

  .portfolio-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .portfolio-card:nth-child(even) img {
    width: 45%;
  }

  .portfolio-card:nth-child(even) .portfolio-card-content {
    width: 55%;
  }
}

@media (min-width: 1440px) {
  .portfolio-hero-container,
  .portfolio-projects-container,
  .portfolio-cta-container {
    max-width: 1280px;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.5px;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .services-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem 2rem;
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-content {
    padding: 4rem 2rem;
  }
}

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

  .services-content {
    padding: 5rem 2rem;
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-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-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.service-card__topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__topics li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.service-card__topics li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);
  }

  .service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  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);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .services-cta {
    padding: 4rem 2rem;
  }

  .services-cta__button {
    padding: 1rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem 2rem;
  }
}

.connection-hub {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.connection-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.connection-hub h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.connection-hub .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.connection-hub h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.connection-hub h2:first-of-type {
  margin-top: var(--space-lg);
}

.connection-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.connection-hub ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.connection-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.connection-hub .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.connection-hub .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.connection-hub .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.connection-hub .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

  .connection-hub .contact-section {
    padding: var(--space-xl);
  }
}

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

  .connection-hub .content {
    padding: var(--space-3xl) 0;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-green);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: var(--space-sm);
}

.thank-you-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.5;
  margin-top: var(--space-md);
}

.thank-you-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: var(--space-md);
  letter-spacing: 0.3px;
}

.thank-you-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-top: var(--space-md);
  letter-spacing: 0.3px;
}

.btn-return-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  margin-top: var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  color: white;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-you-wrapper {
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-xl);
  }

  .success-icon {
    width: 100px;
    height: 100px;
  }

  h1 {
    margin-top: var(--space-lg);
  }

  .thank-you-lead {
    margin-top: var(--space-lg);
  }

  .thank-you-message {
    margin-top: var(--space-lg);
  }

  .thank-you-next-steps {
    margin-top: var(--space-lg);
  }

  .btn-return-home {
    margin-top: var(--space-2xl);
    padding: 1rem 3rem;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .thank-you-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 120px;
    height: 120px;
  }

  h1 {
    margin-top: var(--space-xl);
  }

  .thank-you-lead {
    margin-top: var(--space-xl);
  }

  .thank-you-message {
    margin-top: var(--space-xl);
  }

  .thank-you-next-steps {
    margin-top: var(--space-xl);
  }

  .btn-return-home {
    margin-top: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: none;
  }

  .btn-return-home {
    transition: none;
  }

  .btn-return-home:hover {
    transform: none;
  }
}

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

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-3xl);
  perspective: 1000px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: block;
  animation: float 3s ease-in-out infinite;
  line-height: 1;
}

.error-decoration {
  position: absolute;
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation: rotate 8s linear infinite;
}

.error-decoration::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  top: 10%;
  left: -10%;
  opacity: 0.5;
  animation: rotate-reverse 12s linear infinite;
}

.error-message {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.error-message h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.error-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  font-family: var(--font-primary);
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.suggestions-title {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.6;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
  }

  .error-suggestions {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

  .error-code {
    animation: float 4s ease-in-out infinite;
  }

  .error-decoration {
    width: 250px;
    height: 250px;
  }

  .error-message {
    animation: slideUp 1s ease-out 0.3s both;
  }
}

.contact-page-contactus {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-page-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 6rem 1rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-page-form-wrapper {
  width: 100%;
  flex: 1;
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-page-form-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  line-height: 1.6;
  transition: var(--transition-base);
}

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

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.contact-page-form-consent {
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.contact-page-consent-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-page-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

.contact-page-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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-wrapper {
  width: 100%;
  flex: 1;
}

.contact-page-info-header {
  margin-bottom: 2rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-page-info-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-base);
}

.contact-page-info-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.contact-page-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

.contact-page-info-item-note {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.9rem);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-page-info-cta {
  padding: 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-page-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.contact-page-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-page-cta-section {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.contact-page-cta-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.contact-page-cta-section-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

.contact-page-cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.contact-page-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  width: 100%;
  max-width: 400px;
}

.contact-page-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: var(--color-accent-green);
  color: var(--color-bg-primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-page-feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 5rem 1rem;
  }

  .contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-page-cta-section {
    padding: 5rem 1rem;
  }

  .contact-page-cta-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-page-feature {
    width: auto;
    flex: 0 1 calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 7rem 1rem;
  }

  .contact-page-main {
    padding: 6rem 1rem;
  }

  .contact-page-cta-section {
    padding: 7rem 1rem;
  }

  .contact-page-grid {
    gap: 5rem;
  }
}
.header-connect-portal-mobile-toggle,.header-connect-portal-mobile-close{
  width: 24px;
}