
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@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: #a1998e;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #14b8a6;
  --color-accent-light: #ccfbf1;
  --color-accent-lighter: #f0fdfa;
  
  
  --font-primary: 'Poppins', 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;
  --radius-full: 50%;
  
  
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

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

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

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

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

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

em {
  font-style: italic;
  color: var(--color-text-secondary);
}

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

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

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

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

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

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

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

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

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

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

.btn-secondary:hover {
  background: var(--color-accent-lighter);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-accent-lighter);
  border-color: var(--color-primary-hover);
  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;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.05);
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

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

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent-lighter);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm);
  border: 2px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.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-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

@media (max-width: 480px) {
  section {
    padding: var(--space-xl) 0;
  }
}

.hero {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-accent-lighter) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base);
}

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

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

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

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

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

nav {
  background: var(--color-bg-card);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

nav a {
  padding: var(--space-md) 0;
  display: block;
  color: var(--color-text-primary);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

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

footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

footer h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer li {
  margin-bottom: var(--space-sm);
}

footer a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.875rem;
}

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

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

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

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

.animate-fade {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

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

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

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

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .btn {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

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

  a {
    color: #0066cc;
  }

  .btn, nav, footer {
    display: none;
  }
}
.header-compass-values {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-accent-light);
  position: static;
  z-index: 100;
}

.header-compass-values-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;
  height: clamp(4rem, 10vw, 5.5rem);
  gap: clamp(1rem, 3vw, 2rem);
}

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

.header-compass-values-brand:hover {
  opacity: 0.85;
}

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

.header-compass-values-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

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

.header-compass-values-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
  padding: 0.5rem 0;
}

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

.header-compass-values-nav-link:hover {
  color: var(--color-primary);
}

.header-compass-values-nav-link:hover::after {
  width: 100%;
}

.header-compass-values-cta-button {
  display: none;
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: background var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header-compass-values-mobile-toggle:hover {
  opacity: 0.7;
}

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

.header-compass-values-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-compass-values-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-compass-values-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-compass-values-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  padding-top: clamp(4rem, 10vw, 5.5rem);
  overflow-y: auto;
}

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

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

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

.header-compass-values-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-compass-values-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: clamp(0.875rem, 2vw, 1.125rem);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), color var(--transition-base);
  display: block;
}

.header-compass-values-mobile-link:hover {
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.header-compass-values-mobile-cta {
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-align: center;
  margin: clamp(1rem, 3vw, 1.5rem);
  transition: background var(--transition-base);
  display: block;
}

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

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

  .header-compass-values-cta-button {
    display: block;
  }

  .header-compass-values-mobile-toggle {
    display: none;
  }

  .header-compass-values-mobile-menu {
    display: none;
  }
}

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

  .header-compass-values-cta-button {
    display: none;
  }
}

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

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

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

.hero-section-index {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-accent-lighter) 100%);
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero-text-wrapper-index {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-wrapper-index {
  flex: 1 1 45%;
  display: none;
}

@media (min-width: 768px) {
  .hero-image-wrapper-index {
    display: block;
  }
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  max-width: 550px;
}

.hero-buttons-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons-index {
    flex-direction: row;
    width: auto;
  }
}

.hero-buttons-index .btn {
  white-space: nowrap;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.about-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.about-text-index {
  flex: 1 1 45%;
  min-width: 0;
}

.about-text-index p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-text-index p:last-of-type {
  margin-bottom: var(--space-lg);
}

.about-list-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-list-index li {
  margin: 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.6;
}

.about-list-index li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.about-image-wrapper-index {
  flex: 1 1 45%;
  display: none;
}

@media (min-width: 768px) {
  .about-image-wrapper-index {
    display: block;
  }
}

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

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

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

.process-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .process-step-index {
    flex: 1 1 300px;
  }
}

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

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

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.step-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.featured-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.08);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}

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

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

.card-content-index {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

.featured-footer-index {
  text-align: center;
}

.btn-outline-index {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-index:hover {
  background: rgba(13, 148, 136, 0.1);
  transform: translateY(-2px);
}

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

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

.benefits-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.benefit-card-index:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.benefit-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.benefit-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.values-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.values-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.value-item-index {
  flex: 1 1 240px;
  max-width: 280px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.value-item-index:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.value-name-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.testimonial-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonial-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.author-name-index {
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  font-size: 0.95rem;
}

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

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

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

.faq-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
}

.faq-item-index:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.cta-box-index {
  text-align: center;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.cta-box-index .btn {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  border: none;
  transition: all var(--transition-base);
}

.cta-box-index .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner-index {
  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-index.hidden {
  display: none;
}

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

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

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

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

  .hero-stats-index {
    flex-direction: row;
    justify-content: flex-start;
  }

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

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

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

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

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

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

  .benefits-grid-index {
    flex-direction: column;
    align-items: center;
  }

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

  .values-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .value-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

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

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

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
  }
}

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

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

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

  .stat-item-index {
    flex: 1 1 50%;
  }

  .about-title-index {
    font-size: 1.375rem;
  }

  .featured-title-index {
    font-size: 1.375rem;
  }

  .benefits-title-index {
    font-size: 1.375rem;
  }

  .values-title-index {
    font-size: 1.375rem;
  }

  .testimonial-title-index {
    font-size: 1.375rem;
  }

  .faq-title-index {
    font-size: 1.375rem;
  }

  .cta-title-index {
    font-size: 1.375rem;
  }

  .cta-box-index .btn {
    width: 100%;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    width: 100%;
  }
}

    .footer {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem) 0;
  border-top: 2px solid var(--color-accent-light);
  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(2.5rem, 5vw, 4rem);
}

