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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #d1faf0;
  --color-secondary: #ea580c;
  --color-secondary-hover: #c2410c;
  
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  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;
  line-height: 1.6;
  font-weight: 400;
}

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

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

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

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

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

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

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

.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); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.badge-secondary {
  background: #fee2e2;
  color: #dc2626;
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-xs {
  font-size: 0.75rem;
}

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

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

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

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

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

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  border: 2px solid rgba(28, 25, 23, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--color-bg-card);
}

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

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

.animate-slide-right {
  animation: slideInRight var(--transition-base) ease-out;
}
.header-narrative-forge {
  background: var(--color-bg-primary);
  border-bottom: 2px solid var(--color-primary-light);
  position: static;
  z-index: 100;
  width: 100%;
  overflow: hidden;
}

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

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

.header-narrative-forge-brand:hover {
  opacity: 0.8;
}

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

.header-narrative-forge-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

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

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

.header-narrative-forge-nav-link:hover {
  color: var(--color-primary);
}

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

.header-narrative-forge-nav-link:hover::after {
  width: 100%;
}

.header-narrative-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-secondary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.header-narrative-forge-cta-button:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-narrative-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-narrative-forge-mobile-toggle:hover {
  opacity: 0.7;
}

.header-narrative-forge-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

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

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

.header-narrative-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

.header-narrative-forge-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-narrative-forge-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: all var(--transition-fast);
}

.header-narrative-forge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-narrative-forge-mobile-cta {
  margin: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-secondary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-base);
}

.header-narrative-forge-mobile-cta:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

  .header-narrative-forge-mobile-menu {
    display: none;
  }

  .header-narrative-forge-desktop-nav {
    display: flex;
  }

  .header-narrative-forge-cta-button {
    display: block;
  }

  .header-narrative-forge-container {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .header-narrative-forge-container {
    height: 85px;
    padding: 0 clamp(2rem, 5vw, 3rem);
  }

  .header-narrative-forge-logo-text {
    font-size: 1.35rem;
  }

  .header-narrative-forge-nav-link {
    font-size: 1rem;
  }

  .header-narrative-forge-cta-button {
    font-size: 1rem;
  }
}

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

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

.story-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-text-block-index {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title-index {
  font-size: clamp(2rem, 6vw + 1rem, 3.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.6;
}

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

.hero-btn-index {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.hero-image-block-index {
  flex: 1 1 100%;
  width: 100%;
  max-height: 450px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .hero-content-index {
    flex-direction: row;
    align-items: center;
  }

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

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

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

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

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

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

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #fef3c7;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

.card-icon-index {
  font-size: 2.5rem;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
}

.card-title-index {
  font-size: 1.25rem;
  color: #1c1917;
  font-weight: 600;
}

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

.about-section-index {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.about-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.8;
}

.about-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 200px;
}

.stat-number-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  color: #0d9488;
  font-weight: 700;
}

.stat-label-index {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.5;
}

.about-image-block-index {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .about-content-index {
    flex-direction: row;
    align-items: center;
  }

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

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

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

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

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

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

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.step-number-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #0d9488;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #1c1917;
  font-weight: 600;
}

.step-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.blog-section-index {
  background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.blog-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.blog-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.15);
}

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

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

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

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

.card-link-index {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: auto;
}

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

.blog-footer-index {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.blog-btn-index {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
}

.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;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.author-name-index {
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 600;
}

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

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

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

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

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fef3c7;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1c1917;
  font-weight: 600;
  line-height: 1.4;
}

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

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

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

.cta-box-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
}

.cta-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #ecf0f1;
  line-height: 1.7;
}

.cta-btn-index {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  background: #ffffff;
  color: #0d9488;
  border: none;
  align-self: center;
}

.cta-btn-index:hover {
  background: #f1f5f9;
  color: #0f766e;
}

.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 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
}

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

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

