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

:root {
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);

  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-text-light: #cbd5e1;

  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fcd34d;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-success: #10b981;
  --color-warning: #ef4444;

  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

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

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

  
  --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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);

  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  
  --letter-spacing-tight: -0.01em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

em,
i {
  font-style: italic;
}

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

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

pre code {
  background: transparent;
  padding: 0;
  color: var(--color-text-secondary);
}

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

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

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

.visually-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

.btn-ghost:hover {
  background: rgba(245, 158, 11, 0.1);
}

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

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

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

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

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

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

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-base {
  font-size: 1rem;
}

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

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

.font-light {
  font-weight: 400;
}

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.hidden {
  display: none !important;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

.border {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.rounded-full {
  border-radius: 9999px;
}

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.badge-primary {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
}

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

.badge-warning {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-warning);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--space-lg) 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 0.95rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

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

.animate-slide-left {
  animation: slideInLeft var(--transition-base);
}

.animate-slide-right {
  animation: slideInRight var(--transition-base);
}

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

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    color: #0066cc;
  }

  .no-print {
    display: none;
  }
}
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-conduct-deck {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
  padding: 0;
  margin: 0;
}

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

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

.header-conduct-deck-brand:hover {
  opacity: 0.85;
}

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

.header-conduct-deck-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-tight);
}

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

.header-conduct-deck-nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-conduct-deck-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-conduct-deck-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-conduct-deck-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-conduct-deck-mobile-toggle:hover {
  opacity: 0.7;
}

.header-conduct-deck-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  display: block;
  border-radius: 1px;
  transition: all var(--transition-base);
}

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

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

.header-conduct-deck-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.header-conduct-deck-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-tight);
}

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

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

.header-conduct-deck-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  flex: 1;
  padding: 1rem 0;
}

.header-conduct-deck-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

.header-conduct-deck-mobile-link:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-conduct-deck-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin: 1rem clamp(1rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition-base);
  display: block;
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .header-conduct-deck-mobile-toggle {
    display: none;
  }

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

  .header-conduct-deck-desktop-nav {
    display: flex;
  }

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

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

  .header-conduct-deck-cta-button {
    display: none;
  }

  .header-conduct-deck-mobile-menu.active ~ .header-conduct-deck-container {
    pointer-events: none;
  }
}

@media (max-height: 600px) {
  .header-conduct-deck-mobile-links {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
  }
}

    .etiquette-hub {
  width: 100%;
  background: var(--color-bg-primary);
}

.etiquette-hub section {
  overflow: hidden;
}

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

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