.footer-about {
  max-width: 600px;
}

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.footer-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-contact {
  display: block;
}

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

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-accent-light);
  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;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    grid-column: span 1;
  }

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

.category-page-personal-values-alignment {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-personal-values-alignment {
  background: linear-gradient(135deg, #fffbeb 0%, #f0fdfa 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-personal-values-alignment {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

.hero-text-block-personal-values-alignment {
  flex: 1 1 100%;
  max-width: 650px;
}

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

.hero-subtitle-personal-values-alignment {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #57534e;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.hero-accent-personal-values-alignment {
  flex: 1 1 100%;
  width: 100%;
}

.accent-card-personal-values-alignment {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 5px solid #0d9488;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.accent-icon-personal-values-alignment {
  font-size: 2rem;
  color: #0d9488;
  margin-bottom: 1rem;
}

.accent-text-personal-values-alignment {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1c1917;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

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

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

.posts-header-personal-values-alignment {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-personal-values-alignment {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
}

.posts-description-personal-values-alignment {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #57534e;
  margin: 0;
  line-height: 1.6;
}

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

.card-personal-values-alignment {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 148, 136, 0.08);
}

.card-personal-values-alignment:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(28, 25, 23, 0.12);
}

.card-image-personal-values-alignment {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.card-image-personal-values-alignment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-personal-values-alignment {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1c1917;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: 0;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.card-text-personal-values-alignment {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #57534e;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem);
  padding-top: 0.75rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-meta-personal-values-alignment {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  font-size: 0.85rem;
}

.meta-item-personal-values-alignment {
  color: #a1998e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-personal-values-alignment i {
  color: #0d9488;
  font-size: 0.85rem;
}

.card-personal-values-alignment .btn {
  margin: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
}

.insight-section-personal-values-alignment {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-personal-values-alignment {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.insight-quote-personal-values-alignment {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 5px solid #0d9488;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.insight-text-personal-values-alignment {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #1c1917;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.insight-author-personal-values-alignment {
  display: block;
  font-size: 0.95rem;
  color: #57534e;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 500;
}

.insight-explanation-personal-values-alignment {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.insight-heading-personal-values-alignment {
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #1c1917;
  font-weight: 700;
  margin: 0;
}

.insight-para-personal-values-alignment {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

.insight-para-personal-values-alignment + .insight-para-personal-values-alignment {
  margin-top: 1rem;
}

.framework-section-personal-values-alignment {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.framework-title-personal-values-alignment {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1c1917;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.framework-intro-personal-values-alignment {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #57534e;
  text-align: center;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.framework-pillars-personal-values-alignment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.pillar-personal-values-alignment {
  flex: 1 1 250px;
  max-width: 320px;
  background: #f9fafb;
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all 0.3s ease;
}

.pillar-personal-values-alignment:hover {
  background: #f0fdfa;
  border-color: #0d9488;
  transform: translateY(-4px);
}

.pillar-number-personal-values-alignment {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.pillar-title-personal-values-alignment {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1c1917;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}

.pillar-text-personal-values-alignment {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-personal-values-alignment {
    gap: 2rem;
  }

  .card-personal-values-alignment {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-pillars-personal-values-alignment {
    flex-direction: column;
  }

  .pillar-personal-values-alignment {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .posts-section-personal-values-alignment {
    padding: 2rem 0;
  }

  .insight-section-personal-values-alignment {
    padding: 2rem 0;
  }

  .framework-section-personal-values-alignment {
    padding: 2rem 0;
  }

  .card-personal-values-alignment {
    flex: 1 1 100%;
  }

  .posts-grid-personal-values-alignment {
    gap: 1.25rem;
  }

  .card-image-personal-values-alignment {
    height: 180px;
  }
}

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

.breadcrumbs-kernwaarden-ontdekken {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 2rem;
font-size: 0.875rem;
flex-wrap: wrap;
}

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

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

.breadcrumbs-kernwaarden-ontdekken span {
color: #a1998e;
}

.hero-section-kernwaarden-ontdekken {
background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
padding: 4rem 0 3rem;
overflow: hidden;
}

.hero-content-kernwaarden-ontdekken {
margin-bottom: 2.5rem;
}

.hero-title-kernwaarden-ontdekken {
font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
font-family: 'Playfair Display', serif;
font-weight: 700;
color: #1c1917;
margin-bottom: 1rem;
line-height: 1.2;
letter-spacing: -0.02em;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-kernwaarden-ontdekken {
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
color: #57534e;
line-height: 1.6;
margin-bottom: 1.5rem;
max-width: 650px;
}

.hero-meta-kernwaarden-ontdekken {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 2rem;
font-size: 0.875rem;
}

.meta-item-kernwaarden-ontdekken {
color: #57534e;
font-weight: 500;
}

.meta-separator-kernwaarden-ontdekken {
color: #a1998e;
}

.hero-image-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(28, 25, 23, 0.15);
}

.hero-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

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

.hero-title-kernwaarden-ontdekken {
font-size: 1.75rem;
}

.hero-subtitle-kernwaarden-ontdekken {
font-size: 1rem;
}
}

.intro-section-kernwaarden-ontdekken {
background: #ffffff;
padding: 4rem 0;
overflow: hidden;
}

.intro-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.intro-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.intro-lead-kernwaarden-ontdekken {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
color: #1c1917;
font-weight: 600;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.intro-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.intro-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 4px 15px rgba(28, 25, 23, 0.1);
}

@media (max-width: 768px) {
.intro-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.intro-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

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

.intro-lead-kernwaarden-ontdekken {
font-size: 1.125rem;
}
}

.step-one-section-kernwaarden-ontdekken {
background: #fffbeb;
padding: 4rem 0;
overflow: hidden;
}

.step-one-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.step-one-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-number-kernwaarden-ontdekken {
font-size: 3.5rem;
font-weight: 800;
color: #0d9488;
margin-bottom: 0.5rem;
font-family: 'Playfair Display', serif;
line-height: 1;
}

.step-one-title-kernwaarden-ontdekken {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-one-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-one-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-one-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 8px 20px rgba(28, 25, 23, 0.12);
}

@media (max-width: 768px) {
.step-one-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.step-one-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

.step-one-text-kernwaarden-ontdekken,
.step-one-image-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
}

.step-number-kernwaarden-ontdekken {
font-size: 2.5rem;
}

.step-one-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}
}

.step-two-section-kernwaarden-ontdekken {
background: #ffffff;
padding: 4rem 0;
overflow: hidden;
}

.step-two-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.step-two-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.step-two-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 8px 20px rgba(28, 25, 23, 0.12);
}

.step-two-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-two-title-kernwaarden-ontdekken {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-two-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.step-two-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.step-two-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

.step-two-image-kernwaarden-ontdekken,
.step-two-text-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
order: initial;
}

.step-two-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}
}

.step-three-section-kernwaarden-ontdekken {
background: #fffbeb;
padding: 4rem 0;
overflow: hidden;
}

.step-three-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.step-three-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-three-title-kernwaarden-ontdekken {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-three-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-three-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-three-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 8px 20px rgba(28, 25, 23, 0.12);
}

@media (max-width: 768px) {
.step-three-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.step-three-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

.step-three-text-kernwaarden-ontdekken,
.step-three-image-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
}

.step-three-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}
}

.step-four-section-kernwaarden-ontdekken {
background: #ffffff;
padding: 4rem 0;
overflow: hidden;
}

.step-four-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.step-four-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.step-four-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 8px 20px rgba(28, 25, 23, 0.12);
}

.step-four-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-four-title-kernwaarden-ontdekken {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-four-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.step-four-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.step-four-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

.step-four-image-kernwaarden-ontdekken,
.step-four-text-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
order: initial;
}

.step-four-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}
}

.step-five-section-kernwaarden-ontdekken {
background: #fffbeb;
padding: 4rem 0;
overflow: hidden;
}

.step-five-content-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 3rem;
align-items: center;
}

.step-five-text-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-five-title-kernwaarden-ontdekken {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-five-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.step-five-image-kernwaarden-ontdekken {
flex: 1 1 50%;
max-width: 50%;
}

.step-five-img-kernwaarden-ontdekken {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
box-shadow: 0 8px 20px rgba(28, 25, 23, 0.12);
}

@media (max-width: 768px) {
.step-five-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.step-five-content-kernwaarden-ontdekken {
flex-direction: column;
gap: 2rem;
}

.step-five-text-kernwaarden-ontdekken,
.step-five-image-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
}

.step-five-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}
}

.conclusion-section-kernwaarden-ontdekken {
background: #ffffff;
padding: 4rem 0;
overflow: hidden;
}

.conclusion-content-kernwaarden-ontdekken {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.conclusion-title-kernwaarden-ontdekken {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
color: #1c1917;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-body-kernwaarden-ontdekken {
font-size: 1rem;
color: #57534e;
line-height: 1.8;
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-cta-kernwaarden-ontdekken {
margin-top: 2.5rem;
}

.btn-cta-kernwaarden-ontdekken {
display: inline-block;
padding: 1rem 2rem;
background: #0d9488;
color: #ffffff;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 250ms ease-in-out;
border: 2px solid #0d9488;
}

.btn-cta-kernwaarden-ontdekken:hover {
background: #0f766e;
border-color: #0f766e;
transform: translateY(-2px);
box-shadow: 0 8px 15px rgba(13, 148, 136, 0.2);
}

@media (max-width: 768px) {
.conclusion-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.conclusion-title-kernwaarden-ontdekken {
font-size: 1.5rem;
}

.btn-cta-kernwaarden-ontdekken {
display: block;
width: 100%;
}
}

.disclaimer-section-kernwaarden-ontdekken {
background: #fef3c7;
padding: 3rem 0;
overflow: hidden;
}

.disclaimer-content-kernwaarden-ontdekken {
max-width: 800px;
margin: 0 auto;
background: #ffffff;
padding: 2rem;
border-radius: 12px;
border-left: 4px solid #0d9488;
}

.disclaimer-title-kernwaarden-ontdekken {
font-size: 1.25rem;
color: #1c1917;
margin-bottom: 1rem;
font-weight: 600;
}

.disclaimer-text-kernwaarden-ontdekken {
font-size: 0.95rem;
color: #57534e;
line-height: 1.8;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.disclaimer-section-kernwaarden-ontdekken {
padding: 2rem 0;
}

.disclaimer-content-kernwaarden-ontdekken {
padding: 1.5rem;
}

.disclaimer-title-kernwaarden-ontdekken {
font-size: 1.125rem;
}

.disclaimer-text-kernwaarden-ontdekken {
font-size: 0.9rem;
}
}

.related-section-kernwaarden-ontdekken {
background: #fffbeb;
padding: 4rem 0;
overflow: hidden;
}

.related-content-kernwaarden-ontdekken {
max-width: 1200px;
margin: 0 auto;
}

.related-title-kernwaarden-ontdekken {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
color: #1c1917;
text-align: center;
margin-bottom: 3rem;
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-cards-kernwaarden-ontdekken {
display: flex;
flex-direction: row;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
}

.related-card-kernwaarden-ontdekken {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 280px;
max-width: 380px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
transition: all 250ms ease-in-out;
}

.related-card-kernwaarden-ontdekken:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(28, 25, 23, 0.15);
}

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

.related-img-kernwaarden-ontdekken {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 300ms ease-in-out;
}

.related-card-kernwaarden-ontdekken:hover .related-img-kernwaarden-ontdekken {
transform: scale(1.05);
}

.related-card-body-kernwaarden-ontdekken {
padding: 1.75rem;
}

.related-card-title-kernwaarden-ontdekken {
font-size: 1.125rem;
color: #1c1917;
margin-bottom: 0.75rem;
font-weight: 600;
font-family: 'Playfair Display', serif;
line-height: 1.3;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-card-text-kernwaarden-ontdekken {
font-size: 0.95rem;
color: #57534e;
margin-bottom: 1.25rem;
line-height: 1.6;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-card-link-kernwaarden-ontdekken {
display: inline-block;
color: #0d9488;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: all 150ms ease-in-out;
}

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

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

@media (max-width: 768px) {
.related-section-kernwaarden-ontdekken {
padding: 2.5rem 0;
}

.related-title-kernwaarden-ontdekken {
font-size: 1.75rem;
margin-bottom: 2rem;
}

.related-cards-kernwaarden-ontdekken {
gap: 1.5rem;
}

.related-card-kernwaarden-ontdekken {
flex: 1 1 100%;
max-width: 100%;
}

.related-card-image-kernwaarden-ontdekken {
height: 180px;
}

.related-card-body-kernwaarden-ontdekken {
padding: 1.5rem;
}

.related-card-title-kernwaarden-ontdekken {
font-size: 1.025rem;
}

.related-card-text-kernwaarden-ontdekken {
font-size: 0.9rem;
}
}

.container {
max-width: 1440px;
width: 100%;
margin: 0 auto;
padding: 0 2rem;
display: block;
}

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

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

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

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 150ms ease-in-out;
}

html {
scroll-behavior: smooth;
}

.main-waarden-alignment-mismatch {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-waarden-alignment-mismatch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #57534e;
}

.breadcrumbs-waarden-alignment-mismatch a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-waarden-alignment-mismatch a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-waarden-alignment-mismatch span {
  color: #a1998e;
}

.hero-content-waarden-alignment-mismatch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-meta-waarden-alignment-mismatch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

.meta-date-waarden-alignment-mismatch,
.meta-reading-waarden-alignment-mismatch,
.meta-level-waarden-alignment-mismatch {
  color: #57534e;
}

.meta-divider-waarden-alignment-mismatch {
  color: #d6d3d1;
}

.hero-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem;
}

.hero-subtitle-waarden-alignment-mismatch {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #57534e;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-image-waarden-alignment-mismatch {
  width: 100%;
  max-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.hero-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .hero-title-waarden-alignment-mismatch {
    font-size: 1.75rem;
  }

  .hero-subtitle-waarden-alignment-mismatch {
    font-size: 1rem;
  }
}

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

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

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

.intro-text-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.intro-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}

.intro-paragraph-waarden-alignment-mismatch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-paragraph-waarden-alignment-mismatch:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .intro-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .intro-content-waarden-alignment-mismatch {
    flex-direction: column;
  }

  .intro-text-waarden-alignment-mismatch,
  .intro-image-waarden-alignment-mismatch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }
}

.signals-section-waarden-alignment-mismatch {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.signals-content-waarden-alignment-mismatch {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.signals-image-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  order: -1;
}

.signals-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signals-text-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
}

.signals-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}

.signals-paragraph-waarden-alignment-mismatch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.signals-list-waarden-alignment-mismatch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.signal-item-waarden-alignment-mismatch {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
}

.signal-number-waarden-alignment-mismatch {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
}

.signal-title-waarden-alignment-mismatch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin: 0;
}

