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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(28, 25, 23, 0.02);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #d1faf0;
  --color-secondary: #ea580c;
  --color-secondary-hover: #c2410c;
  --color-secondary-light: #fed7aa;
  
  
  --color-success: #059669;
  --color-warning: #d97706;
  --color-error: #dc2626;
  --color-info: #0284c7;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 1px rgba(28, 25, 23, 0.03);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.15);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
}

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

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

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

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

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

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

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

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

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

p:last-child {
  margin-bottom: 0;
}

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

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

strong {
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
  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);
  }
}

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: none;
}

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

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

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

.btn-full {
  width: 100%;
}

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

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

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

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

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

.card-elevated:hover {
  box-shadow: var(--shadow-2xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

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

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid rgba(28, 25, 23, 0.1);
  border-radius: var(--radius-lg);
  background: var(--color-bg-tertiary);
  transition: all var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
  accent-color: var(--color-primary);
}

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

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

.form-group:last-child {
  margin-bottom: 0;
}

.form-error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

.form-hint {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

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

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(--lh-relaxed);
}

li:last-child {
  margin-bottom: 0;
}

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

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

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

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th, td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  color: var(--color-text-secondary);
}

th {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

tr:last-child td {
  border-bottom: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }
  
  .btn,
  .hidden-print {
    display: none;
  }
}
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-vertrouwen-hub {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-sm);
  position: static;
  z-index: 100;
  overflow: hidden;
}

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

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

.header-vertrouwen-hub-brand:hover {
  opacity: 0.85;
}

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

.header-vertrouwen-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header-vertrouwen-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  margin-left: 2rem;
}

.header-vertrouwen-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

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

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

.header-vertrouwen-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.header-vertrouwen-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-vertrouwen-hub-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.header-vertrouwen-hub-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-vertrouwen-hub-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-vertrouwen-hub-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.header-vertrouwen-hub-mobile-header {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid var(--color-text-light);
}

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

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

.header-vertrouwen-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.header-vertrouwen-hub-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid var(--color-text-light);
  transition: background var(--transition-base);
}

.header-vertrouwen-hub-mobile-link:active {
  background: var(--color-bg-secondary);
}

.header-vertrouwen-hub-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem);
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition-base);
  display: block;
}

.header-vertrouwen-hub-mobile-cta:active {
  background: var(--color-primary-hover);
}

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

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

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

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

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

  .header-vertrouwen-hub-cta-button {
    display: none;
  }
}

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

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

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

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

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

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
}

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

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

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

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

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

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

  .hero-buttons-index {
    justify-content: center;
  }

  .hero-stats-index {
    justify-content: center;
  }
}

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

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

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

.principles-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.principles-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 800px;
}

.principles-subtitle-index {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0;
}

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

.principle-card-index {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

.principle-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.about-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin: 0;
}

.about-description-index {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

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

.benefit-item-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.benefit-item-index i {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-image-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

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

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

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

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

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

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

.process-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 800px;
  margin: 0;
}

.process-subtitle-index {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0;
}

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

.process-step-index {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.process-step-index:hover {
  box-shadow: var(--shadow-md);
}

.step-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
}

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

.step-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

.step-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

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

.featured-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 800px;
  margin: 0;
}

.featured-subtitle-index {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0;
}

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

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

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

.card-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

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

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

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

.featured-card-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
}

.featured-card-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.featured-card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: auto;
}

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

.featured-cta-index {
  text-align: center;
  margin-top: 1rem;
}

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

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

.testimonials-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.testimonials-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 800px;
  margin: 0;
}

.testimonials-subtitle-index {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars-index {
  display: flex;
  gap: 0.25rem;
  color: var(--color-warning);
  font-size: 0.95rem;
}

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

.testimonial-author-index {
  color: var(--color-text-primary);
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
}

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

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 800px;
  margin: 0;
}

.faq-subtitle-index {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question-index {
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.faq-question-index:hover {
  background: var(--color-bg-secondary);
}

.faq-text-index {
  text-align: left;
  flex: 1;
}

.faq-question-index i {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--color-primary);
}

.faq-item-index.active .faq-question-index i {
  transform: rotate(45deg);
}

.faq-answer-index {
  padding: 0 clamp(1.25rem, 2vw, 1.75rem);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--color-bg-tertiary);
}