.hero-text-block-index {
  max-width: 700px;
  width: 100%;
}

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.hero-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero-cta-group-index .btn {
  min-width: 160px;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: center;
  width: 100%;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.stat-number-index {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

@media (min-width: 768px) {
  .hero-content-index {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

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

  .hero-stats-index {
    flex: 1 1 50%;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

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

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

.step-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

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

.statistics-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

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

.stat-card-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  flex: 1 1 calc(50% - 1rem);
  min-width: 200px;
  max-width: 250px;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.stat-card-number-index {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
}

.stat-card-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.statistics-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.statistics-text-index:last-child {
  margin-bottom: 0;
}

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

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

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

.testimonials-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

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

.testimonial-card-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.testimonial-quote-index {
  flex: 1;
}

.testimonial-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-style: italic;
}

.testimonial-author-index {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-md);
}

.testimonial-name-index {
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 var(--space-xs) 0;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.testimonial-role-index {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonial-card-index {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

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

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

.partners-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.partners-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

.partner-card-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.partner-icon-index {
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

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

.partner-card-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 1024px) {
  .partner-card-index {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

.about-preview-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

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

.about-preview-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.about-preview-description-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.about-preview-description-index:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-preview-list-index {
  list-style: none;
  margin: 0 0 var(--space-xl) 0;
  padding: 0;
}

.about-preview-list-item-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-md);
}

.about-preview-list-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2em;
}

.about-preview-image-block-index {
  flex: 1 1 100%;
  width: 100%;
}

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

@media (min-width: 768px) {
  .about-preview-content-index {
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

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

  .about-preview-image-block-index {
    flex: 1 1 50%;
  }
}

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

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

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

.featured-posts-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.featured-posts-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

.featured-post-card-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.featured-post-image-index {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

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

.featured-post-body-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.featured-post-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.featured-post-excerpt-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.featured-post-link-index {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-fast);
}

.featured-post-link-index:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.featured-posts-cta-index {
  text-align: center;
  margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
  .featured-post-card-index {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-title-index {
  color: var(--color-bg-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.cta-text-index {
  color: var(--color-bg-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.btn-large-index {
  align-self: center;
  min-width: 200px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.cookie-banner-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  text-align: center;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

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

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

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

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

@media (max-width: 480px) {
  .hero-section-index {
    padding: 2rem 0;
  }

  .how-it-works-section-index,
  .statistics-section-index,
  .testimonials-section-index,
  .partners-section-index,
  .about-preview-section-index,
  .featured-posts-section-index,
  .cta-section-index {
    padding: 2rem 0;
  }

  .process-step-index {
    gap: 1rem;
  }

  .step-number-index {
    min-width: 60px;
  }

  .hero-cta-group-index .btn {
    min-width: 140px;
    font-size: 0.9rem;
  }
}

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

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

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

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

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

.footer-contact {
  display: block;
}

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

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

.footer-legal {
  display: block;
}

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

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

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

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

.footer-copyright {
  display: block;
  border-top: 1px solid var(--color-bg-card);
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

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

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

  .footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-bg-card);
    padding-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(3rem, 6vw, 4rem);
  }

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

@media (max-width: 767px) {
  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
  }

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

  .footer-nav-list a,
  .footer-legal-list a {
    display: block;
    padding: 0.25rem 0;
  }
}
    

.category-page-professional-etiquette-netherlands {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-professional-etiquette-netherlands {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-professional-etiquette-netherlands {
  text-align: center;
  max-width: 700px;
}

.hero-title-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.hero-subtitle-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.hero-accent-professional-etiquette-netherlands {
  display: flex;
  justify-content: center;
  width: 100%;
}

.accent-box-professional-etiquette-netherlands {
  background: rgba(245, 158, 11, 0.08);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.accent-box-professional-etiquette-netherlands i {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.accent-text-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-professional-etiquette-netherlands {
    gap: 1.5rem;
  }

  .accent-box-professional-etiquette-netherlands {
    width: 100%;
  }
}

.posts-section-professional-etiquette-netherlands {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-professional-etiquette-netherlands {
  text-align: center;
}

.posts-title-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.posts-subtitle-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  margin: 0;
  line-height: 1.6;
}

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

.card-professional-etiquette-netherlands {
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card-professional-etiquette-netherlands:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
}

.card-professional-etiquette-netherlands img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) var(--space-sm);
  margin: 0;
  line-height: 1.3;
}

.card-description-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-professional-etiquette-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: 0 clamp(1rem, 2vw, 1.5rem) var(--space-md);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  font-size: 0.8rem;
}

.card-reading-time-professional-etiquette-netherlands,
.card-level-professional-etiquette-netherlands,
.card-date-professional-etiquette-netherlands {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-reading-time-professional-etiquette-netherlands i,
.card-level-professional-etiquette-netherlands i,
.card-date-professional-etiquette-netherlands i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.card-link-professional-etiquette-netherlands {
  color: var(--color-primary);
  font-weight: 600;
  padding: var(--space-md) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.card-link-professional-etiquette-netherlands:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .card-professional-etiquette-netherlands {
    flex: 1 1 100%;
    max-width: none;
  }

  .posts-grid-professional-etiquette-netherlands {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.principles-section-professional-etiquette-netherlands {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-professional-etiquette-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.principles-header-professional-etiquette-netherlands {
  text-align: center;
}

.principles-title-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.principles-intro-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.principles-list-professional-etiquette-netherlands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-item-professional-etiquette-netherlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.principle-item-professional-etiquette-netherlands:hover {
  background: rgba(245, 158, 11, 0.05);
  transform: translateX(4px);
}

.principle-number-professional-etiquette-netherlands {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.principle-heading-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.principle-text-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .principle-item-professional-etiquette-netherlands {
    flex: 1 1 100%;
    max-width: none;
  }

  .principles-list-professional-etiquette-netherlands {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

.insights-header-professional-etiquette-netherlands {
  text-align: center;
}

.insights-title-professional-etiquette-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0;
}

.insights-text-professional-etiquette-netherlands {
  max-width: 800px;
  margin: 0 auto;
}

.insights-paragraph-professional-etiquette-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin: 0 0 var(--space-lg) 0;
}

.insights-paragraph-professional-etiquette-netherlands:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .insights-text-professional-etiquette-netherlands {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero-section-professional-etiquette-netherlands {
    padding: 3rem 0;
  }

  .posts-section-professional-etiquette-netherlands,
  .principles-section-professional-etiquette-netherlands,
  .insights-section-professional-etiquette-netherlands {
    padding: 3rem 0;
  }

  .card-professional-etiquette-netherlands img {
    height: 180px;
  }

  .principle-item-professional-etiquette-netherlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 1440px) {
  .posts-grid-professional-etiquette-netherlands {
    gap: 2rem;
  }

  .principles-list-professional-etiquette-netherlands {
    gap: 2rem;
  }
}

.main-communicatie-vergaderingen {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

.hero-text-wrapper-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-meta-communicatie-vergaderingen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.meta-item-communicatie-vergaderingen {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.meta-item-communicatie-vergaderingen i {
  color: var(--color-primary);
}

.hero-image-wrapper-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.breadcrumbs-communicatie-vergaderingen {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-communicatie-vergaderingen a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.breadcrumbs-communicatie-vergaderingen a:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-communicatie-vergaderingen {
  color: var(--color-text-muted);
}

.breadcrumb-current-communicatie-vergaderingen {
  color: var(--color-text-secondary);
}

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

  .hero-text-wrapper-communicatie-vergaderingen,
  .hero-image-wrapper-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

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

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

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

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

.preparation-text-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.preparation-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.preparation-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.prep-steps-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.prep-step-communicatie-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number-communicatie-vergaderingen {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

.step-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
}

.preparation-image-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.preparation-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

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

  .preparation-text-block-communicatie-vergaderingen,
  .preparation-image-block-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

.listening-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.listening-image-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.listening-text-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.listening-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.listening-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.listening-tips-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.tip-card-communicatie-vergaderingen {
  background: rgba(245, 158, 11, 0.08);
  padding: var(--space-md);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.tip-title-communicatie-vergaderingen {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.tip-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-normal);
}

@media (max-width: 768px) {
  .listening-content-communicatie-vergaderingen {
    flex-direction: column-reverse;
  }

  .listening-image-block-communicatie-vergaderingen,
  .listening-text-block-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.speaking-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.speaking-text-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.speaking-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.speaking-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.speaking-framework-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.framework-item-communicatie-vergaderingen {
  background: var(--color-bg-card);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.framework-title-communicatie-vergaderingen {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.framework-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-normal);
}

.speaking-image-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.speaking-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

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

  .speaking-text-block-communicatie-vergaderingen,
  .speaking-image-block-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.nonverbal-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.nonverbal-image-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.nonverbal-image-communicatie-vergaderingen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.nonverbal-text-block-communicatie-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.nonverbal-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nonverbal-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.featured-quote-communicatie-vergaderingen {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  font-style: italic;
}

.quote-text-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: 1.05rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.quote-author-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  display: block;
}

.nonverbal-list-communicatie-vergaderingen {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.list-item-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
}

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

@media (max-width: 768px) {
  .nonverbal-content-communicatie-vergaderingen {
    flex-direction: column-reverse;
  }

  .nonverbal-image-block-communicatie-vergaderingen,
  .nonverbal-text-block-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practical-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.practical-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  text-align: center;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

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

.practical-card-communicatie-vergaderingen {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  background: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.practical-card-communicatie-vergaderingen:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-number-communicatie-vergaderingen {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.card-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.card-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-normal);
}

@media (max-width: 768px) {
  .practical-card-communicatie-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
}

.cta-box-communicatie-vergaderingen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-bg-primary);
  margin-top: var(--space-lg);
}

.cta-title-communicatie-vergaderingen {
  color: var(--color-bg-primary);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-text-communicatie-vergaderingen {
  color: var(--color-bg-primary);
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.cta-button-communicatie-vergaderingen {
  background: var(--color-bg-primary);
  color: var(--color-primary);
}

.cta-button-communicatie-vergaderingen:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-bg-primary);
}

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

.related-content-communicatie-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.related-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-communicatie-vergaderingen {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.related-card-communicatie-vergaderingen:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-image-communicatie-vergaderingen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-communicatie-vergaderingen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-communicatie-vergaderingen:hover .related-img-communicatie-vergaderingen {
  transform: scale(1.05);
}

.related-info-communicatie-vergaderingen {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-card-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
}

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

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

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

.disclaimer-content-communicatie-vergaderingen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-communicatie-vergaderingen {
  color: var(--color-text-primary);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-communicatie-vergaderingen {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: var(--line-height-relaxed);
  padding: var(--space-lg);
  background: rgba(245, 158, 11, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .disclaimer-text-communicatie-vergaderingen {
    padding: var(--space-md);
    font-size: 0.9rem;
  }
}

.main-eerste-indruk-werkplek {
overflow-x: hidden;
}

.hero-section-eerste-indruk-werkplek {
background: #0a0f1e;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.breadcrumbs-eerste-indruk-werkplek {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-eerste-indruk-werkplek a {
color: #f59e0b;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-eerste-indruk-werkplek a:hover {
color: #fcd34d;
}

.breadcrumb-sep-eerste-indruk-werkplek {
color: #64748b;
}

.breadcrumb-current-eerste-indruk-werkplek {
color: #94a3b8;
}

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

.hero-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-eerste-indruk-werkplek {
font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-eerste-indruk-werkplek {
font-size: clamp(1rem, 1.5vw, 1.25rem);
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.hero-meta-eerste-indruk-werkplek {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
font-size: clamp(0.85rem, 1vw, 0.95rem);
color: #94a3b8;
}

.meta-item-eerste-indruk-werkplek {
color: #94a3b8;
}

.meta-divider-eerste-indruk-werkplek {
color: #475569;
}

.hero-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.hero-img-eerste-indruk-werkplek {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
object-fit: cover;
max-height: 500px;
}

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

.hero-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.hero-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.breadcrumbs-eerste-indruk-werkplek {
font-size: 0.85rem;
}
}

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

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

.intro-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #0a0f1e;
line-height: 1.2;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-paragraph-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.intro-paragraph-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 0;
}

.intro-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

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

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

.intro-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.intro-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}
}

.appearance-section-eerste-indruk-werkplek {
background: #0d1526;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.appearance-header-eerste-indruk-werkplek {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-eerste-indruk-werkplek {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(245, 158, 11, 0.15);
color: #f59e0b;
border-radius: 24px;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1rem;
}

.appearance-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.appearance-content-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.appearance-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.appearance-subtitle-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #ffffff;
margin-bottom: 1rem;
}

.appearance-paragraph-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 1rem;
}

.appearance-paragraph-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 1rem;
}

.appearance-paragraph-derde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 0;
}

.appearance-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.appearance-img-eerste-indruk-werkplek {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
object-fit: cover;
max-height: 400px;
}

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

.tip-card-eerste-indruk-werkplek {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 250px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 158, 11, 0.2);
border-radius: 12px;
padding: clamp(1.5rem, 2vw, 2rem);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.tip-card-eerste-indruk-werkplek:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #f59e0b;
transform: translateY(-4px);
}

.tip-title-eerste-indruk-werkplek {
font-size: clamp(1.1rem, 2vw, 1.35rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #f59e0b;
margin-bottom: 0.75rem;
}

.tip-text-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.65;
margin: 0;
}

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

@media (max-width: 768px) {
.appearance-content-eerste-indruk-werkplek {
flex-direction: column;
}

.appearance-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.appearance-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.tip-card-eerste-indruk-werkplek {
flex: 1 1 100%;
}
}

.body-language-section-eerste-indruk-werkplek {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.body-language-header-eerste-indruk-werkplek {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.body-language-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #0a0f1e;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.body-language-content-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.body-language-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.body-language-img-eerste-indruk-werkplek {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
object-fit: cover;
max-height: 400px;
}

.body-language-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.body-language-subtitle-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #0a0f1e;
margin-bottom: 1rem;
}

.body-language-paragraph-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.body-language-paragraph-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.body-language-paragraph-derde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1.5rem;
}

.featured-quote-eerste-indruk-werkplek {
padding: clamp(1.5rem, 3vw, 2rem);
border-left: 4px solid #f59e0b;
background: rgba(245, 158, 11, 0.08);
border-radius: 8px;
margin: 0;
}

.quote-text-eerste-indruk-werkplek {
font-size: clamp(1rem, 1.5vw, 1.2rem);
color: #0a0f1e;
font-style: italic;
line-height: 1.8;
margin-bottom: 1rem;
}

.quote-author-eerste-indruk-werkplek {
font-size: clamp(0.85rem, 1vw, 0.95rem);
color: #64748b;
font-style: normal;
display: block;
}

.body-language-cards-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2rem);
flex-wrap: wrap;
justify-content: center;
}

.body-card-eerste-indruk-werkplek {
flex: 1 1 calc(50% - 1rem);
min-width: 280px;
background: #f5f1e8;
border-radius: 12px;
padding: clamp(1.5rem, 2vw, 2rem);
}

.body-card-eerste-indruk-werkplek:first-child {
border-left: 4px solid #10b981;
}

.body-card-eerste-indruk-werkplek:last-child {
border-left: 4px solid #ef4444;
}

.body-card-title-eerste-indruk-werkplek {
font-size: clamp(1.1rem, 2vw, 1.35rem);
font-weight: 600;
color: #0a0f1e;
margin-bottom: 1rem;
}

.body-card-list-eerste-indruk-werkplek {
list-style: none;
padding: 0;
margin: 0;
}

.body-card-item-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #334155;
line-height: 1.65;
margin-bottom: 0.75rem;
padding-left: 1.5rem;
position: relative;
}

.body-card-item-eerste-indruk-werkplek:last-child {
margin-bottom: 0;
}

.body-card-eerste-indruk-werkplek:first-child .body-card-item-eerste-indruk-werkplek::before {
content: "";
position: absolute;
left: 0;
color: #10b981;
font-weight: bold;
}

.body-card-eerste-indruk-werkplek:last-child .body-card-item-eerste-indruk-werkplek::before {
content: "";
position: absolute;
left: 0;
color: #ef4444;
font-weight: bold;
}

@media (max-width: 768px) {
.body-language-content-eerste-indruk-werkplek {
flex-direction: column;
}

.body-language-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.body-language-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.body-card-eerste-indruk-werkplek {
flex: 1 1 100%;
}
}

.voice-section-eerste-indruk-werkplek {
background: #0d1526;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.voice-header-eerste-indruk-werkplek {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.voice-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.voice-content-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.voice-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.voice-subtitle-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #ffffff;
margin-bottom: 1rem;
}

.voice-paragraph-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 1rem;
}

.voice-paragraph-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 1rem;
}

.voice-paragraph-derde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 1rem;
}

.voice-paragraph-vierde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #cbd5e1;
line-height: 1.75;
margin-bottom: 0;
}

.voice-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.voice-img-eerste-indruk-werkplek {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
object-fit: cover;
max-height: 400px;
}

.voice-checklist-eerste-indruk-werkplek {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 158, 11, 0.2);
border-radius: 12px;
padding: clamp(1.5rem, 2vw, 2rem);
}

.checklist-title-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #f59e0b;
margin-bottom: 1.5rem;
}

.checklist-items-eerste-indruk-werkplek {
display: flex;
flex-direction: column;
gap: 1rem;
}

.checklist-item-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: flex-start;
}

.checklist-check-eerste-indruk-werkplek {
flex-shrink: 0;
font-size: 1.5rem;
color: #10b981;
font-weight: bold;
}

.checklist-text-eerste-indruk-werkplek {
flex: 1;
}

.checklist-label-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw, 1.1rem);
color: #ffffff;
display: block;
margin-bottom: 0.5rem;
}