.signal-text-waarden-alignment-mismatch {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .signals-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .signals-content-waarden-alignment-mismatch {
    flex-direction: column;
  }

  .signals-image-waarden-alignment-mismatch,
  .signals-text-waarden-alignment-mismatch {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .signals-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }
}

.values-section-waarden-alignment-mismatch {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.values-content-waarden-alignment-mismatch {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.values-text-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
}

.values-image-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.values-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}

.values-paragraph-waarden-alignment-mismatch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-paragraph-waarden-alignment-mismatch:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .values-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .values-content-waarden-alignment-mismatch {
    flex-direction: column;
  }

  .values-text-waarden-alignment-mismatch,
  .values-image-waarden-alignment-mismatch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .values-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }
}

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

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

.alignment-header-waarden-alignment-mismatch {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.alignment-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.75rem;
}

.alignment-subtitle-waarden-alignment-mismatch {
  font-size: 1.125rem;
  color: #57534e;
  line-height: 1.6;
}

.alignment-steps-waarden-alignment-mismatch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-block-waarden-alignment-mismatch {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-top: 4px solid #0d9488;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
}

.step-number-waarden-alignment-mismatch {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.step-heading-waarden-alignment-mismatch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.step-text-waarden-alignment-mismatch {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .alignment-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .alignment-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }

  .alignment-steps-waarden-alignment-mismatch {
    grid-template-columns: 1fr;
  }
}