.faq-item-index.active .faq-answer-index {
  max-height: 500px;
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.faq-answer-index p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-box-index {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  max-width: 600px;
}

.cta-text-index {
  color: #f1f5f9;
  font-size: 1.05rem;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

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

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

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

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

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

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

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

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  opacity: 0.95;
}

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

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

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

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

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

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

  .featured-cards-index {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .hero-buttons-index {
    flex-direction: column;
    width: 100%;
  }

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

  .process-step-index {
    padding: 1.25rem;
  }

  .step-number-index {
    font-size: 1.5rem;
    min-width: 50px;
  }

  .principle-card-index {
    padding: 1.25rem;
  }

  .faq-question-index {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  justify-content: space-between;
}

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

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

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

.footer-nav {
  flex: 1 1 160px;
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: var(--fw-semibold);
}

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

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

.footer-nav-list a {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--fw-regular);
}

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

.footer-contact {
  flex: 1 1 200px;
  display: block;
}

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

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

.footer-legal {
  flex: 1 1 160px;
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: var(--fw-semibold);
}

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

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

.footer-legal-list a {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--fw-regular);
}

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

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

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

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-nav-list li,
  .footer-legal-list li {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .footer-content {
    gap: clamp(1.25rem, 3vw, 1.5rem);
  }

  .footer-about h3,
  .footer-nav h3,
  .footer-contact h3,
  .footer-legal h3 {
    margin-bottom: clamp(0.75rem, 1vw, 1rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.625rem);
  }

  .footer-nav-list li,
  .footer-legal-list li {
    flex: 1 1 100%;
    min-width: unset;
  }
}
    

.category-page-trust-professional-relationships {
  background: #0a0f1e;
  color: #ffffff;
  overflow-x: hidden;
}