.checklist-description-eerste-indruk-werkplek {
font-size: clamp(0.85rem, 1vw, 0.95rem);
color: #cbd5e1;
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.voice-content-eerste-indruk-werkplek {
flex-direction: column;
}

.voice-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.voice-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}
}

.interactions-section-eerste-indruk-werkplek {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.interactions-header-eerste-indruk-werkplek {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.interactions-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #0a0f1e;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

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

.interactions-image-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.interactions-img-eerste-indruk-werkplek {
width: 100%;
height: auto;
border-radius: 16px;
display: block;
object-fit: cover;
max-height: 400px;
}

.interactions-text-eerste-indruk-werkplek {
flex: 1 1 50%;
max-width: 50%;
}

.interactions-subtitle-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #0a0f1e;
margin-bottom: 1rem;
}

.interactions-paragraph-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.interactions-paragraph-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.interactions-paragraph-derde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.interactions-paragraph-vierde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 1rem;
}

.interactions-paragraph-vijfde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.75;
margin-bottom: 0;
}

@media (max-width: 768px) {
.interactions-content-eerste-indruk-werkplek {
flex-direction: column;
}

.interactions-image-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}

.interactions-text-eerste-indruk-werkplek {
flex: 1 1 100%;
max-width: 100%;
}
}

.common-mistakes-section-eerste-indruk-werkplek {
background: #0d1526;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.mistakes-header-eerste-indruk-werkplek {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.mistakes-subtitle-eerste-indruk-werkplek {
font-size: clamp(1rem, 1.5vw, 1.2rem);
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 0;
}