.quote-section-waarden-alignment-mismatch {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-waarden-alignment-mismatch {
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
}

.quote-text-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-waarden-alignment-mismatch {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .quote-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .quote-text-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }
}

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

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

.conclusion-content-waarden-alignment-mismatch {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-waarden-alignment-mismatch {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}

.conclusion-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conclusion-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-waarden-alignment-mismatch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-waarden-alignment-mismatch:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .conclusion-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .conclusion-content-waarden-alignment-mismatch {
    flex-direction: column;
  }

  .conclusion-text-waarden-alignment-mismatch,
  .conclusion-image-waarden-alignment-mismatch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }
}

.related-section-waarden-alignment-mismatch {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-waarden-alignment-mismatch {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.75rem;
}

.related-subtitle-waarden-alignment-mismatch {
  font-size: 1.125rem;
  color: #57534e;
  line-height: 1.6;
}

.related-cards-waarden-alignment-mismatch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-items: center;
}

.related-card-waarden-alignment-mismatch {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 380px;
}

.related-card-waarden-alignment-mismatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(28, 25, 23, 0.1);
}

.related-card-image-waarden-alignment-mismatch {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-waarden-alignment-mismatch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-waarden-alignment-mismatch {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1917;
  padding: 1.5rem 1.5rem 0.75rem;
  margin: 0;
}

.related-card-text-waarden-alignment-mismatch {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

.related-card-link-waarden-alignment-mismatch {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-waarden-alignment-mismatch:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-section-waarden-alignment-mismatch {
    padding: 2rem 0;
  }

  .related-title-waarden-alignment-mismatch {
    font-size: 1.5rem;
  }

  .related-cards-waarden-alignment-mismatch {
    grid-template-columns: 1fr;
  }
}

.disclaimer-section-waarden-alignment-mismatch {
  background: #f5f3f0;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-waarden-alignment-mismatch {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #a1998e;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-waarden-alignment-mismatch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
}

.disclaimer-text-waarden-alignment-mismatch {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-waarden-alignment-mismatch {
    padding: 1.5rem 0;
  }

  .disclaimer-title-waarden-alignment-mismatch {
    font-size: 1rem;
  }

  .disclaimer-text-waarden-alignment-mismatch {
    font-size: 0.875rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

@media print {
  .hero-section-waarden-alignment-mismatch,
  .breadcrumbs-waarden-alignment-mismatch {
    display: none;
  }

  .main-waarden-alignment-mismatch {
    background: #ffffff;
  }
}

.main-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
}

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

.hero-content-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #57534e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.breadcrumbs-waardengebaseerde-keuzes-dagelijks a:hover {
  color: #0f766e;
}

.breadcrumbs-waardengebaseerde-keuzes-dagelijks span {
  color: #a1998e;
}

.hero-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.meta-item-waardengebaseerde-keuzes-dagelijks {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-wrapper-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

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

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

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

.intro-text-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

.intro-image-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.alignment-section-waardengebaseerde-keuzes-dagelijks {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.alignment-content-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.alignment-text-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.alignment-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.alignment-list-waardengebaseerde-keuzes-dagelijks {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.list-item-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-waardengebaseerde-keuzes-dagelijks::before {
  content: '';
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

.list-strong-waardengebaseerde-keuzes-dagelijks {
  color: #1c1917;
  font-weight: 600;
}

.alignment-image-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.alignment-image-img-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.process-header-waardengebaseerde-keuzes-dagelijks {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.process-subtitle-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.step-number-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
  width: clamp(60px, 8vw, 100px);
  text-align: center;
}

.step-content-waardengebaseerde-keuzes-dagelijks {
  flex: 1;
}

.step-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-text-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
}

.practice-section-waardengebaseerde-keuzes-dagelijks {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.practice-example-waardengebaseerde-keuzes-dagelijks {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.example-scenario-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.example-bold-waardengebaseerde-keuzes-dagelijks {
  color: #1c1917;
  font-weight: 600;
}

.example-value-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.example-value-waardengebaseerde-keuzes-dagelijks:last-child {
  margin-bottom: 0;
}

.practice-image-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-img-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.challenges-section-waardengebaseerde-keuzes-dagelijks {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-waardengebaseerde-keuzes-dagelijks {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.challenges-text-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.challenges-intro-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.challenge-item-waardengebaseerde-keuzes-dagelijks {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.challenge-item-waardengebaseerde-keuzes-dagelijks:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.challenge-name-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.challenge-text-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #57534e;
  line-height: 1.7;
  margin-bottom: 0;
}

.challenges-image-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-img-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-waardengebaseerde-keuzes-dagelijks {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-waardengebaseerde-keuzes-dagelijks {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.conclusion-cta-waardengebaseerde-keuzes-dagelijks {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-waardengebaseerde-keuzes-dagelijks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #0d9488;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-waardengebaseerde-keuzes-dagelijks:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-waardengebaseerde-keuzes-dagelijks {
  background: #fef3c7;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-waardengebaseerde-keuzes-dagelijks {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.disclaimer-text-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.related-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1c1917;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
}

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

.related-card-waardengebaseerde-keuzes-dagelijks {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.05);
  transition: all 0.3s ease;
}

.related-card-waardengebaseerde-keuzes-dagelijks:hover {
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.1);
  transform: translateY(-4px);
}

.related-card-image-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0fdfa;
}

.related-card-img-waardengebaseerde-keuzes-dagelijks {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-waardengebaseerde-keuzes-dagelijks {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.related-card-description-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #57534e;
  line-height: 1.5;
  margin-bottom: 0;
}

.related-card-link-waardengebaseerde-keuzes-dagelijks {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-waardengebaseerde-keuzes-dagelijks:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .intro-content-waardengebaseerde-keuzes-dagelijks,
  .alignment-content-waardengebaseerde-keuzes-dagelijks,
  .practice-content-waardengebaseerde-keuzes-dagelijks,
  .challenges-content-waardengebaseerde-keuzes-dagelijks {
    flex-direction: column;
  }

  .intro-text-waardengebaseerde-keuzes-dagelijks,
  .intro-image-waardengebaseerde-keuzes-dagelijks,
  .alignment-text-waardengebaseerde-keuzes-dagelijks,
  .alignment-image-waardengebaseerde-keuzes-dagelijks,
  .practice-text-waardengebaseerde-keuzes-dagelijks,
  .practice-image-waardengebaseerde-keuzes-dagelijks,
  .challenges-text-waardengebaseerde-keuzes-dagelijks,
  .challenges-image-waardengebaseerde-keuzes-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-waardengebaseerde-keuzes-dagelijks,
  .intro-section-waardengebaseerde-keuzes-dagelijks,
  .alignment-section-waardengebaseerde-keuzes-dagelijks,
  .practice-section-waardengebaseerde-keuzes-dagelijks,
  .challenges-section-waardengebaseerde-keuzes-dagelijks,
  .conclusion-section-waardengebaseerde-keuzes-dagelijks,
  .disclaimer-section-waardengebaseerde-keuzes-dagelijks,
  .related-section-waardengebaseerde-keuzes-dagelijks {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .related-cards-waardengebaseerde-keuzes-dagelijks {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-waardengebaseerde-keuzes-dagelijks {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-waardengebaseerde-keuzes-dagelijks {
    font-size: 0.75rem;
  }

  .hero-title-waardengebaseerde-keuzes-dagelijks {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-meta-waardengebaseerde-keuzes-dagelijks {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-item-waardengebaseerde-keuzes-dagelijks {
    width: 100%;
    justify-content: center;
  }

  .process-steps-waardengebaseerde-keuzes-dagelijks {
    gap: 1.5rem;
  }

  .process-step-waardengebaseerde-keuzes-dagelijks {
    gap: 1rem;
  }

  .step-number-waardengebaseerde-keuzes-dagelijks {
    font-size: clamp(1.5rem, 3vw, 2rem);
    width: 50px;
  }

  .related-card-image-waardengebaseerde-keuzes-dagelijks {
    height: 150px;
  }

  .challenge-item-waardengebaseerde-keuzes-dagelijks {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}

.main-gezinswaarden-uitlijnen {
  background: #fffbeb;
  color: #1c1917;
}

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

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

.breadcrumbs-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-gezinswaarden-uitlijnen a,
.breadcrumbs-gezinswaarden-uitlijnen span {
  color: #57534e;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-gezinswaarden-uitlijnen a:hover {
  color: #0d9488;
}

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

.hero-meta-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #57534e;
  flex-wrap: wrap;
}

.meta-item-gezinswaarden-uitlijnen {
  color: #57534e;
}

.meta-divider-gezinswaarden-uitlijnen {
  color: #a1998e;
}

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

.hero-subtitle-gezinswaarden-uitlijnen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #57534e;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-image-gezinswaarden-uitlijnen {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.1);
}

.hero-img-gezinswaarden-uitlijnen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.intro-text-gezinswaarden-uitlijnen {
  flex: 1 1 60%;
  max-width: 60%;
}

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

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

.intro-highlight-gezinswaarden-uitlijnen {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-gezinswaarden-uitlijnen {
  background: #fef3c7;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.highlight-title-gezinswaarden-uitlijnen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
}

.highlight-list-gezinswaarden-uitlijnen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list-gezinswaarden-uitlijnen li {
  color: #57534e;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.highlight-list-gezinswaarden-uitlijnen li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: 700;
}

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

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

.process-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-intro-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
}

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

.step-card-gezinswaarden-uitlijnen {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.step-card-gezinswaarden-uitlijnen:hover {
  box-shadow: 0 10px 15px rgba(28, 25, 23, 0.12);
  transform: translateY(-4px);
}

.step-number-gezinswaarden-uitlijnen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

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

.step-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
}

.step-text-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-gezinswaarden-uitlijnen {
    flex-direction: column;
  }

  .intro-text-gezinswaarden-uitlijnen,
  .intro-highlight-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practice-text-gezinswaarden-uitlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

.practice-subtitle-gezinswaarden-uitlijnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1c1917;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.practice-text-item-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.practice-image-gezinswaarden-uitlijnen {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.1);
}

.practice-image-gezinswaarden-uitlijnen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .practice-wrapper-gezinswaarden-uitlijnen {
    flex-direction: column;
  }

  .practice-text-gezinswaarden-uitlijnen,
  .practice-image-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-gezinswaarden-uitlijnen {
    min-height: 300px;
  }
}

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

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

.challenges-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

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

.challenge-card-gezinswaarden-uitlijnen {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
  border-left: 4px solid #0d9488;
  transition: all 250ms ease-in-out;
}

.challenge-card-gezinswaarden-uitlijnen:hover {
  box-shadow: 0 10px 15px rgba(28, 25, 23, 0.12);
  transform: translateY(-4px);
}

.challenge-heading-gezinswaarden-uitlijnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.challenge-text-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenge-card-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.real-life-section-gezinswaarden-uitlijnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.real-life-wrapper-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.real-life-image-gezinswaarden-uitlijnen {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.1);
}

.real-life-image-gezinswaarden-uitlijnen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.real-life-text-gezinswaarden-uitlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.real-life-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.real-life-intro-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.real-life-example-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.real-life-example-gezinswaarden-uitlijnen strong {
  color: #1c1917;
  font-weight: 600;
}

.real-life-outro-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

@media (max-width: 768px) {
  .real-life-wrapper-gezinswaarden-uitlijnen {
    flex-direction: column;
  }

  .real-life-image-gezinswaarden-uitlijnen,
  .real-life-text-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .real-life-image-gezinswaarden-uitlijnen {
    min-height: 300px;
  }
}

.key-takeaways-gezinswaarden-uitlijnen {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.takeaways-content-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.takeaways-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.takeaway-quote-gezinswaarden-uitlijnen {
  background: #ffffff;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.quote-text-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.takeaway-list-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.takeaway-item-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.takeaway-item-gezinswaarden-uitlijnen strong {
  color: #1c1917;
  font-weight: 600;
}

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

.cta-content-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}

.cta-text-gezinswaarden-uitlijnen {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.cta-button-gezinswaarden-uitlijnen {
  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;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 250ms ease-in-out;
  border: 2px solid #0d9488;
  width: fit-content;
  margin: 0 auto;
}

.cta-button-gezinswaarden-uitlijnen:hover {
  background: #0f766e;
  border-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
}

.disclaimer-section-gezinswaarden-uitlijnen {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.disclaimer-content-gezinswaarden-uitlijnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #0d9488;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
}

.disclaimer-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  margin: 0;
}

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

.related-section-gezinswaarden-uitlijnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

.related-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  line-height: 1.2;
}

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

.related-card-gezinswaarden-uitlijnen {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(13, 148, 136, 0.1);
  display: flex;
  flex-direction: column;
}

.related-card-gezinswaarden-uitlijnen:hover {
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.12);
  transform: translateY(-8px);
}

.related-image-gezinswaarden-uitlijnen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fef3c7;
}

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

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

.related-card-title-gezinswaarden-uitlijnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  margin: 0;
}

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

.related-link-gezinswaarden-uitlijnen {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 250ms ease-in-out;
  display: inline-block;
  margin-top: auto;
}

.related-link-gezinswaarden-uitlijnen:hover {
  color: #0f766e;
}

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

  .related-cards-gezinswaarden-uitlijnen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .hero-section-gezinswaarden-uitlijnen,
  .intro-section-gezinswaarden-uitlijnen,
  .process-section-gezinswaarden-uitlijnen,
  .practice-section-gezinswaarden-uitlijnen,
  .challenges-section-gezinswaarden-uitlijnen,
  .real-life-section-gezinswaarden-uitlijnen,
  .key-takeaways-gezinswaarden-uitlijnen,
  .cta-section-gezinswaarden-uitlijnen,
  .disclaimer-section-gezinswaarden-uitlijnen,
  .related-section-gezinswaarden-uitlijnen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .breadcrumbs-gezinswaarden-uitlijnen {
    font-size: 0.75rem;
  }

  .step-card-gezinswaarden-uitlijnen,
  .challenge-card-gezinswaarden-uitlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-gezinswaarden-uitlijnen {
    font-size: 0.75rem;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

.values-clarification-journey-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 !important;
}

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

.hero-subtitle-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-accent);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 2rem auto 0;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

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

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-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: 1rem;
}

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

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

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

.foundation-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

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

.step-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: clamp(3rem, 8vw, 5rem);
}

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

.step-title-about {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 2rem auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.pillar-card-about:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(245, 158, 11, 0.05);
}

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-accent);
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

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

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

.philosophy-text-about {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-visual-about {
  flex: 1 1 45%;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.philosophy-paragraph-about {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.philosophy-paragraph-about strong {
  color: var(--color-accent);
  font-weight: 600;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  margin: 2rem auto;
  max-width: 800px;
}

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

.quote-author-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-accent);
  font-weight: 600;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

  .philosophy-text-about,
  .philosophy-visual-about {
    flex: 1 1 100%;
  }

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

  .step-number-about {
    min-width: 2.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pillar-card-about {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1025px) {
  .pillar-card-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

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

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

.portfolio-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

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

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: grid;
  grid-template-columns: 1fr;
}

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

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

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--color-accent-lighter);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  width: fit-content;
}

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

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.portfolio-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}

.portfolio-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
}

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

.portfolio-cta-container {
  max-width: 600px;
  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-bg-tertiary);
  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-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  opacity: 0.95;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

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

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    display: grid;
    grid-template-columns: 45% 1fr;
  }

  .portfolio-card-image {
    height: 100%;
    min-height: 350px;
  }

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

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card {
    grid-template-columns: 40% 1fr;
  }

  .portfolio-card-image {
    min-height: 380px;
  }
}

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

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