.hero-section-trust {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-trust {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-subtitle-trust {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

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

.stat-item-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-trust {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #14b8a6;
  font-weight: 700;
}

.stat-label-trust {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  max-width: 150px;
  line-height: 1.4;
}

.posts-section-trust {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.posts-title-trust {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.posts-subtitle-trust {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #94a3b8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.card-trust {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 1 clamp(280px, 45vw, 360px);
  background: #111d2f;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
}

.card-trust:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.card-image-trust {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-body-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
  flex-grow: 1;
}

.card-title-trust {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.card-description-trust {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.card-meta-item-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.card-meta-item-trust i {
  color: #14b8a6;
  font-size: 0.875rem;
}

.card-link-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  width: fit-content;
}

.card-link-trust:hover {
  color: #0f766e;
  gap: 0.75rem;
}

.card-link-trust::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-trust:hover::after {
  transform: translateX(4px);
}

.principles-section-trust {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.principles-header-trust {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principles-title-trust {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.principles-intro-trust {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #94a3b8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.principles-list-trust {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.principle-item-trust {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.principle-number-trust {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.1);
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(20, 184, 166, 0.2);
}

.principle-text-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.principle-name-trust {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.principle-description-trust {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.insights-section-trust {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-trust {
  text-align: center;
}

.insights-title-trust {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.insights-box-trust {
  background: rgba(20, 184, 166, 0.05);
  border-left: 4px solid #14b8a6;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-text-trust {
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.insights-highlight-trust {
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  color: #14b8a6;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

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

  .stat-item-trust {
    width: 100%;
  }

  .principle-item-trust {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .principle-number-trust {
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .hero-title-trust {
    font-size: 1.75rem;
  }

  .posts-title-trust {
    font-size: 1.5rem;
  }

  .principles-title-trust {
    font-size: 1.5rem;
  }

  .insights-title-trust {
    font-size: 1.5rem;
  }

  .principle-number-trust {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .card-body-trust {
    padding: 0 1rem 1rem 1rem;
  }

  .insights-box-trust {
    padding: 1.5rem;
  }
}

.main-actief-luisteren-zakelijk {
  width: 100%;
  overflow-x: hidden;
}

.breadcrumbs-actief-luisteren-zakelijk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-actief-luisteren-zakelijk a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-actief-luisteren-zakelijk a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-actief-luisteren-zakelijk span {
  color: var(--color-text-muted);
}

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

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

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

.hero-title-actief-luisteren-zakelijk {
  color: #0a0a0a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

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

.hero-meta-actief-luisteren-zakelijk {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-actief-luisteren-zakelijk {
  color: #57534e;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-divider-actief-luisteren-zakelijk {
  color: #d6d3d1;
  font-size: 1rem;
}

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

.hero-img-actief-luisteren-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

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

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

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

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

.intro-text-actief-luisteren-zakelijk {
  flex: 1 1 65%;
  max-width: 65%;
}

.intro-paragraph-actief-luisteren-zakelijk {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.intro-highlight-actief-luisteren-zakelijk {
  flex: 1 1 35%;
  max-width: 35%;
}

.highlight-box-actief-luisteren-zakelijk {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.highlight-title-actief-luisteren-zakelijk {
  color: var(--color-primary-hover);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.highlight-list-actief-luisteren-zakelijk {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-actief-luisteren-zakelijk {
  color: var(--color-primary-hover);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-actief-luisteren-zakelijk:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.highlight-item-actief-luisteren-zakelijk:last-child {
  margin-bottom: 0;
}

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

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

.content-section-one-actief-luisteren-zakelijk,
.content-section-two-actief-luisteren-zakelijk,
.content-section-three-actief-luisteren-zakelijk,
.content-section-four-actief-luisteren-zakelijk,
.content-section-five-actief-luisteren-zakelijk {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-actief-luisteren-zakelijk,
.content-section-three-actief-luisteren-zakelijk,
.content-section-five-actief-luisteren-zakelijk {
  background: #f8fafc;
}

.content-section-two-actief-luisteren-zakelijk,
.content-section-four-actief-luisteren-zakelijk {
  background: #ffffff;
}

.content-wrapper-one-actief-luisteren-zakelijk,
.content-wrapper-two-actief-luisteren-zakelijk,
.content-wrapper-three-actief-luisteren-zakelijk,
.content-wrapper-four-actief-luisteren-zakelijk,
.content-wrapper-five-actief-luisteren-zakelijk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-wrapper-two-actief-luisteren-zakelijk,
.content-wrapper-four-actief-luisteren-zakelijk {
  flex-direction: row-reverse;
}

.content-card-one-actief-luisteren-zakelijk,
.content-card-two-actief-luisteren-zakelijk,
.content-card-three-actief-luisteren-zakelijk,
.content-card-four-actief-luisteren-zakelijk,
.content-card-five-actief-luisteren-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-image-one-actief-luisteren-zakelijk,
.content-image-two-actief-luisteren-zakelijk,
.content-image-three-actief-luisteren-zakelijk,
.content-image-four-actief-luisteren-zakelijk,
.content-image-five-actief-luisteren-zakelijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-actief-luisteren-zakelijk,
.content-img-two-actief-luisteren-zakelijk,
.content-img-three-actief-luisteren-zakelijk,
.content-img-four-actief-luisteren-zakelijk,
.content-img-five-actief-luisteren-zakelijk {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.card-number-actief-luisteren-zakelijk {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.content-title-one-actief-luisteren-zakelijk,
.content-title-two-actief-luisteren-zakelijk,
.content-title-three-actief-luisteren-zakelijk,
.content-title-four-actief-luisteren-zakelijk,
.content-title-five-actief-luisteren-zakelijk {
  color: #0a0a0a;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

.content-text-one-actief-luisteren-zakelijk,
.content-text-two-actief-luisteren-zakelijk,
.content-text-three-actief-luisteren-zakelijk,
.content-text-four-actief-luisteren-zakelijk,
.content-text-five-actief-luisteren-zakelijk {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-text-one-actief-luisteren-zakelijk:last-child,
.content-text-two-actief-luisteren-zakelijk:last-child,
.content-text-three-actief-luisteren-zakelijk:last-child,
.content-text-four-actief-luisteren-zakelijk:last-child,
.content-text-five-actief-luisteren-zakelijk:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content-wrapper-one-actief-luisteren-zakelijk,
  .content-wrapper-two-actief-luisteren-zakelijk,
  .content-wrapper-three-actief-luisteren-zakelijk,
  .content-wrapper-four-actief-luisteren-zakelijk,
  .content-wrapper-five-actief-luisteren-zakelijk {
    flex-direction: column !important;
  }

  .content-card-one-actief-luisteren-zakelijk,
  .content-card-two-actief-luisteren-zakelijk,
  .content-card-three-actief-luisteren-zakelijk,
  .content-card-four-actief-luisteren-zakelijk,
  .content-card-five-actief-luisteren-zakelijk,
  .content-image-one-actief-luisteren-zakelijk,
  .content-image-two-actief-luisteren-zakelijk,
  .content-image-three-actief-luisteren-zakelijk,
  .content-image-four-actief-luisteren-zakelijk,
  .content-image-five-actief-luisteren-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-actief-luisteren-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-actief-luisteren-zakelijk {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

.conclusion-text-actief-luisteren-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-text-actief-luisteren-zakelijk p {
  color: #e0e0e0;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 0;
}

.conclusion-cta-actief-luisteren-zakelijk {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button-actief-luisteren-zakelijk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.cta-button-actief-luisteren-zakelijk:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.disclaimer-content-actief-luisteren-zakelijk {
  background: #ffffff;
  border-left: 4px solid var(--color-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-actief-luisteren-zakelijk {
  color: var(--color-secondary-hover);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.disclaimer-text-actief-luisteren-zakelijk {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.related-content-actief-luisteren-zakelijk {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.related-title-actief-luisteren-zakelijk {
  color: #0a0a0a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

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

.related-card-actief-luisteren-zakelijk {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

.related-text-actief-luisteren-zakelijk {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-actief-luisteren-zakelijk {
  color: #0a0a0a;
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.related-card-description-actief-luisteren-zakelijk {
  color: #57534e;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-actief-luisteren-zakelijk {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-link-actief-luisteren-zakelijk:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 1024px) {
  .related-card-actief-luisteren-zakelijk {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-actief-luisteren-zakelijk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-cta-actief-luisteren-zakelijk {
    width: 100%;
  }

  .cta-button-actief-luisteren-zakelijk {
    width: 100%;
  }
}

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

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

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

.main-consistentie-vertrouwen {
  background: #fffbeb;
  color: #1c1917;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

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

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

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

.hero-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-consistentie-vertrouwen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #f0f9ff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-consistentie-vertrouwen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-consistentie-vertrouwen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1faf0;
  font-weight: 500;
}

.meta-item-consistentie-vertrouwen i {
  font-size: 1rem;
}

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

.hero-img-consistentie-vertrouwen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.breadcrumbs-consistentie-vertrouwen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-consistentie-vertrouwen a {
  color: #d1faf0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-consistentie-vertrouwen a:hover {
  color: #ffffff;
}

.breadcrumbs-consistentie-vertrouwen span {
  color: #a7f3d0;
}

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

.intro-content-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.intro-text-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.intro-paragraph-consistentie-vertrouwen {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.75;
  margin: 0;
}

.intro-highlight-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
}

.highlight-box-consistentie-vertrouwen {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
}

.highlight-text-consistentie-vertrouwen {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #1c1917;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

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

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

.content-text-one-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-consistentie-vertrouwen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-consistentie-vertrouwen:last-child {
  margin-bottom: 0;
}

.content-image-one-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-consistentie-vertrouwen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.content-section-two-consistentie-vertrouwen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-two-consistentie-vertrouwen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.pillars-list-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pillar-item-consistentie-vertrouwen {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
}

.pillar-number-consistentie-vertrouwen {
  font-size: 1rem;
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}

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

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

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

.content-text-three-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-three-consistentie-vertrouwen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-paragraph-three-consistentie-vertrouwen:last-child {
  margin-bottom: 0;
}

.content-image-three-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.quote-section-consistentie-vertrouwen {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-consistentie-vertrouwen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-consistentie-vertrouwen {
  border: none;
  padding: 0;
  margin: 0;
}

.quote-text-consistentie-vertrouwen {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Lora', serif;
}

.quote-author-consistentie-vertrouwen {
  font-size: 0.95rem;
  color: #d1faf0;
  font-style: normal;
  display: block;
  font-weight: 600;
}

.content-section-four-consistentie-vertrouwen {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-consistentie-vertrouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-image-four-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-four-consistentie-vertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-four-consistentie-vertrouwen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.steps-list-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step-box-consistentie-vertrouwen {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 8px;
  border-top: 3px solid #0d9488;
}

.step-title-consistentie-vertrouwen {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}

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

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

.conclusion-content-consistentie-vertrouwen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-text-consistentie-vertrouwen {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #f0f9ff;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.conclusion-text-consistentie-vertrouwen:last-of-type {
  margin-bottom: 2rem;
}

.conclusion-cta-consistentie-vertrouwen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button-consistentie-vertrouwen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #0d9488;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button-consistentie-vertrouwen:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #0f766e;
}

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

.related-content-consistentie-vertrouwen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-subtitle-consistentie-vertrouwen {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #57534e;
  text-align: center;
  margin-bottom: 0;
}

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

.related-card-consistentie-vertrouwen {
  flex: 1 1 calc(33.333% - 1.667rem);
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-consistentie-vertrouwen:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.related-image-consistentie-vertrouwen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-img-consistentie-vertrouwen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-consistentie-vertrouwen:hover .related-img-consistentie-vertrouwen {
  transform: scale(1.05);
}

.related-text-consistentie-vertrouwen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-consistentie-vertrouwen {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.disclaimer-section-consistentie-vertrouwen {
  background: #f5f5f5;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
}

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

.disclaimer-title-consistentie-vertrouwen {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

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

@media (max-width: 1024px) {
  .hero-content-consistentie-vertrouwen,
  .content-wrapper-one-consistentie-vertrouwen,
  .content-wrapper-two-consistentie-vertrouwen,
  .content-wrapper-three-consistentie-vertrouwen,
  .content-wrapper-four-consistentie-vertrouwen {
    flex-direction: column;
  }

  .hero-text-consistentie-vertrouwen,
  .hero-image-consistentie-vertrouwen,
  .content-text-one-consistentie-vertrouwen,
  .content-image-one-consistentie-vertrouwen,
  .content-text-two-consistentie-vertrouwen,
  .content-image-two-consistentie-vertrouwen,
  .content-text-three-consistentie-vertrouwen,
  .content-image-three-consistentie-vertrouwen,
  .content-text-four-consistentie-vertrouwen,
  .content-image-four-consistentie-vertrouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-consistentie-vertrouwen,
  .content-image-four-consistentie-vertrouwen {
    order: 0;
  }
}

@media (max-width: 768px) {
  .related-card-consistentie-vertrouwen {
    flex: 1 1 100%;
    min-width: auto;
    max-width: 100%;
  }

  .breadcrumbs-consistentie-vertrouwen {
    font-size: 0.8rem;
  }

  .pillars-list-consistentie-vertrouwen,
  .steps-list-consistentie-vertrouwen {
    gap: 1rem;
  }

  .pillar-item-consistentie-vertrouwen,
  .step-box-consistentie-vertrouwen {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-meta-consistentie-vertrouwen {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-item-consistentie-vertrouwen {
    font-size: 0.8rem;
  }

  .quote-text-consistentie-vertrouwen {
    font-size: 1.25rem;
  }

  .cta-button-consistentie-vertrouwen {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

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

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

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

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

.breadcrumbs-authentieke-communicatie a {
  color: #64748b;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-authentieke-communicatie a:hover {
  color: #0d9488;
}

.breadcrumbs-authentieke-communicatie span {
  color: #475569;
}

.breadcrumbs-authentieke-communicatie span:last-child {
  color: #cbd5e1;
}

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

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

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

.hero-subtitle-authentieke-communicatie {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-authentieke-communicatie {
  color: #94a3b8;
}

.meta-divider-authentieke-communicatie {
  color: #475569;
}

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

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

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

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

  .hero-section-authentieke-communicatie {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

.intro-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-authentieke-communicatie:last-child {
  margin-bottom: 0;
}

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

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

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

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

.content-one-section-authentieke-communicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-list-authentieke-communicatie {
  margin-left: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.list-item-authentieke-communicatie {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.list-item-authentieke-communicatie:last-child {
  margin-bottom: 0;
}

.content-one-image-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-authentieke-communicatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-authentieke-communicatie {
    flex-direction: column;
  }

  .content-one-text-authentieke-communicatie,
  .content-one-image-authentieke-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-two-image-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-image-authentieke-communicatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-two-text-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-item-authentieke-communicatie {
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #0d9488;
}

.practice-item-authentieke-communicatie:last-child {
  margin-bottom: 0;
}

.practice-title-authentieke-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.practice-text-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .content-two-wrapper-authentieke-communicatie {
    flex-direction: column;
  }

  .content-two-image-authentieke-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-two-text-authentieke-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.quote-wrapper-authentieke-communicatie {
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-authentieke-communicatie {
  border-left: 4px solid #0d9488;
  padding: clamp(2rem, 3vw, 2.5rem);
  margin: 0;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 8px;
}

.quote-text-authentieke-communicatie {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  font-style: italic;
  display: block;
  margin: 0;
}

.content-three-section-authentieke-communicatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-list-authentieke-communicatie {
  margin-left: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-image-authentieke-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-authentieke-communicatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-three-wrapper-authentieke-communicatie {
    flex-direction: column;
  }

  .content-three-text-authentieke-communicatie,
  .content-three-image-authentieke-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-authentieke-communicatie {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-authentieke-communicatie {
  background: #f0fdf4;
  border: 2px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-title-authentieke-communicatie {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.highlight-steps-authentieke-communicatie {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-authentieke-communicatie {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-authentieke-communicatie {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #0d9488;
  min-width: 50px;
  line-height: 1;
}

.step-text-authentieke-communicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-authentieke-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-authentieke-communicatie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-authentieke-communicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.12);
}

.related-card-image-authentieke-communicatie {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-authentieke-communicatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-authentieke-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-authentieke-communicatie {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

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

.related-card-link-authentieke-communicatie:hover {
  color: #0f766e;
}

@media (max-width: 768px) {
  .related-cards-authentieke-communicatie {
    flex-direction: column;
  }

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

.disclaimer-section-authentieke-communicatie {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-authentieke-communicatie {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-authentieke-communicatie {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #f1f5f9;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.disclaimer-text-authentieke-communicatie {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title-authentieke-communicatie {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .intro-title-authentieke-communicatie,
  .content-one-title-authentieke-communicatie,
  .content-two-title-authentieke-communicatie,
  .content-three-title-authentieke-communicatie,
  .conclusion-title-authentieke-communicatie,
  .related-title-authentieke-communicatie {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .hero-section-authentieke-communicatie {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .intro-section-authentieke-communicatie,
  .content-one-section-authentieke-communicatie,
  .content-two-section-authentieke-communicatie,
  .quote-section-authentieke-communicatie,
  .content-three-section-authentieke-communicatie,
  .conclusion-section-authentieke-communicatie,
  .related-section-authentieke-communicatie,
  .disclaimer-section-authentieke-communicatie {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-authentieke-communicatie {
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .hero-title-authentieke-communicatie {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .hero-subtitle-authentieke-communicatie {
    font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  }

  .hero-meta-authentieke-communicatie {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .step-number-authentieke-communicatie {
    min-width: 40px;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  }
}

.main-vertrouwen-herstellen {
  width: 100%;
  background: #fffbeb;
}

.hero-section-vertrouwen-herstellen {
  background: linear-gradient(135deg, #1c1917 0%, #2d2520 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

.hero-text-wrapper-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-vertrouwen-herstellen {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-meta-vertrouwen-herstellen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item-vertrouwen-herstellen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #b8b3ac;
}

.meta-item-vertrouwen-herstellen i {
  color: #0d9488;
  font-size: 1.1rem;
}

.hero-image-wrapper-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-vertrouwen-herstellen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-vertrouwen-herstellen {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumbs-vertrouwen-herstellen a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs-vertrouwen-herstellen a:hover {
  color: #0f766e;
}

.breadcrumb-separator-vertrouwen-herstellen {
  color: #6b6b63;
}

.breadcrumb-current-vertrouwen-herstellen {
  color: #a8a29e;
}

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

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

  .hero-image-vertrouwen-herstellen {
    max-height: 350px;
  }

  .hero-meta-vertrouwen-herstellen {
    gap: 1.5rem;
  }
}

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

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

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

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

.intro-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

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

.intro-paragraph-vertrouwen-herstellen:last-child {
  margin-bottom: 0;
}

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

.intro-image-vertrouwen-herstellen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

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

  .intro-image-vertrouwen-herstellen img {
    max-height: 300px;
  }
}

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

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

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

.response-image-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.response-image-vertrouwen-herstellen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.response-text-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.response-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.response-paragraph-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.quote-vertrouwen-herstellen {
  border-left: 4px solid #0d9488;
  padding-left: 1.5rem;
  margin: 2rem 0;
  background: rgba(13, 148, 136, 0.05);
  padding: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
}

.quote-text-vertrouwen-herstellen {
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.25rem);
  color: #1c1917;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  margin: 0;
}

.quote-author-vertrouwen-herstellen {
  font-size: 0.95rem;
  color: #0d9488;
  font-weight: 600;
  display: block;
  font-style: normal;
}

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

  .response-image-vertrouwen-herstellen,
  .response-text-vertrouwen-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .response-image-vertrouwen-herstellen img {
    max-height: 300px;
  }
}

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

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

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

.responsibility-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.responsibility-intro-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.75;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.responsibility-cards-vertrouwen-herstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.card-vertrouwen-herstellen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 350px;
  background: #fef3c7;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(13, 148, 136, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.card-vertrouwen-herstellen:hover {
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

.card-icon-vertrouwen-herstellen {
  font-size: 2.5rem;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
}

.card-text-vertrouwen-herstellen {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
}

.responsibility-image-vertrouwen-herstellen {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.responsibility-image-vertrouwen-herstellen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

@media (max-width: 768px) {
  .responsibility-cards-vertrouwen-herstellen {
    flex-direction: column;
  }

  .card-vertrouwen-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .responsibility-image-vertrouwen-herstellen img {
    max-height: 300px;
  }
}

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

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

.repair-content-vertrouwen-herstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.repair-text-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.repair-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.repair-paragraph-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.repair-subheading-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
}

.repair-list-vertrouwen-herstellen {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.repair-list-item-vertrouwen-herstellen {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.repair-bold-vertrouwen-herstellen {
  color: #1c1917;
  font-weight: 600;
}

.repair-image-vertrouwen-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.repair-image-vertrouwen-herstellen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

  .repair-text-vertrouwen-herstellen,
  .repair-image-vertrouwen-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .repair-image-vertrouwen-herstellen img {
    max-height: 300px;
  }
}

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

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

.timeline-content-vertrouwen-herstellen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.timeline-intro-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.75;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.timeline-phases-vertrouwen-herstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.phase-vertrouwen-herstellen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 320px;
  background: #fef3c7;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phase-number-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0d9488;
  line-height: 1;
}

.phase-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
}

.phase-text-vertrouwen-herstellen {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
}

.timeline-note-vertrouwen-herstellen {
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid #0d9488;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.timeline-note-text-vertrouwen-herstellen {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-phases-vertrouwen-herstellen {
    flex-direction: column;
  }

  .phase-vertrouwen-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-vertrouwen-herstellen {
  background: #1c1917;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-vertrouwen-herstellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-paragraph-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #d6d3d1;
  line-height: 1.75;
}

.conclusion-cta-vertrouwen-herstellen {
  background: rgba(13, 148, 136, 0.15);
  border: 2px solid #0d9488;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.cta-text-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

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

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

.disclaimer-content-vertrouwen-herstellen {
  background: #fef3c7;
  border-left: 4px solid #ea580c;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon-vertrouwen-herstellen {
  font-size: 1.5rem;
  color: #ea580c;
}

.disclaimer-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1917;
  margin: 0 0 0.5rem 0;
}

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

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

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

.related-content-vertrouwen-herstellen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-subtitle-vertrouwen-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-vertrouwen-herstellen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-vertrouwen-herstellen:hover {
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.12);
  transform: translateY(-6px);
}

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

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

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

.related-card-title-vertrouwen-herstellen {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.3;
}

.related-card-text-vertrouwen-herstellen {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

  .related-card-vertrouwen-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

p, span, li, cite {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .hero-section-vertrouwen-herstellen {
    padding: 3rem 0;
  }

  .intro-section-vertrouwen-herstellen,
  .response-section-vertrouwen-herstellen,
  .repair-section-vertrouwen-herstellen,
  .timeline-section-vertrouwen-herstellen,
  .conclusion-section-vertrouwen-herstellen,
  .disclaimer-section-vertrouwen-herstellen,
  .related-section-vertrouwen-herstellen {
    padding: 2.5rem 0;
  }
}

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

  .intro-title-vertrouwen-herstellen,
  .response-title-vertrouwen-herstellen,
  .repair-title-vertrouwen-herstellen,
  .timeline-title-vertrouwen-herstellen,
  .conclusion-title-vertrouwen-herstellen,
  .related-title-vertrouwen-herstellen {
    font-size: 1.25rem;
  }

  .card-vertrouwen-herstellen {
    flex: 1 1 100%;
    min-width: auto;
  }

  .phase-vertrouwen-herstellen {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

.trust-foundation-about {
  background: #0a0f1e;
  color: #ffffff;
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #94a3b8;
  max-width: 700px;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto;
  object-fit: cover;
}

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

.stat-card-about {
  flex: 1 1 clamp(150px, 20vw, 200px);
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number-about {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  margin-top: 0.5rem;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-description-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-text-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.foundation-paragraph-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #e2e8f0;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.pillars-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

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

.pillar-card-about {
  flex: 1 1 clamp(280px, 100%, 360px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.pillar-card-about:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: #14b8a6;
  transform: translateY(-4px);
}

.pillar-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #14b8a6;
  display: inline-block;
}

.pillar-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pillar-description-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #a1b4c8;
  line-height: 1.7;
}

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

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

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

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

.step-number-about {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  min-width: clamp(60px, 8vw, 100px);
}

.step-details-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.approach-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto;
  object-fit: cover;
}

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

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

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

.values-text-about {
  flex: 1 1 clamp(280px, 100%, 500px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.values-list-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.values-item-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.values-check-about {
  color: #14b8a6;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

.values-item-text-about {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: #e2e8f0;
  line-height: 1.6;
}

.values-image-about {
  flex: 1 1 clamp(280px, 100%, 450px);
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.featured-quote-about {
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid #14b8a6;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: #0a0f1e;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: #14b8a6;
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .step-number-about {
    min-width: auto;
  }

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

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

  .hero-content-about {
    text-align: center;
  }

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

  .stats-grid-about {
    flex-direction: column;
  }

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

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

  .section-title-about {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .step-number-about {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

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

.services-page {
    background-color: var(--color-bg-primary);
    overflow: hidden;
  }

  .services-hero {
    background-color: var(--color-bg-tertiary);
    padding: var(--space-2xl) var(--space-md);
    border-bottom: 2px solid var(--color-primary-light);
    overflow: hidden;
  }

  .services-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .services-hero-title {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-md);
  }

  .services-hero-subtitle {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    line-height: var(--lh-normal);
    font-weight: var(--fw-regular);
  }

  .services-cards-section {
    padding: var(--space-3xl) var(--space-md);
    background-color: var(--color-bg-primary);
    overflow: hidden;
  }

  .services-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    display: flex;
    flex-direction: column;
  }

  .service-card {
    background-color: var(--color-bg-card);
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
  }

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

  .service-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    color: var(--color-primary);
  }

  .service-card-title {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-sm);
  }

  .service-card-description {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: var(--lh-normal);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
  }

  .service-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }

  .service-topics li {
    font-family: var(--font-primary);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    padding-left: var(--space-md);
    position: relative;
  }

  .service-topics li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--fw-bold);
  }

  .services-cta-section {
    background-color: var(--color-primary);
    padding: var(--space-3xl) var(--space-md);
    overflow: hidden;
  }

  .services-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .services-cta-title {
    font-family: var(--font-heading);
    color: var(--color-bg-tertiary);
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.25rem);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-md);
  }

  .services-cta-description {
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-2xl);
  }

  .services-cta-button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-bg-tertiary);
    padding: var(--space-sm) var(--space-2xl);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid var(--color-secondary);
  }

  .services-cta-button:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

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

    .services-cards-section {
      padding: var(--space-4xl) var(--space-2xl);
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2xl);
    }

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

    .services-cta-section {
      padding: var(--space-4xl) var(--space-2xl);
    }
  }

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

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

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-3xl);
    }

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

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

    .service-card-description {
      font-size: 1rem;
    }
  }

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

    .services-container {
      max-width: 1400px;
    }
  }

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

.portfolio-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  border-bottom: 1px solid var(--color-text-light);
  overflow: hidden;
}

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

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
}

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

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

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

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

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

  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

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

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--fw-semibold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.portfolio-card-year {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--lh-normal);
  flex-grow: 1;
}

@media (min-width: 768px) {
  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-card-image {
    height: 320px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  border-top: 1px solid var(--color-text-light);
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

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

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

.trust-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.trust-docs main {
  width: 100%;
}

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

.trust-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.trust-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.trust-docs .updated-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-2xl);
}

.trust-docs .intro-paragraph {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.trust-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.trust-docs section {
  margin-bottom: var(--space-2xl);
}

.trust-docs section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.trust-docs ul {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.trust-docs ul li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.trust-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
}

.trust-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.trust-docs .contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.trust-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

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

  .trust-docs h1 {
    margin-bottom: var(--space-xl);
  }

  .trust-docs h2 {
    margin-top: var(--space-2xl);
  }
}

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

  .trust-docs .content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

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

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

@media (min-width: 768px) {
  .thank-content {
    gap: var(--space-xl);
  }
}

.thank-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  animation: scaleIn 0.6s ease-out;
}

@media (min-width: 768px) {
  .thank-icon {
    width: 100px;
    height: 100px;
  }
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-success);
  stroke-width: 2;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: var(--space-md) 0 0 0;
  animation: slideUp 0.7s ease-out 0.1s both;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: var(--lh-normal);
  margin: 0;
  animation: slideUp 0.7s ease-out 0.2s both;
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  animation: slideUp 0.7s ease-out 0.3s both;
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  animation: slideUp 0.7s ease-out 0.4s both;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-semibold);
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  animation: slideUp 0.7s ease-out 0.5s both;
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .btn-return {
    padding: var(--space-md) var(--space-2xl);
  }
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 480px) {
  .thank-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .thank-icon {
    width: 70px;
    height: 70px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .thank-description,
  .thank-next-steps {
    font-size: 0.9rem;
  }
  
  .btn-return {
    width: 100%;
    max-width: 300px;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

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

.error-visual {
  margin-bottom: var(--space-2xl);
  animation: float-in 0.8s ease-out;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.error-accent {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(150px, 30vw, 280px);
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
  opacity: 0.6;
  animation: expand 0.8s ease-out 0.2s backwards;
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: var(--space-lg) 0 var(--space-md) 0;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-md) 0;
  font-weight: var(--fw-regular);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw + 0.4rem, 1.05rem);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin: var(--space-md) 0 var(--space-xl) 0;
  font-weight: var(--fw-regular);
  font-style: italic;
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  animation: slide-up 0.8s ease-out 0.3s backwards;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.feature-icon {
  font-size: clamp(2rem, 5vw, 2.5rem);
  display: block;
  line-height: 1;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.3rem, 1rem);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
  margin: 0;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: clamp(150px, 30vw, 280px);
    opacity: 0.6;
  }
}

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-code-wrapper {
    margin-bottom: var(--space-3xl);
  }

  .error-message {
    margin-bottom: var(--space-3xl);
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .error-code-wrapper {
    margin-bottom: var(--space-3xl);
  }

  .error-message {
    margin-bottom: var(--space-3xl);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-2xl);
  }
}

.contact-help-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-help-hero {
  background-color: var(--color-bg-tertiary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-help-hero-content {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-help-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.contact-help-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.contact-help-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-help-main-wrapper {
  padding: 0 var(--space-md);
}

.contact-help-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-help-form-section {
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-help-form-header {
  margin-bottom: 2rem;
}

.contact-help-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.contact-help-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-help-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-help-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

.contact-help-input,
.contact-help-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), background-color var(--transition-base);
  box-sizing: border-box;
}

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

.contact-help-input:focus,
.contact-help-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
}

.contact-help-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-help-form-privacy {
  margin: var(--space-sm) 0;
}

.contact-help-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.9rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-help-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

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

.contact-help-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
}

.contact-help-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-help-submit:active {
  transform: translateY(0);
}

.contact-help-info-section {
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-help-info-header {
  margin-bottom: 2rem;
}

.contact-help-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.contact-help-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-help-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-help-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-help-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-help-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-help-info-content {
  flex: 1;
}

.contact-help-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
}

.contact-help-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
  display: inline-block;
}

.contact-help-info-value:hover {
  color: var(--color-primary-hover);
}

.contact-help-info-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-help-highlight {
  background-color: var(--color-primary-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.contact-help-highlight-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.contact-help-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-help-highlight-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  padding-left: 1.5rem;
  position: relative;
}

.contact-help-highlight-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.contact-help-cta {
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-help-cta-wrapper {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-help-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-tertiary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.contact-help-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-bg-tertiary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-help-hero {
    padding: 4rem 0;
  }

  .contact-help-main {
    padding: 4rem 0;
  }

  .contact-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-help-form-section,
  .contact-help-info-section {
    padding: 3rem;
  }

  .contact-help-cta {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: 5rem 0;
  }

  .contact-help-main {
    padding: 5rem 0;
  }

  .contact-help-cta {
    padding: 5rem 0;
  }
}