.mistakes-cards-eerste-indruk-werkplek {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
margin-top: clamp(2rem, 4vw, 3rem);
}

.mistake-card-eerste-indruk-werkplek {
flex: 1 1 calc(50% - 1rem);
min-width: 280px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 158, 11, 0.15);
border-radius: 12px;
padding: clamp(1.5rem, 2vw, 2rem);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.mistake-card-eerste-indruk-werkplek:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #f59e0b;
transform: translateY(-4px);
}

.mistake-title-eerste-indruk-werkplek {
font-size: clamp(1.1rem, 2vw, 1.35rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #f59e0b;
margin-bottom: 0.75rem;
}

.mistake-text-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.65;
margin: 0;
}

@media (max-width: 1024px) {
.mistake-card-eerste-indruk-werkplek {
flex: 1 1 calc(50% - 0.75rem);
}
}

@media (max-width: 768px) {
.mistake-card-eerste-indruk-werkplek {
flex: 1 1 100%;
}
}

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

.conclusion-content-eerste-indruk-werkplek {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #0a0f1e;
line-height: 1.2;
margin-bottom: 1.5rem;
text-align: center;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-text-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.conclusion-text-tweede-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.conclusion-text-derde-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #334155;
line-height: 1.8;
margin-bottom: 0;
}