.services-hero__container {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

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

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
}

.services-hero__image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

.services-offerings {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

.services-offerings__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.services-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-card__icon svg {
  width: 24px;
  height: 24px;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
}

.services-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.services-card__features li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.services-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .services-offerings {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-offerings__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .services-offerings {
    padding: var(--space-3xl) var(--space-lg);
  }

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

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

.services-cta__container {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

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

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 600;
  transition: background-color 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);
}

.services-cta__image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .services-cta__button {
    padding: var(--space-md) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

: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: #a1998e;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-secondary: #14b8a6;
  --color-accent-light: #ccfbf1;
  --color-accent-lighter: #f0fdfa;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  --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 ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.values-guide {
  width: 100%;
  overflow: hidden;
}

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

.values-guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.values-guide h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.values-guide .updated-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  display: block;
}

.values-guide h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  font-weight: 600;
}

.values-guide h2:first-of-type {
  margin-top: var(--space-lg);
}

.values-guide p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

.values-guide li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

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

.contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

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

.intro-paragraph {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-lg);
  }
  
  .values-guide h1 {
    margin-bottom: var(--space-lg);
  }
  
  .values-guide h2 {
    margin-top: var(--space-2xl);
  }
  
  .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-2xl);
  }
  
  .values-guide {
    padding: var(--space-3xl) 0;
  }
}