.cookie-btn-accept {
  background: #0d9488;
  color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
  .story-hub {
    overflow-x: hidden;
  }

  .hero-section-index {
    padding: 3rem 0;
  }

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

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

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

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

  .step-number-index {
    text-align: center;
  }

  .blog-card-index {
    max-width: 100%;
  }

  .testimonial-card-index {
    max-width: 100%;
  }

  .faq-item-index {
    max-width: 100%;
  }

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

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

  .cookie-banner-text {
    text-align: center;
    min-width: auto;
    width: 100%;
  }

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

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

@media (min-width: 769px) and (max-width: 1023px) {
  .features-cards-index,
  .blog-cards-index,
  .testimonials-grid-index,
  .faq-grid-index {
    gap: 1.5rem;
  }

  .feature-card-index,
  .blog-card-index,
  .testimonial-card-index,
  .faq-item-index {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

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

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

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

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

.footer-about {
  max-width: 55ch;
}

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

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

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

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

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

.footer-contact {
  display: block;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-legal {
  display: block;
}

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
}

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

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

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

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .footer-about {
    grid-column: 1;
  }

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

.category-page-storytelling-web-design {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-storytelling-web-design {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-content-storytelling-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-storytelling-web-design {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.hero-header-storytelling-web-design {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-storytelling-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-storytelling-web-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  margin: 0;
}

.hero-visual-storytelling-web-design {
  flex: 1 1 50%;
  min-height: 350px;
  width: 100%;
}

@media (max-width: 1023px) {
  .hero-visual-storytelling-web-design {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

.hero-image-storytelling-web-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.posts-header-storytelling-web-design {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-storytelling-web-design {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.posts-description-storytelling-web-design {
  color: #64748b;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  margin: 0;
  line-height: 1.6;
}

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

.card-storytelling-web-design {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-storytelling-web-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: #0d9488;
}

.card-image-storytelling-web-design {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title-storytelling-web-design {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.5rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.card-description-storytelling-web-design {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-storytelling-web-design {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.card-reading-time-storytelling-web-design,
.card-level-storytelling-web-design,
.card-date-storytelling-web-design {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-storytelling-web-design i,
.card-level-storytelling-web-design i,
.card-date-storytelling-web-design i {
  color: #0d9488;
  font-size: 0.9rem;
}

.card-link-storytelling-web-design {
  color: #0d9488;
  font-weight: 600;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link-storytelling-web-design:hover {
  color: #0f766e;
  text-decoration: underline;
}

.essentials-section-storytelling-web-design {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.essentials-content-storytelling-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.essentials-header-storytelling-web-design {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.essentials-title-storytelling-web-design {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.essentials-text-storytelling-web-design {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  margin: 0;
  line-height: 1.7;
}

.essentials-steps-storytelling-web-design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-card-storytelling-web-design {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card-storytelling-web-design:hover {
  transform: translateY(-2px);
}

.step-number-storytelling-web-design {
  color: #0d9488;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-title-storytelling-web-design {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  margin: 0;
  font-weight: 700;
}

.step-text-storytelling-web-design {
  color: #57534e;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  line-height: 1.6;
}

.insights-section-storytelling-web-design {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-storytelling-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.insights-quote-storytelling-web-design {
  max-width: 800px;
  margin: 0 auto;
}

.insights-blockquote-storytelling-web-design {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #0d9488;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 8px;
}

.insights-quote-text-storytelling-web-design {
  color: #f1f5f9;
  font-size: clamp(1.15rem, 2vw + 0.7rem, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.insights-footer-storytelling-web-design {
  margin: 0;
}

.insights-attribution-storytelling-web-design {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  margin: 0;
  font-style: normal;
}

.insights-context-storytelling-web-design {
  max-width: 800px;
  margin: 0 auto;
}

.insights-context-title-storytelling-web-design {
  color: #f1f5f9;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.insights-context-text-storytelling-web-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-storytelling-web-design {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .posts-section-storytelling-web-design {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .essentials-section-storytelling-web-design {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .insights-section-storytelling-web-design {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .card-storytelling-web-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-storytelling-web-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-storytelling-web-design {
    min-height: 280px;
  }

  .posts-grid-storytelling-web-design {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .essentials-steps-storytelling-web-design {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .card-meta-storytelling-web-design {
    flex-direction: column;
    gap: 0.5rem;
  }

  .card-image-storytelling-web-design {
    height: 180px;
  }

  .insights-blockquote-storytelling-web-design {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

a {
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-merkidentiteit-webdesign {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-text-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-merkidentiteit-webdesign {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-merkidentiteit-webdesign {
  color: #a8a29e;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  font-weight: 500;
}

.meta-separator-merkidentiteit-webdesign {
  color: #a8a29e;
  opacity: 0.6;
}

.hero-image-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.breadcrumbs-merkidentiteit-webdesign {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-merkidentiteit-webdesign a {
  color: #0d9488;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.breadcrumbs-merkidentiteit-webdesign a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-merkidentiteit-webdesign span {
  color: #a8a29e;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

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

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

.intro-text-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-image-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.content-text-one-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.content-image-one-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.content-image-two-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-text-two-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.content-text-three-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.content-image-three-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.content-image-four-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-four-merkidentiteit-webdesign {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-text-four-merkidentiteit-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-four-merkidentiteit-webdesign {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-section-merkidentiteit-webdesign {
  background: #0d9488;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlight-content-merkidentiteit-webdesign {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.highlight-quote-merkidentiteit-webdesign {
  max-width: 800px;
  margin: 0;
  padding: 0;
  border: none;
}

.highlight-quote-text-merkidentiteit-webdesign {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.6;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.conclusion-content-merkidentiteit-webdesign {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-merkidentiteit-webdesign {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-cta-merkidentiteit-webdesign {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-merkidentiteit-webdesign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #0d9488;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.cta-button-merkidentiteit-webdesign:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.disclaimer-section-merkidentiteit-webdesign {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-merkidentiteit-webdesign {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-merkidentiteit-webdesign {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-merkidentiteit-webdesign {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-merkidentiteit-webdesign:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-merkidentiteit-webdesign {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-img-merkidentiteit-webdesign {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-merkidentiteit-webdesign:hover .related-card-img-merkidentiteit-webdesign {
  transform: scale(1.05);
}

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

.related-card-title-merkidentiteit-webdesign {
  color: #1c1917;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-merkidentiteit-webdesign {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-merkidentiteit-webdesign {
  color: #0d9488;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-merkidentiteit-webdesign:hover {
  color: #0f766e;
  text-decoration: underline;
}

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

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

  .related-card-merkidentiteit-webdesign {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

  .breadcrumbs-merkidentiteit-webdesign {
    font-size: clamp(0.7rem, 1vw + 0.4rem, 0.85rem);
  }

  .hero-meta-merkidentiteit-webdesign {
    gap: 0.5rem;
  }

  .meta-item-merkidentiteit-webdesign,
  .meta-separator-merkidentiteit-webdesign {
    font-size: clamp(0.7rem, 1vw + 0.4rem, 0.85rem);
  }
}

@media (max-width: 480px) {
  .hero-section-merkidentiteit-webdesign,
  .intro-section-merkidentiteit-webdesign,
  .content-section-one-merkidentiteit-webdesign,
  .content-section-two-merkidentiteit-webdesign,
  .content-section-three-merkidentiteit-webdesign,
  .content-section-four-merkidentiteit-webdesign,
  .conclusion-section-merkidentiteit-webdesign,
  .disclaimer-section-merkidentiteit-webdesign,
  .related-section-merkidentiteit-webdesign {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-content-merkidentiteit-webdesign,
  .intro-content-merkidentiteit-webdesign,
  .content-wrapper-one-merkidentiteit-webdesign,
  .content-wrapper-two-merkidentiteit-webdesign,
  .content-wrapper-three-merkidentiteit-webdesign,
  .content-wrapper-four-merkidentiteit-webdesign {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.main-emotionele-triggers-webdesign {
  width: 100%;
  overflow: hidden;
}

.hero-section-emotionele-triggers-webdesign {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-emotionele-triggers-webdesign {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #1c1917;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-emotionele-triggers-webdesign {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #57534e;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
}

.hero-meta-emotionele-triggers-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.meta-item-emotionele-triggers-webdesign {
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

.meta-separator-emotionele-triggers-webdesign {
  color: #a8a29e;
}

.hero-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.breadcrumbs-emotionele-triggers-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-emotionele-triggers-webdesign a {
  color: #0d9488;
  font-weight: 500;
  transition: color 150ms ease;
}

.breadcrumbs-emotionele-triggers-webdesign a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-emotionele-triggers-webdesign span {
  color: #a8a29e;
}

.intro-section-emotionele-triggers-webdesign {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.intro-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
}

.triggers-section-emotionele-triggers-webdesign {
  background: #fef3c7;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.triggers-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.triggers-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.triggers-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.triggers-list-emotionele-triggers-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trigger-item-emotionele-triggers-webdesign {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.trigger-name-emotionele-triggers-webdesign {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.trigger-description-emotionele-triggers-webdesign {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.triggers-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.triggers-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
}

.implementation-section-emotionele-triggers-webdesign {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.implementation-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
}

.implementation-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.visual-section-emotionele-triggers-webdesign {
  background: #f9fafb;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.visual-content-emotionele-triggers-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.visual-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.visual-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.visual-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.visual-highlights-emotionele-triggers-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-box-emotionele-triggers-webdesign {
  background: rgba(13, 148, 136, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.highlight-title-emotionele-triggers-webdesign {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

.highlight-text-emotionele-triggers-webdesign {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

.visual-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.visual-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
}

.testing-section-emotionele-triggers-webdesign {
  background: #fffbeb;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.testing-content-emotionele-triggers-webdesign {
  max-width: 800px;
  margin: 0 auto;
}

.testing-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.testing-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.testing-steps-emotionele-triggers-webdesign {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-emotionele-triggers-webdesign {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-emotionele-triggers-webdesign {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  flex-shrink: 0;
  line-height: 1;
}

.step-body-emotionele-triggers-webdesign {
  flex: 1;
}

.step-title-emotionele-triggers-webdesign {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
}

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

.conclusion-section-emotionele-triggers-webdesign {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-text-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-emotionele-triggers-webdesign {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #57534e;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.conclusion-image-emotionele-triggers-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-emotionele-triggers-webdesign {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
}

.disclaimer-section-emotionele-triggers-webdesign {
  background: #fef3c7;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-emotionele-triggers-webdesign {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-emotionele-triggers-webdesign {
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 5px solid #0d9488;
}

.disclaimer-title-emotionele-triggers-webdesign {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-emotionele-triggers-webdesign {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.related-section-emotionele-triggers-webdesign {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-emotionele-triggers-webdesign {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title-emotionele-triggers-webdesign {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

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

.related-card-emotionele-triggers-webdesign {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-emotionele-triggers-webdesign:hover {
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.12);
  transform: translateY(-4px);
}

.related-card-image-emotionele-triggers-webdesign {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-img-emotionele-triggers-webdesign {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-emotionele-triggers-webdesign {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-emotionele-triggers-webdesign {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-emotionele-triggers-webdesign {
  font-size: 0.9rem;
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.related-link-emotionele-triggers-webdesign {
  display: inline-block;
  font-size: 0.95rem;
  color: #0d9488;
  font-weight: 600;
  transition: color 150ms ease;
}

.related-link-emotionele-triggers-webdesign:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-emotionele-triggers-webdesign,
  .intro-content-emotionele-triggers-webdesign,
  .triggers-content-emotionele-triggers-webdesign,
  .implementation-content-emotionele-triggers-webdesign,
  .visual-content-emotionele-triggers-webdesign,
  .conclusion-content-emotionele-triggers-webdesign {
    flex-direction: column;
  }

  .hero-text-emotionele-triggers-webdesign,
  .hero-image-emotionele-triggers-webdesign,
  .intro-text-emotionele-triggers-webdesign,
  .intro-image-emotionele-triggers-webdesign,
  .triggers-text-emotionele-triggers-webdesign,
  .triggers-image-emotionele-triggers-webdesign,
  .implementation-text-emotionele-triggers-webdesign,
  .implementation-image-emotionele-triggers-webdesign,
  .visual-text-emotionele-triggers-webdesign,
  .visual-image-emotionele-triggers-webdesign,
  .conclusion-text-emotionele-triggers-webdesign,
  .conclusion-image-emotionele-triggers-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-emotionele-triggers-webdesign,
  .intro-section-emotionele-triggers-webdesign,
  .triggers-section-emotionele-triggers-webdesign,
  .implementation-section-emotionele-triggers-webdesign,
  .visual-section-emotionele-triggers-webdesign,
  .testing-section-emotionele-triggers-webdesign,
  .conclusion-section-emotionele-triggers-webdesign,
  .disclaimer-section-emotionele-triggers-webdesign,
  .related-section-emotionele-triggers-webdesign {
    padding: clamp(1.5rem, 5vw, 3rem) 0;
  }

  .step-emotionele-triggers-webdesign {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-emotionele-triggers-webdesign {
    font-size: 2rem;
  }

  .breadcrumbs-emotionele-triggers-webdesign {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

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

  .intro-title-emotionele-triggers-webdesign,
  .triggers-title-emotionele-triggers-webdesign,
  .implementation-title-emotionele-triggers-webdesign,
  .visual-title-emotionele-triggers-webdesign,
  .testing-title-emotionele-triggers-webdesign,
  .conclusion-title-emotionele-triggers-webdesign {
    font-size: 1.25rem;
  }

  .related-title-emotionele-triggers-webdesign {
    font-size: 1.25rem;
  }

  .related-cards-emotionele-triggers-webdesign {
    flex-direction: column;
  }

  .related-card-emotionele-triggers-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-verhaalmetingen-analytics {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-text-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-verhaalmetingen-analytics {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-verhaalmetingen-analytics {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-divider-verhaalmetingen-analytics {
  color: #475569;
  font-size: 0.75rem;
}

.hero-image-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-verhaalmetingen-analytics {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

  .hero-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.breadcrumbs-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-verhaalmetingen-analytics a {
  color: #38bdf8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.breadcrumbs-verhaalmetingen-analytics a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-verhaalmetingen-analytics span {
  color: #475569;
  font-size: 0.875rem;
}

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

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

.intro-text-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-verhaalmetingen-analytics {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-verhaalmetingen-analytics {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

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

  .intro-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

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

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

.approach-subtitle-verhaalmetingen-analytics {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-grid-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.approach-card-verhaalmetingen-analytics {
  flex: 1 1 300px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #334155;
}

.approach-card-verhaalmetingen-analytics:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
}

.card-number-verhaalmetingen-analytics {
  color: #38bdf8;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.card-title-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-verhaalmetingen-analytics {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .approach-grid-verhaalmetingen-analytics {
    flex-direction: column;
  }

  .approach-card-verhaalmetingen-analytics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.implementation-content-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-verhaalmetingen-analytics {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-image-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-verhaalmetingen-analytics {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .implementation-text-verhaalmetingen-analytics,
  .implementation-image-verhaalmetingen-analytics {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.strategy-section-verhaalmetingen-analytics {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.strategy-title-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-steps-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-item-verhaalmetingen-analytics {
  flex: 1 1 280px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #334155;
}

.step-number-verhaalmetingen-analytics {
  color: #38bdf8;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.step-title-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-verhaalmetingen-analytics {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .strategy-steps-verhaalmetingen-analytics {
    flex-direction: column;
  }

  .step-item-verhaalmetingen-analytics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.insights-content-verhaalmetingen-analytics {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insights-text-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-paragraph-verhaalmetingen-analytics {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-image-verhaalmetingen-analytics {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-img-verhaalmetingen-analytics {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .insights-text-verhaalmetingen-analytics,
  .insights-image-verhaalmetingen-analytics {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.conclusion-section-verhaalmetingen-analytics {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-header-verhaalmetingen-analytics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-verhaalmetingen-analytics {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-box-verhaalmetingen-analytics {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-title-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-verhaalmetingen-analytics {
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-verhaalmetingen-analytics {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #0ea5e9;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.cta-button-verhaalmetingen-analytics:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .conclusion-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.disclaimer-section-verhaalmetingen-analytics {
  background: #f0f9ff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-verhaalmetingen-analytics {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #0ea5e9;
}

.disclaimer-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-verhaalmetingen-analytics {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-verhaalmetingen-analytics {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-verhaalmetingen-analytics:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-verhaalmetingen-analytics {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.related-card-title-verhaalmetingen-analytics {
  color: #1e293b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-verhaalmetingen-analytics {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-verhaalmetingen-analytics {
  color: #0ea5e9;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-link-verhaalmetingen-analytics:hover {
  color: #0284c7;
  text-decoration: underline;
}

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

  .related-card-verhaalmetingen-analytics {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-section-verhaalmetingen-analytics {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

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

.main-verhaalboog-homepage {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-verhaalboog-homepage {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
  font-weight: 400;
}

.hero-meta-verhaalboog-homepage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(203, 213, 225, 0.2);
}

.meta-item-verhaalboog-homepage {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-divider-verhaalboog-homepage {
  color: #94a3b8;
  opacity: 0.5;
}

.hero-image-verhaalboog-homepage {
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
}

.hero-img-verhaalboog-homepage {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.intro-text-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-verhaalboog-homepage {
  color: #334155;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-verhaalboog-homepage img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-verhaalboog-homepage {
    flex-direction: column;
  }

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

.structure-section-verhaalboog-homepage {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-wrapper-verhaalboog-homepage {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-text-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.structure-paragraph-verhaalboog-homepage {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.structure-steps-verhaalboog-homepage {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-verhaalboog-homepage {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(203, 213, 225, 0.05);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.step-number-verhaalboog-homepage {
  font-size: 1.75rem;
  font-weight: 800;
  color: #3b82f6;
  min-width: 50px;
  font-family: 'Playfair Display', serif;
}

.step-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

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

.structure-image-verhaalboog-homepage img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .structure-wrapper-verhaalboog-homepage {
    flex-direction: column;
  }

  .structure-text-verhaalboog-homepage,
  .structure-image-verhaalboog-homepage {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-verhaalboog-homepage {
    gap: 1rem;
  }
}

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

.implementation-header-verhaalboog-homepage {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.implementation-title-verhaalboog-homepage {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.implementation-subtitle-verhaalboog-homepage {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

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

.implementation-card-verhaalboog-homepage {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.implementation-card-verhaalboog-homepage:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.card-icon-verhaalboog-homepage {
  font-size: 2rem;
  color: #3b82f6;
}

.card-title-verhaalboog-homepage {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.card-text-verhaalboog-homepage {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .implementation-card-verhaalboog-homepage {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 640px) {
  .implementation-card-verhaalboog-homepage {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.example-section-verhaalboog-homepage {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.example-wrapper-verhaalboog-homepage {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.example-text-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-verhaalboog-homepage {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.example-paragraph-verhaalboog-homepage {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.example-quote-verhaalboog-homepage {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(203, 213, 225, 0.05);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-style: italic;
}

.example-image-verhaalboog-homepage img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .example-wrapper-verhaalboog-homepage {
    flex-direction: column;
  }

  .example-text-verhaalboog-homepage,
  .example-image-verhaalboog-homepage {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-verhaalboog-homepage {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-verhaalboog-homepage {
  display: flex;
  flex-direction: column;
}

.tips-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

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

.tips-card-verhaalboog-homepage {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #334155;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tips-card-verhaalboog-homepage:hover {
  background: #3b4556;
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.tips-card-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.tips-card-text-verhaalboog-homepage {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tips-card-verhaalboog-homepage {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 640px) {
  .tips-card-verhaalboog-homepage {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-verhaalboog-homepage {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-paragraph-verhaalboog-homepage {
  color: #334155;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-cta-verhaalboog-homepage {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.cta-link-verhaalboog-homepage {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.cta-link-verhaalboog-homepage:hover {
  color: #1e40af;
  text-decoration: underline;
}

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

.related-content-verhaalboog-homepage {
  display: flex;
  flex-direction: column;
}

.related-title-verhaalboog-homepage {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.related-subtitle-verhaalboog-homepage {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.related-card-verhaalboog-homepage:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.related-image-verhaalboog-homepage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-verhaalboog-homepage {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
}

.related-card-text-verhaalboog-homepage {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

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

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

.disclaimer-section-verhaalboog-homepage {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(203, 213, 225, 0.1);
}

.disclaimer-content-verhaalboog-homepage {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-title-verhaalboog-homepage {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-verhaalboog-homepage {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-verhaalboog-homepage,
  .intro-section-verhaalboog-homepage,
  .structure-section-verhaalboog-homepage,
  .example-section-verhaalboog-homepage,
  .tips-section-verhaalboog-homepage,
  .conclusion-section-verhaalboog-homepage,
  .related-section-verhaalboog-homepage,
  .disclaimer-section-verhaalboog-homepage {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .breadcrumbs-verhaalboog-homepage {
    font-size: 0.875rem;
  }

  .implementation-cards-verhaalboog-homepage,
  .tips-grid-verhaalboog-homepage {
    gap: 1rem;
  }
}

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

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

.breadcrumbs-verhaalboog-homepage a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-verhaalboog-homepage a:hover {
  color: #60a5fa;
}

.breadcrumbs-verhaalboog-homepage span {
  color: #94a3b8;
}

.breadcrumbs-verhaalboog-homepage span:last-child {
  color: #cbd5e1;
}

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

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

.narrative-design-studio-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

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

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

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

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

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

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

.stat-card-about {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number-about {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(13, 148, 136, 0.08);
  color: var(--color-primary);
  border-radius: 25px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

.foundation-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.foundation-text-about strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

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

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

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

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

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

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(60px, 8vw, 120px);
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: 0.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-primary);
  font-weight: 600;
  font-style: normal;
}

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

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

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

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

.vision-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vision-text-about:last-of-type {
  margin-bottom: 0;
}

.cta-section-about {
  padding: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--color-primary), #16a89b);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin: 2rem 0;
}

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

.cta-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-about {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
  border: 2px solid #ffffff;
}

.cta-button-about:hover {
  background: transparent;
  color: #ffffff;
}

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

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

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

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

  .step-number-about {
    min-width: auto;
  }

  .step-content-about {
    padding-top: 0;
  }
}

@media (min-width: 1024px) {
  .hero-storytelling-content-about {
    gap: 2.5rem;
  }

  .stats-grid-about {
    gap: 2.5rem;
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-project-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: grid;
  grid-template-columns: 1fr;
}

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

.portfolio-project-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-project-card__content {
  padding: var(--space-lg);
}

.portfolio-project-card__category {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.portfolio-project-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-project-card__description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
}

.portfolio-project-card__detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}

.portfolio-cta__button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-bg-primary);
  background-color: var(--color-primary);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.portfolio-cta__button:active {
  transform: translateY(0);
}

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

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-card {
    grid-template-columns: 1fr;
  }

  .portfolio-project-card__image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

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

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-card {
    grid-template-columns: 1fr;
  }

  .portfolio-project-card__image {
    height: 300px;
  }

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

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

.services-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 2px solid var(--color-primary-light);
  overflow: hidden;
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

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

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

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-content {
    padding: 4rem var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid #f3f0ed;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  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-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.025rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid #f3f0ed;
}

.service-detail-item {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  background-color: #faf9f7;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 2px solid var(--color-primary-light);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta-content {
  text-align: center;
}

@media (min-width: 768px) {
  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    text-align: left;
  }

  .services-cta-content {
    text-align: left;
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-2xl);
  }
}

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

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.services-cta-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .services-cta-image {
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .services-cta-image {
    min-height: 450px;
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #d1faf0;
  --color-secondary: #ea580c;
  --color-secondary-hover: #c2410c;
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.narrative-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.narrative-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--space-lg);
  overflow: hidden;
}

.narrative-docs .narrative-docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.narrative-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.narrative-docs .updated-date {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin-bottom: var(--space-2xl);
  display: block;
}

.narrative-docs .intro-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-primary-light);
}

.narrative-docs .intro-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.narrative-docs .policy-section {
  margin-bottom: var(--space-2xl);
}

.narrative-docs .policy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.narrative-docs .policy-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.narrative-docs .policy-section ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.narrative-docs .policy-section li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.narrative-docs .policy-section li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.narrative-docs .contact-section {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
}

.narrative-docs .contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.narrative-docs .contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.narrative-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .narrative-docs .container {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .narrative-docs .container {
    padding: var(--space-2xl);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) 0;
}

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

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  animation: fadeInUp 0.7s ease-out 0.3s both;
  max-width: 700px;
}

.description.secondary {
  color: var(--color-text-muted);
  animation-delay: 0.4s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  animation: fadeInUp 0.7s ease-out 0.5s both;
  margin-top: var(--space-md);
}

.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);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

  .thank-content {
    gap: var(--space-xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  h1 {
    letter-spacing: -1px;
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 160px;
    height: 160px;
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #d1faf0;
  --color-secondary: #ea580c;
  --color-secondary-hover: #c2410c;
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-xl);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(13, 148, 136, 0.1);
  animation: floatCode 6s ease-in-out infinite;
}

@keyframes floatCode {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 60vw, 400px);
  height: clamp(200px, 60vw, 400px);
  border: 2px solid var(--color-primary-light);
  border-radius: 50%;
  z-index: 1;
  animation: rotateDecoration 20s linear infinite;
  opacity: 0.6;
}

@keyframes rotateDecoration {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-message {
  position: relative;
  z-index: 3;
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left var(--transition-base);
  z-index: -1;
}

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

.btn-primary:hover::before {
  left: 0;
}

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

.error-accent-left {
  position: absolute;
  width: clamp(80px, 15vw, 150px);
  height: clamp(80px, 15vw, 150px);
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  top: -5%;
  left: -5%;
  opacity: 0.4;
  animation: floatLeft 8s ease-in-out infinite;
  z-index: 0;
}

.error-accent-right {
  position: absolute;
  width: clamp(100px, 18vw, 180px);
  height: clamp(100px, 18vw, 180px);
  background-color: var(--color-secondary);
  border-radius: 50%;
  bottom: -8%;
  right: -5%;
  opacity: 0.15;
  animation: floatRight 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes floatLeft {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(0, -30px) rotate(10deg);
  }
  75% {
    transform: translate(-15px, -15px) rotate(5deg);
  }
}

@keyframes floatRight {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
  66% {
    transform: translate(0, 40px) rotate(-10deg);
  }
}

@media (min-width: 640px) {
  .error-wrapper {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .error-description {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-2xl);
    min-height: 100vh;
  }

  .error-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-code {
    animation: floatCode 6s ease-in-out infinite;
  }

  @keyframes floatCode {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-30px);
    }
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-3xl);
  }

  .error-wrapper {
    padding: var(--space-3xl);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-accent-left {
    top: -10%;
    left: -8%;
  }

  .error-accent-right {
    bottom: -10%;
    right: -8%;
  }

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

  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
}

@media (max-width: 640px) {
  .error-code {
    animation: none;
  }

  .error-decoration {
    width: 150px;
    height: 150px;
    animation: none;
    opacity: 0.4;
  }

  .error-accent-left {
    animation: none;
  }

  .error-accent-right {
    animation: none;
  }
}

@supports (backdrop-filter: blur(10px)) {
  .error-wrapper {
    background: rgba(255, 251, 235, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(13, 148, 136, 0.1);
  }
}

.contact-get-in-touch-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.contact-get-in-touch-hero-content {
  text-align: center;
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.contact-get-in-touch-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-form-header {
  margin-bottom: var(--space-xl);
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-get-in-touch-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-primary);
  background-color: var(--color-bg-secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-base);
  outline: none;
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  background-color: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-get-in-touch-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-get-in-touch-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.contact-get-in-touch-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-get-in-touch-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-sm);
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-header {
  margin-bottom: var(--space-xl);
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-get-in-touch-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-get-in-touch-info-link {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-get-in-touch-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-get-in-touch-cta-box {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.contact-get-in-touch-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-in-touch-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-grid {
    gap: var(--space-2xl);
  }

  .contact-get-in-touch-form-wrapper {
    flex: 1 1 calc(50% - var(--space-xl));
    max-width: 550px;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 calc(50% - var(--space-xl));
    max-width: 550px;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: 6rem 0;
  }

  .contact-get-in-touch-main {
    padding: 6rem 0;
  }

  .contact-get-in-touch-form-wrapper {
    flex: 0 1 auto;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 0 1 auto;
  }
}

@media (max-width: 767px) {
  .contact-get-in-touch-form-wrapper {
    order: 1;
  }

  .contact-get-in-touch-info-wrapper {
    order: 2;
  }
}