.cta-box-eerste-indruk-werkplek {
background: linear-gradient(135deg, #f59e0b, #d97706);
padding: clamp(2rem, 4vw, 3rem);
border-radius: 16px;
text-align: center;
color: #ffffff;
margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #ffffff;
margin-bottom: 0.75rem;
}

.cta-text-eerste-indruk-werkplek {
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
color: #ffffff;
line-height: 1.6;
margin: 0;
}

.related-section-eerste-indruk-werkplek {
background: #0d1526;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.related-title-eerste-indruk-werkplek {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-subtitle-eerste-indruk-werkplek {
font-size: clamp(1rem, 1.5vw, 1.2rem);
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 0;
}

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

.related-card-eerste-indruk-werkplek {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 300px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(245, 158, 11, 0.15);
border-radius: 12px;
overflow: hidden;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.related-card-eerste-indruk-werkplek:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #f59e0b;
transform: translateY(-4px);
}

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

.related-img-eerste-indruk-werkplek {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-content-eerste-indruk-werkplek {
padding: clamp(1.5rem, 2vw, 2rem);
display: flex;
flex-direction: column;
flex: 1;
}

.related-article-title-eerste-indruk-werkplek {
font-size: clamp(1.1rem, 2vw, 1.35rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #ffffff;
margin-bottom: 0.75rem;
line-height: 1.3;
}

.related-article-desc-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.65;
margin-bottom: 1rem;
flex: 1;
}

.related-link-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #f59e0b;
text-decoration: none;
transition: color 0.3s ease;
font-weight: 600;
}

.related-link-eerste-indruk-werkplek:hover {
color: #fcd34d;
}

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

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

.disclaimer-section-eerste-indruk-werkplek {
background: #111d2f;
padding: clamp(2rem, 4vw, 3rem) 0;
overflow: hidden;
}

.disclaimer-content-eerste-indruk-werkplek {
max-width: 800px;
margin: 0 auto;
}

.disclaimer-title-eerste-indruk-werkplek {
font-size: clamp(1.25rem, 2.5vw, 1.75rem);
font-family: 'Playfair Display', serif;
font-weight: 600;
color: #f59e0b;
margin-bottom: 1rem;
}

.disclaimer-text-eerste-indruk-werkplek {
font-size: clamp(0.9rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.75;
margin: 0;
}

@media (max-width: 768px) {
.section-tag-eerste-indruk-werkplek {
font-size: 0.8rem;
}
}

.main-netwerken-professioneel {
  width: 100%;
  background: #ffffff;
}

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

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

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

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

.hero-subtitle-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-netwerken-professioneel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.meta-item-netwerken-professioneel {
  color: #64748b;
  font-weight: 500;
}

.meta-divider-netwerken-professioneel {
  color: #cbd5e1;
}

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

.hero-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.breadcrumbs-netwerken-professioneel span {
  color: #cbd5e1;
}

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

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

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

.intro-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.intro-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.prep-text-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.prep-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.prep-paragraph-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.prep-tips-netwerken-professioneel {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.prep-tips-title-netwerken-professioneel {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

.prep-list-netwerken-professioneel {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.prep-list-item-netwerken-professioneel {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.prep-image-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.prep-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.conv-image-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.conv-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.conv-text-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.conv-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conv-paragraph-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.body-language-section-netwerken-professioneel {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.body-text-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.body-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.body-paragraph-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.body-callout-netwerken-professioneel {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.callout-text-netwerken-professioneel {
  color: #1e40af;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.body-image-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.body-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.followup-image-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.followup-img-netwerken-professioneel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.followup-text-netwerken-professioneel {
  flex: 1 1 50%;
  max-width: 50%;
}

.followup-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.followup-paragraph-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.conclusion-content-netwerken-professioneel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-grid-netwerken-professioneel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.conclusion-item-netwerken-professioneel {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2563eb;
}

.item-title-netwerken-professioneel {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Lato', sans-serif;
}

.item-text-netwerken-professioneel {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.conclusion-text-netwerken-professioneel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-section-netwerken-professioneel {
  background: #fef3c7;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #fcd34d;
  border-bottom: 1px solid #fcd34d;
}

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

.disclaimer-title-netwerken-professioneel {
  color: #92400e;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.disclaimer-text-netwerken-professioneel {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.related-content-netwerken-professioneel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-netwerken-professioneel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.related-cards-netwerken-professioneel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-netwerken-professioneel {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-netwerken-professioneel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

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

.card-info-netwerken-professioneel {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-title-netwerken-professioneel {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  margin: 0;
  line-height: 1.4;
}

.card-description-netwerken-professioneel {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-link-netwerken-professioneel {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.card-link-netwerken-professioneel:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  .hero-content-netwerken-professioneel,
  .intro-content-netwerken-professioneel,
  .preparation-content-netwerken-professioneel,
  .conversation-content-netwerken-professioneel,
  .body-language-content-netwerken-professioneel,
  .follow-up-content-netwerken-professioneel {
    flex-direction: column;
  }

  .hero-text-netwerken-professioneel,
  .hero-image-netwerken-professioneel,
  .intro-text-netwerken-professioneel,
  .intro-image-netwerken-professioneel,
  .prep-text-netwerken-professioneel,
  .prep-image-netwerken-professioneel,
  .conv-image-netwerken-professioneel,
  .conv-text-netwerken-professioneel,
  .body-text-netwerken-professioneel,
  .body-image-netwerken-professioneel,
  .followup-image-netwerken-professioneel,
  .followup-text-netwerken-professioneel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conv-image-netwerken-professioneel {
    order: 0;
  }

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

  .conclusion-item-netwerken-professioneel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .intro-section-netwerken-professioneel,
  .preparation-section-netwerken-professioneel,
  .conversation-section-netwerken-professioneel,
  .body-language-section-netwerken-professioneel,
  .follow-up-section-netwerken-professioneel,
  .conclusion-section-netwerken-professioneel {
    padding: 2rem 0;
  }

  .hero-title-netwerken-professioneel,
  .intro-title-netwerken-professioneel,
  .prep-title-netwerken-professioneel,
  .conv-title-netwerken-professioneel,
  .body-title-netwerken-professioneel,
  .followup-title-netwerken-professioneel {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .related-card-netwerken-professioneel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-netwerken-professioneel {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-meta-netwerken-professioneel {
    font-size: 0.75rem;
  }
}

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

  .hero-content-netwerken-professioneel,
  .intro-content-netwerken-professioneel {
    gap: 1rem;
  }

  .prep-tips-netwerken-professioneel,
  .body-callout-netwerken-professioneel {
    padding: 1rem;
  }

  .related-cards-netwerken-professioneel {
    gap: 1rem;
  }

  .card-info-netwerken-professioneel {
    padding: 1rem;
  }
}

.main-professionele-email-etiquette {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-professionele-email-etiquette {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-professionele-email-etiquette {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-professionele-email-etiquette {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-professionele-email-etiquette {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.meta-item-professionele-email-etiquette i {
  color: #f59e0b;
  font-size: 1rem;
}

.hero-image-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-professionele-email-etiquette,
  .hero-image-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-professionele-email-etiquette {
    gap: 1rem;
  }
}

.breadcrumbs-professionele-email-etiquette {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9rem;
}

.breadcrumbs-professionele-email-etiquette a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-professionele-email-etiquette a:hover {
  color: #fcd34d;
}

.breadcrumbs-professionele-email-etiquette span {
  color: #64748b;
}

.breadcrumbs-professionele-email-etiquette a:last-child {
  color: #cbd5e1;
}

.intro-section-professionele-email-etiquette {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-professionele-email-etiquette {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-image-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .intro-content-professionele-email-etiquette {
    flex-direction: column;
  }

  .intro-text-professionele-email-etiquette,
  .intro-image-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-one-professionele-email-etiquette {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-professionele-email-etiquette {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.highlight-box-professionele-email-etiquette {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-title-professionele-email-etiquette {
  color: #fcd34d;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-list-professionele-email-etiquette {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.highlight-list-professionele-email-etiquette li {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list-professionele-email-etiquette li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

.content-image-one-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper-one-professionele-email-etiquette {
    flex-direction: column;
  }

  .content-text-one-professionele-email-etiquette,
  .content-image-one-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-professionele-email-etiquette {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-text-two-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-wrapper-two-professionele-email-etiquette {
    flex-direction: column;
  }

  .content-image-two-professionele-email-etiquette,
  .content-text-two-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-three-professionele-email-etiquette {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.structure-grid-professionele-email-etiquette {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.structure-card-professionele-email-etiquette {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 200px;
  background: rgba(245, 158, 11, 0.08);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.structure-card-title-professionele-email-etiquette {
  color: #f59e0b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.structure-card-text-professionele-email-etiquette {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.content-image-three-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper-three-professionele-email-etiquette {
    flex-direction: column;
  }

  .content-text-three-professionele-email-etiquette,
  .content-image-three-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .structure-card-professionele-email-etiquette {
    flex: 1 1 100%;
  }
}

.content-four-professionele-email-etiquette {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-four-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-four-professionele-email-etiquette {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-text-four-professionele-email-etiquette {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-professionele-email-etiquette {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.quote-text-professionele-email-etiquette {
  color: #fcd34d;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.quote-author-professionele-email-etiquette {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-style: normal;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .content-wrapper-four-professionele-email-etiquette {
    flex-direction: column;
  }

  .content-image-four-professionele-email-etiquette,
  .content-text-four-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-professionele-email-etiquette {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-professionele-email-etiquette {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-intro-professionele-email-etiquette {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.checklist-professionele-email-etiquette {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.checklist-item-professionele-email-etiquette {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(245, 158, 11, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
}

.checklist-icon-professionele-email-etiquette {
  color: #f59e0b;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-text-professionele-email-etiquette {
  flex: 1;
}

.checklist-title-professionele-email-etiquette {
  color: #fcd34d;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.checklist-desc-professionele-email-etiquette {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.conclusion-cta-professionele-email-etiquette {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
}

.conclusion-cta-text-professionele-email-etiquette {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.75;
  margin: 0;
}

.disclaimer-section-professionele-email-etiquette {
  background: #0d1526;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-professionele-email-etiquette {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
}

.disclaimer-title-professionele-email-etiquette {
  color: #f59e0b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-professionele-email-etiquette {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-professionele-email-etiquette {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-professionele-email-etiquette {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
}

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

.related-card-professionele-email-etiquette {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-professionele-email-etiquette:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-image-professionele-email-etiquette {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-professionele-email-etiquette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-professionele-email-etiquette {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-desc-professionele-email-etiquette {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-professionele-email-etiquette {
  color: #f59e0b;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-professionele-email-etiquette:hover {
  color: #fcd34d;
}

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

@media (max-width: 480px) {
  .hero-content-professionele-email-etiquette {
    flex-direction: column;
  }

  .hero-text-professionele-email-etiquette,
  .hero-image-professionele-email-etiquette {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-professionele-email-etiquette {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-item-professionele-email-etiquette {
    font-size: 0.85rem;
  }
}

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

.etiquette-mastery-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.hero-subtitle-about {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: var(--line-height-normal);
}

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

.hero-stats-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 1rem;
}

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

.stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-about {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.foundation-section-about {
  background: #ffffff;
  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;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

.foundation-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.approach-section-about {
  background: #0f172a;
  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;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

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

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

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

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

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--line-height-tight);
}

.step-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #cbd5e1;
  line-height: var(--line-height-normal);
}

.values-section-about {
  background: #f8fafc;
  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;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.values-subtitle-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-normal);
}

.values-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 1rem;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary);
  height: 50px;
  display: flex;
  align-items: center;
}

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.4rem);
  font-weight: 700;
  color: #1e293b;
  line-height: var(--line-height-tight);
}

.card-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: var(--line-height-normal);
}

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

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.philosophy-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  background: #f1f5f9;
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin: 2rem auto 0;
  max-width: 700px;
}

.quote-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #334155;
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  display: block;
  font-style: normal;
}

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

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

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.4rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--line-height-tight);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.3em;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1rem;
  }

  .stat-number-about {
    font-size: 1.5rem;
  }

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

  .step-number-about {
    min-width: auto;
  }

  .values-cards-about {
    flex-direction: column;
    align-items: stretch;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .values-cards-about {
    gap: 1.5rem;
  }

  .value-card-about {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .value-card-about {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

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

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

.portfolio-projects {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

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

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card__meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-card__category {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--color-primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

.portfolio-card__year {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-card__description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #000000;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.portfolio-cta__button:active {
  transform: translateY(0);
}

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

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

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card);
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.faq-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-bg-card);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-tertiary);
  transition: all var(--transition-base);
}

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

.faq-item__trigger {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
  transition: color var(--transition-base);
  text-align: left;
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

.faq-item__question {
  flex: 1;
  line-height: var(--line-height-normal);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[data-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--transition-base), opacity var(--transition-base), padding var(--transition-base);
}

.faq-item[data-expanded="true"] .faq-item__content {
  max-height: 500px;
  opacity: 1;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-md);
}

.faq-item__answer {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
  font-weight: 400;
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-card);
}

.faq-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.faq-cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: var(--letter-spacing-tight);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.faq-cta__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

.faq-cta__button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base);
  border: none;
  cursor: pointer;
  width: fit-content;
  text-align: center;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
}

.faq-cta__image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: none;
}

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

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

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

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

  .faq-item[data-expanded="true"] .faq-item__content {
    padding: var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta__container {
    grid-template-columns: 1fr 1fr;
  }

  .faq-cta__image {
    display: block;
  }
}

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

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

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

.conduct-guide {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

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

.conduct-guide .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.conduct-guide h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

.conduct-guide .updated-date {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.conduct-guide section {
  margin-bottom: var(--space-3xl);
}

.conduct-guide h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

.conduct-guide p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.conduct-guide ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 var(--space-lg) 0;
}

.conduct-guide li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.conduct-guide li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.conduct-guide .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.conduct-guide .contact-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.conduct-guide .contact-section p {
  color: var(--color-text-light);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.conduct-guide .contact-section strong {
  color: var(--color-primary-light);
  font-weight: 600;
}

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

  .conduct-guide .content {
    padding: var(--space-4xl) 0;
  }

  .conduct-guide section {
    margin-bottom: var(--space-4xl);
  }
}

@media (min-width: 1024px) {
  .conduct-guide .container {
    padding: 0 var(--space-2xl);
  }

  .conduct-guide .content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: var(--line-height-relaxed);
}

.thank-you-page {
  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-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
  color: var(--color-success);
  width: 100px;
  height: 100px;
  stroke: var(--color-success);
}

.thank-you-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.success-message {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-success);
  margin-bottom: var(--space-md);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
}

.description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
}

.next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
}

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-md);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-you-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .success-icon svg {
    width: 130px;
    height: 130px;
  }

  .thank-you-wrapper h1 {
    margin-bottom: var(--space-lg);
  }

  .success-message {
    margin-bottom: var(--space-lg);
  }

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

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

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .thank-you-wrapper {
    padding: var(--space-4xl) var(--space-3xl);
  }

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

  .success-icon svg {
    width: 150px;
    height: 150px;
  }

  .thank-you-wrapper h1 {
    margin-bottom: var(--space-xl);
  }

  .success-message {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
  }

  .description {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
  }

  .next-steps {
    margin-bottom: var(--space-3xl);
    font-size: 1.05rem;
  }

  .btn-return {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-wrapper,
  .success-icon,
  .btn-return {
    animation: none;
    transition: none;
  }
}

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

  .error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--color-bg-primary);
    overflow: hidden;
  }

  .error-section {
    width: 100%;
    padding: var(--space-lg) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    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;
  }

  .error-wrapper {
    text-align: center;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .error-code-wrapper {
    position: relative;
    margin-bottom: var(--space-2xl);
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: var(--letter-spacing-wider);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
  }

  .error-decoration {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-xl);
    animation: expandWidth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text-primary);
    letter-spacing: var(--letter-spacing-normal);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
    font-weight: 600;
    animation: fadeIn 1s ease-in-out 0.3s both;
  }

  .error-message {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
    animation: fadeIn 1s ease-in-out 0.4s both;
  }

  .error-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 0.95vw + 0.45rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-xl);
    animation: fadeIn 1s ease-in-out 0.5s both;
  }

  .btn-home {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wide);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    animation: fadeIn 1s ease-in-out 0.6s both;
    position: relative;
    overflow: hidden;
  }

  .btn-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-hover);
    transition: left var(--transition-base);
    z-index: -1;
  }

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

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

  .error-hints {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    animation: fadeIn 1s ease-in-out 0.7s both;
  }

  .hint-text {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 0.9vw + 0.45rem, 0.95rem);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    font-style: italic;
  }

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

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

  @keyframes expandWidth {
    from {
      width: 0;
    }
    to {
      width: 120px;
    }
  }

  @media (min-width: 768px) {
    .error-section {
      padding: var(--space-2xl) var(--space-lg);
      min-height: 100vh;
    }

    .error-hints {
      margin-top: var(--space-2xl);
      padding: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .error-section {
      padding: var(--space-3xl) var(--space-xl);
      min-height: 100vh;
    }

    .btn-home:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .error-hints {
      padding: var(--space-xl) var(--space-2xl);
    }
  }

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

.contact-connect {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

.contact-connect-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-connect-hero-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.contact-connect-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-connect-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: var(--letter-spacing-normal);
}

@media (min-width: 768px) {
  .contact-connect-hero {
    padding: var(--space-4xl) 0;
  }

  .contact-connect-hero h1 {
    margin-bottom: var(--space-lg);
  }
}

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

.contact-connect-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.contact-connect-form-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

.contact-connect-info-wrapper {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 1024px) {
  .contact-connect-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-connect-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-connect-form-wrapper h2,
.contact-connect-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-connect-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-connect-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-connect-label {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
}

.contact-connect-input,
.contact-connect-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
}

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

.contact-connect-input:focus,
.contact-connect-textarea:focus {
  outline: none;
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.contact-connect-input:hover,
.contact-connect-textarea:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.contact-connect-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-connect-privacy-notice {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  margin-top: var(--space-sm);
}

.contact-connect-privacy-notice a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-connect-privacy-notice a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-connect-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-wide);
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

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

.contact-connect-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-connect-info-box {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-connect-info-item {
  display: flex;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
}

.contact-connect-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.contact-connect-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-connect-info-content p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  margin: 0;
}

.contact-connect-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-connect-info-content a:hover {
  color: var(--color-primary-hover);
}

.contact-connect-info-hours {
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
  font-style: italic;
}

.contact-connect-expertise-box {
  background-color: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.contact-connect-expertise-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-connect-expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-connect-expertise-list li {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  padding-left: var(--space-md);
  position: relative;
}

.contact-connect-expertise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.contact-connect-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  margin-top: var(--space-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-connect-cta-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.contact-connect-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-connect-cta p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  letter-spacing: var(--letter-spacing-normal);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-connect-main {
    padding: var(--space-4xl) 0;
  }

  .contact-connect-info-box {
    padding: var(--space-xl);
  }

  .contact-connect-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-connect-main {
    padding: var(--space-4xl) 0;
  }

  .contact-connect-form-wrapper,
  .contact-connect-info-wrapper {
    flex: 1 1 auto;
  }
}

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

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

  .contact-connect-hero {
    padding: var(--space-2xl) 0;
  }

  .contact-connect-main {
    padding: var(--space-2xl) 0;
  }

  .contact-connect-grid {
    gap: var(--space-2xl);
  }

  .contact-connect-form-wrapper h2,
  .contact-connect-info-wrapper h2 {
    margin-bottom: var(--space-md);
  }

  .contact-connect-cta {
    padding: var(--space-2xl) 0;
    margin-top: var(--space-2xl);
  }
}

@supports (display: grid) {
  .contact-connect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  @media (min-width: 1024px) {
    .contact-connect-grid {
      grid-template-columns: 1fr 1fr;
      align-items: start;
    }
  }
}