.thank-you-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  animation: scaleIn 0.5s ease-out;
}

.success-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.15));
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0 0 var(--space-md) 0;
  font-weight: 500;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-xl) 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--color-accent-lighter);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.btn-return {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-xl) var(--space-lg);
  }

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

  .features-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-2xl);
  }

  .feature-item {
    flex: 0 1 calc(50% - var(--space-sm));
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-xl);
  }

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

  .feature-item {
    flex: 0 1 auto;
  }

  .features-list {
    gap: var(--space-2xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  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 {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-3xl);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 2;
  text-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
}

.error-symbol {
  position: absolute;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-secondary);
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
  right: 5%;
  top: 20%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-2xl);
  border: 2px solid var(--color-primary);
}

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

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

.error-footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.footer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }
  
  .container {
    padding: 0 var(--space-2xl);
  }
  
  .error-visual {
    margin-bottom: var(--space-3xl);
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }
  
  .container {
    padding: 0 var(--space-3xl);
  }
  
  .error-visual {
    margin-bottom: var(--space-3xl);
    height: 280px;
  }
  
  .btn-home {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
  }
  
  .error-wrapper {
    animation: fadeInUp 1s ease-out;
  }
}

.contact-help-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-help-hero {
  width: 100%;
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-help-hero-content {
  width: 100%;
}

.contact-help-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-bg-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.contact-help-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-accent-lighter);
  margin: 0;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-help-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: 6rem 0;
  }
}

.contact-help-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-help-main-content {
  width: 100%;
}

.contact-help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-help-form-wrapper {
  flex: 1 1 100%;
}

.contact-help-info-wrapper {
  flex: 1 1 100%;
}

.contact-help-form-header {
  margin-bottom: 2rem;
}

.contact-help-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.5px;
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-help-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-help-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-help-input,
.contact-help-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid #e5e0db;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.contact-help-input:focus,
.contact-help-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1), var(--shadow-sm);
}

.contact-help-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-help-form-privacy {
  padding: 1rem;
  background-color: var(--color-accent-lighter);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.contact-help-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-help-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-help-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-help-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 1rem;
}

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

.contact-help-submit:active {
  transform: translateY(0);
}

.contact-help-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
}

.contact-help-info-header {
  margin-bottom: 2rem;
}

.contact-help-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
}

.contact-help-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-help-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-help-info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid #f3e8d8;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-help-info-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.contact-help-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-lighter);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-help-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-help-info-content {
  flex: 1;
}

.contact-help-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.contact-help-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  display: inline-block;
}

.contact-help-info-value:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-help-info-hours {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0.5rem 0 0 0;
}

.contact-help-info-cta {
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-accent-lighter) 0%, rgba(207, 250, 254, 0.3) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-accent-light);
}

.contact-help-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
}

.contact-help-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-help-main {
    padding: 4rem 0;
  }

  .contact-help-grid {
    gap: 4rem;
  }

  .contact-help-form-wrapper {
    flex: 1 1 400px;
  }

  .contact-help-info-wrapper {
    flex: 1 1 400px;
  }

  .contact-help-submit {
    width: auto;
    padding: 1.125rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-help-main {
    padding: 5rem 0;
  }

  .contact-help-grid {
    gap: 5rem;
  }
}