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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-bg-hover: #f3f4f6;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #d1d5db;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-accent: #34d399;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  
  
  --border-color: #e5e7eb;
  --border-color-light: #f3f4f6;
  
  
  --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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
}

small {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

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

.badge--success {
  background: #d1fae5;
  color: #047857;
}

.badge--warning {
  background: #fef3c7;
  color: #92400e;
}

.badge--info {
  background: #dbeafe;
  color: #1e40af;
}

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

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

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

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

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

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

.flex {
  display: flex;
}

.flex--between {
  justify-content: space-between;
}

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

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

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

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

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

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

.section--xl {
  padding: 6rem 0;
}

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

.header {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

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

.header__nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.header__nav a {
  color: var(--color-text-secondary);
  font-weight: 500;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

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

@media (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    gap: var(--space-md);
  }
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

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

@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__actions {
    flex-direction: column;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

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

.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

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

.feature__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid var(--border-color);
  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 var(--color-primary-light);
}

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

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.form-group small {
  display: block;
  margin-top: var(--space-xs);
}

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.alert--success {
  background: #ecfdf5;
  border-color: #10b981;
  color: #047857;
}

.alert--error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.alert--warning {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

.alert--info {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}

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

.list {
  list-style: none;
}

.list--spaced {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.list__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.list__marker {
  width: 24px;
  height: 24px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.75rem;
}

.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-3xl);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__section h4 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.footer__section ul {
  list-style: none;
}

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

.footer__section a {
  color: var(--color-text-secondary);
  font-weight: 400;
  font-size: 0.95rem;
}

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

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

@media (max-width: 640px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

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

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

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

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

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

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

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

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

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

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

.max-w-sm {
  max-width: 500px;
}

.max-w-md {
  max-width: 700px;
}

.max-w-lg {
  max-width: 900px;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  body {
    font-size: 15px;
  }
}

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

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

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

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

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

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

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

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

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

@media print {
  body {
    background: white;
  }
  
  .no-print {
    display: none;
  }
}
.header-insight-forge {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

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

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

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

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

.header-insight-forge-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  white-space: nowrap;
}

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

.header-insight-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.header-insight-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0.4rem;
  flex-shrink: 0;
}

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

.header-insight-forge-mobile-toggle:hover span {
  background: var(--color-primary);
}

.header-insight-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-slow);
  z-index: 99;
  padding-top: clamp(4rem, 10vw, 5rem);
}

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

.header-insight-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--border-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(4rem, 10vw, 5rem);
  background: var(--color-bg-secondary);
  z-index: 1;
}

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

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

.header-insight-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  margin-top: clamp(2rem, 3vw, 2.5rem);
  flex: 1;
  overflow-y: auto;
}

.header-insight-forge-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--border-color-light);
  transition: all var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-insight-forge-mobile-link:hover {
  background: var(--color-bg-hover);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .header-insight-forge-nav-link {
    font-size: 1rem;
  }

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

    .decision-hub {
  width: 100%;
}

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-text-index {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 1024px) {
  .hero-text-index {
    flex: 1 1 45%;
  }
}

.hero-title-index {
  color: #111827;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-actions-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.btn-primary-index {
  background: #059669;
  color: #ffffff;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary-index:hover {
  background: #047857;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.btn-secondary-index {
  background: #f3f4f6;
  color: #111827;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
}

.btn-secondary-index:hover {
  background: #e5e7eb;
  border-color: #059669;
}

.btn-outline-index {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
}

.btn-outline-index:hover {
  background: #d1fae5;
}

.btn-lg-index {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Lora', serif;
}

.stat-label-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #4b5563;
  font-weight: 500;
}

.hero-image-index {
  flex: 1 1 100%;
  min-width: 280px;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .hero-image-index {
    flex: 1 1 45%;
    max-height: 500px;
  }
}

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

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.benefits-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.benefits-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

.benefit-card-index {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

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

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.card-icon-index {
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.card-title-index {
  color: #111827;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.card-text-index {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.how-it-works-section-index {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.how-it-works-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.how-it-works-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.process-step-index {
  flex: 1 1 100%;
  max-width: 500px;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .process-step-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.step-number-index {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Lora', serif;
  flex-shrink: 0;
  min-width: 80px;
}

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

.step-title-index {
  color: #111827;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

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

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

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

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

.featured-posts-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.featured-posts-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

.featured-post-card-index {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.featured-post-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

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

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

.post-card-title-index {
  color: #111827;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.post-card-text-index {
  color: #4b5563;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.post-card-link-index {
  color: #059669;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 250ms ease-in-out;
  margin-top: auto;
}

.post-card-link-index:hover {
  color: #047857;
}

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

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

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

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

.statistics-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.statistics-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

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

.stat-card-index {
  flex: 1 1 calc(50% - 1rem);
  min-width: 240px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

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

.stat-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.stat-card-number-index {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Lora', serif;
  margin: 0;
}

.stat-card-label-index {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin: 0;
}

.stat-card-text-index {
  color: #4b5563;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.faq-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 700px;
  margin: 0 auto;
}

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
}

.faq-item-index:hover {
  border-color: #059669;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.faq-question-index {
  color: #111827;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

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

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

.approach-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.approach-text-index {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 1024px) {
  .approach-text-index {
    flex: 1 1 45%;
  }
}

.approach-title-index {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.approach-subtitle-index {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-description-index {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.approach-features-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.approach-feature-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #111827;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
}

.approach-feature-index i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.approach-image-index {
  flex: 1 1 100%;
  min-width: 280px;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .approach-image-index {
    flex: 1 1 45%;
    max-height: 450px;
  }
}

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 10px 15px rgba(5, 150, 105, 0.15);
}

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

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.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 6px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.5rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}

.cookie-btn-accept-index:hover {
  background: #047857;
}

.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

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

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

.footer-about {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-about p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 520px;
}

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

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

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

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.footer-contact p {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  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-legal-section {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copyright p {
  color: #94a3b8;
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 3.5rem);
    grid-template-areas:
      "about about"
      "nav legal"
      "contact contact"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
  }

  .footer-nav-section {
    grid-area: nav;
  }

  .footer-legal-section {
    grid-area: legal;
    border-top: none;
    padding-top: 0;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-copyright {
    grid-area: copyright;
  }

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

  .footer-legal-section h3 {
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "about nav legal contact"
      "copyright copyright copyright copyright";
    gap: clamp(2rem, 4vw, 3rem);
  }

  .footer-about {
    border-bottom: none;
  }

  .footer-legal-section {
    border-top: none;
  }

  .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }
}
    

.category-page-decision-making-problem-solving {
  background: #0a0f1e;
  color: #ffffff;
}

.hero-section-decision-making-problem-solving {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-decision-making-problem-solving::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content-decision-making-problem-solving {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-header-decision-making-problem-solving {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-title-decision-making-problem-solving {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-subtitle-decision-making-problem-solving {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.hero-visual-decision-making-problem-solving {
  flex: 1 1 50%;
  min-width: 300px;
}

.hero-image-decision-making-problem-solving {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

@media (max-width: 1024px) {
  .hero-content-decision-making-problem-solving {
    flex-direction: column;
  }

  .hero-header-decision-making-problem-solving,
  .hero-visual-decision-making-problem-solving {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-decision-making-problem-solving {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-title-decision-making-problem-solving {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero-subtitle-decision-making-problem-solving {
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}

.posts-section-decision-making-problem-solving {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-decision-making-problem-solving {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.posts-header-decision-making-problem-solving {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-decision-making-problem-solving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: -0.01em;
}

.posts-subtitle-decision-making-problem-solving {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.posts-grid-decision-making-problem-solving {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-decision-making-problem-solving {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #0d1526;
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.card-decision-making-problem-solving:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.card-image-decision-making-problem-solving {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-decision-making-problem-solving {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.card-description-decision-making-problem-solving {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.card-meta-decision-making-problem-solving {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: #94a3b8;
}

.card-meta-item-decision-making-problem-solving {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta-item-decision-making-problem-solving i {
  color: #8b5cf6;
}

.card-link-decision-making-problem-solving {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.card-link-decision-making-problem-solving:hover {
  color: #60a5fa;
  border-bottom-color: #3b82f6;
}

@media (max-width: 768px) {
  .posts-grid-decision-making-problem-solving {
    flex-direction: column;
    align-items: stretch;
  }

  .card-decision-making-problem-solving {
    max-width: 100%;
  }
}

.insights-section-decision-making-problem-solving {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-decision-making-problem-solving {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.insights-header-decision-making-problem-solving {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.insights-title-decision-making-problem-solving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.01em;
}

.insights-intro-decision-making-problem-solving {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.insights-grid-decision-making-problem-solving {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.insight-item-decision-making-problem-solving {
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #111d2f;
  border-left: 4px solid #8b5cf6;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.insight-item-decision-making-problem-solving:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
}

.insight-number-decision-making-problem-solving {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.insight-heading-decision-making-problem-solving {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
}

.insight-text-decision-making-problem-solving {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .insights-grid-decision-making-problem-solving {
    flex-direction: column;
  }

  .insight-item-decision-making-problem-solving {
    max-width: 100%;
  }
}

.frameworks-section-decision-making-problem-solving {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.frameworks-content-decision-making-problem-solving {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.frameworks-header-decision-making-problem-solving {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.frameworks-title-decision-making-problem-solving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.01em;
}

.frameworks-intro-decision-making-problem-solving {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.frameworks-list-decision-making-problem-solving {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.framework-item-decision-making-problem-solving {
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #0d1526;
  border: 1px solid #1e3a5f;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.framework-item-decision-making-problem-solving:hover {
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.framework-name-decision-making-problem-solving {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #3b82f6;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
}

.framework-description-decision-making-problem-solving {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .frameworks-list-decision-making-problem-solving {
    flex-direction: column;
  }

  .framework-item-decision-making-problem-solving {
    max-width: 100%;
  }
}

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

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

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

.main-analytisch-denken-oefeningen {
  width: 100%;
  margin: 0;
  padding: 0;
}

.breadcrumbs-analytisch-denken-oefeningen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-analytisch-denken-oefeningen a {
  color: #059669;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.breadcrumbs-analytisch-denken-oefeningen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-analytisch-denken-oefeningen span {
  color: #9ca3af;
}

.hero-section-analytisch-denken-oefeningen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero-wrapper-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-analytisch-denken-oefeningen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-analytisch-denken-oefeningen {
  font-size: clamp(1.875rem, 5vw + 0.5rem, 3rem);
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Lora', serif;
}

.hero-subtitle-analytisch-denken-oefeningen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-meta-analytisch-denken-oefeningen {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-analytisch-denken-oefeningen {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.meta-divider-analytisch-denken-oefeningen {
  color: #d1d5db;
}

.hero-image-analytisch-denken-oefeningen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-analytisch-denken-oefeningen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-wrapper-analytisch-denken-oefeningen {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-analytisch-denken-oefeningen,
  .hero-image-analytisch-denken-oefeningen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-analytisch-denken-oefeningen {
    font-size: 2rem;
  }
}

.intro-section-analytisch-denken-oefeningen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-analytisch-denken-oefeningen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-analytisch-denken-oefeningen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Lora', serif;
}

.intro-paragraph-analytisch-denken-oefeningen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-analytisch-denken-oefeningen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-analytisch-denken-oefeningen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-analytisch-denken-oefeningen {
    flex-direction: column;
  }

  .intro-text-analytisch-denken-oefeningen,
  .intro-image-analytisch-denken-oefeningen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.exercises-section-analytisch-denken-oefeningen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.exercise-item-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.exercise-number-analytisch-denken-oefeningen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Poppins', sans-serif;
  min-width: 80px;
  flex-shrink: 0;
  line-height: 1;
}

.exercise-details-analytisch-denken-oefeningen {
  flex: 1;
}

.exercise-title-analytisch-denken-oefeningen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #111827;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Lora', serif;
}

.exercise-text-analytisch-denken-oefeningen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.exercise-example-analytisch-denken-oefeningen {
  background: #f3f4f6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #059669;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.example-label-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.example-list-analytisch-denken-oefeningen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.example-item-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.example-item-analytisch-denken-oefeningen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.exercise-instruction-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
}

.exercise-image-analytisch-denken-oefeningen {
  flex: 0 0 auto;
  width: clamp(150px, 30vw, 300px);
  height: auto;
}

.exercise-img-analytisch-denken-oefeningen {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .exercise-item-analytisch-denken-oefeningen {
    flex-direction: column;
    gap: 1.5rem;
  }

  .exercise-image-analytisch-denken-oefeningen {
    width: 100%;
  }
}

.tips-section-analytisch-denken-oefeningen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.tips-title-analytisch-denken-oefeningen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  text-align: center;
}

.tips-grid-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: 2rem;
}

.tip-card-analytisch-denken-oefeningen {
  flex: 1 1 calc(50% - 1rem);
  max-width: 280px;
  background: #f9fafb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.tip-icon-analytisch-denken-oefeningen {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.tip-card-title-analytisch-denken-oefeningen {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.tip-card-text-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.tips-image-analytisch-denken-oefeningen {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tips-img-analytisch-denken-oefeningen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tip-card-analytisch-denken-oefeningen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.progress-section-analytisch-denken-oefeningen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.progress-title-analytisch-denken-oefeningen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  text-align: center;
}

.progress-timeline-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.progress-stage-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.stage-number-analytisch-denken-oefeningen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #059669;
  min-width: 100px;
  font-family: 'Poppins', sans-serif;
}

.stage-content-analytisch-denken-oefeningen {
  flex: 1;
}

.stage-title-analytisch-denken-oefeningen {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.stage-text-analytisch-denken-oefeningen {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .progress-stage-analytisch-denken-oefeningen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.conclusion-section-analytisch-denken-oefeningen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-analytisch-denken-oefeningen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.conclusion-title-analytisch-denken-oefeningen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #111827;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  text-align: center;
}

.conclusion-text-analytisch-denken-oefeningen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.conclusion-highlight-analytisch-denken-oefeningen {
  background: #d1fae5;
  border-left: 4px solid #059669;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.highlight-text-analytisch-denken-oefeningen {
  font-size: 0.95rem;
  color: #047857;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-analytisch-denken-oefeningen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  text-align: center;
}

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

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

.related-card-analytisch-denken-oefeningen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.related-image-analytisch-denken-oefeningen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-img-analytisch-denken-oefeningen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-analytisch-denken-oefeningen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #111827;
  margin: 0;
  font-weight: 600;
  font-family: 'Lora', serif;
}

.related-card-text-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-analytisch-denken-oefeningen {
  font-size: 0.9rem;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-link-analytisch-denken-oefeningen:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-analytisch-denken-oefeningen {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

.disclaimer-section-analytisch-denken-oefeningen {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-analytisch-denken-oefeningen {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-analytisch-denken-oefeningen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-analytisch-denken-oefeningen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

.main-vijf-stappen-betere-keuzes {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-vijf-stappen-betere-keuzes {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-vijf-stappen-betere-keuzes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-vijf-stappen-betere-keuzes a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumbs-vijf-stappen-betere-keuzes a:hover {
  color: #047857;
}

.breadcrumbs-vijf-stappen-betere-keuzes span {
  color: #9ca3af;
}

.breadcrumbs-vijf-stappen-betere-keuzes span:last-child {
  color: #374151;
  font-weight: 600;
}

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

.hero-text-wrapper-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
  color: #111827;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-vijf-stappen-betere-keuzes {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
}

.hero-meta-vijf-stappen-betere-keuzes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-vijf-stappen-betere-keuzes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.meta-icon-vijf-stappen-betere-keuzes {
  color: #059669;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-image-vijf-stappen-betere-keuzes {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-vijf-stappen-betere-keuzes {
    flex-direction: column;
  }

  .hero-text-wrapper-vijf-stappen-betere-keuzes,
  .hero-image-wrapper-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-vijf-stappen-betere-keuzes {
    font-size: 2rem;
  }
}

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

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

.intro-text-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-vijf-stappen-betere-keuzes {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-vijf-stappen-betere-keuzes {
    flex-direction: column;
  }

  .intro-text-column-vijf-stappen-betere-keuzes,
  .intro-image-column-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-vijf-stappen-betere-keuzes {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-vijf-stappen-betere-keuzes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.steps-subtitle-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid-vijf-stappen-betere-keuzes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-vijf-stappen-betere-keuzes {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 450px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.step-card-vijf-stappen-betere-keuzes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.step-number-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.step-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #111827;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.step-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
  }
}

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

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

.practice-text-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.practice-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-image-vijf-stappen-betere-keuzes {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practice-wrapper-vijf-stappen-betere-keuzes {
    flex-direction: column;
  }

  .practice-text-column-vijf-stappen-betere-keuzes,
  .practice-image-column-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-vijf-stappen-betere-keuzes {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-vijf-stappen-betere-keuzes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.tips-subtitle-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.tip-item-vijf-stappen-betere-keuzes {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 220px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  transition: all 0.3s ease;
  text-align: center;
}

.tip-item-vijf-stappen-betere-keuzes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.tip-icon-vijf-stappen-betere-keuzes {
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #059669;
  flex-shrink: 0;
}

.tip-icon-vijf-stappen-betere-keuzes svg {
  width: 24px;
  height: 24px;
}

.tip-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  color: #111827;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.tip-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .tip-item-vijf-stappen-betere-keuzes {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .tip-item-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-vijf-stappen-betere-keuzes {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-vijf-stappen-betere-keuzes {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-vijf-stappen-betere-keuzes {
  background: #ffffff;
  border-left: 4px solid #059669;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote-text-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.375rem);
  color: #111827;
  line-height: 1.9;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.quote-author-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  font-style: normal;
  font-weight: 600;
}

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

.conclusion-wrapper-vijf-stappen-betere-keuzes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-image-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-text-column-vijf-stappen-betere-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-vijf-stappen-betere-keuzes {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.conclusion-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.conclusion-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-box-vijf-stappen-betere-keuzes {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.cta-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
}

.cta-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .conclusion-wrapper-vijf-stappen-betere-keuzes {
    flex-direction: column;
  }

  .conclusion-image-column-vijf-stappen-betere-keuzes,
  .conclusion-text-column-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-vijf-stappen-betere-keuzes {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-vijf-stappen-betere-keuzes {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.disclaimer-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  color: #111827;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

.related-section-vijf-stappen-betere-keuzes {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-vijf-stappen-betere-keuzes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.related-subtitle-vijf-stappen-betere-keuzes {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-vijf-stappen-betere-keuzes {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-vijf-stappen-betere-keuzes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.related-card-image-vijf-stappen-betere-keuzes {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-img-vijf-stappen-betere-keuzes {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-vijf-stappen-betere-keuzes {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-vijf-stappen-betere-keuzes {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: #111827;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.related-card-text-vijf-stappen-betere-keuzes {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-vijf-stappen-betere-keuzes {
  display: inline-flex;
  align-items: center;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-vijf-stappen-betere-keuzes:hover {
  color: #047857;
}

@media (max-width: 1024px) {
  .related-card-vijf-stappen-betere-keuzes {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .related-card-vijf-stappen-betere-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-vijf-stappen-betere-keuzes,
  .intro-section-vijf-stappen-betere-keuzes,
  .steps-section-vijf-stappen-betere-keuzes,
  .practice-section-vijf-stappen-betere-keuzes,
  .tips-section-vijf-stappen-betere-keuzes,
  .quote-section-vijf-stappen-betere-keuzes,
  .conclusion-section-vijf-stappen-betere-keuzes,
  .disclaimer-section-vijf-stappen-betere-keuzes,
  .related-section-vijf-stappen-betere-keuzes {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.main-beslissingsbomen-problemen {
width: 100%;
overflow: hidden;
}

.hero-section-beslissingsbomen-problemen {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
padding: clamp(2rem, 8vw, 5rem) 0;
overflow: hidden;
}

.hero-content-beslissingsbomen-problemen {
margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.hero-subtitle-beslissingsbomen-problemen {
color: #cbd5e1;
font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
line-height: 1.8;
max-width: 700px;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.breadcrumbs-beslissingsbomen-problemen a {
color: #94a3b8;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-beslissingsbomen-problemen a:hover {
color: #cbd5e1;
text-decoration: underline;
}

.breadcrumbs-beslissingsbomen-problemen span {
color: #64748b;
}

.hero-meta-beslissingsbomen-problemen {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
align-items: center;
font-size: 0.875rem;
color: #94a3b8;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.meta-item-beslissingsbomen-problemen {
color: #94a3b8;
}

.meta-divider-beslissingsbomen-problemen {
color: #475569;
}

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

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

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

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

.intro-text-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
}

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

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

.intro-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
overflow: hidden;
border-radius: 12px;
height: auto;
min-height: 300px;
}

.intro-image-beslissingsbomen-problemen {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.structure-section-beslissingsbomen-problemen {
background: #f3f4f6;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.structure-content-beslissingsbomen-problemen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.structure-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
overflow: hidden;
border-radius: 12px;
height: auto;
min-height: 350px;
}

.structure-image-beslissingsbomen-problemen {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.structure-text-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
}

.structure-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
}

.structure-paragraph-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.structure-list-beslissingsbomen-problemen {
list-style: none;
padding: 0;
margin: clamp(1.5rem, 2vw, 2rem) 0 0 0;
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
}

.structure-list-item-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
padding-left: 1.5rem;
position: relative;
}

.structure-list-item-beslissingsbomen-problemen::before {
content: '';
position: absolute;
left: 0;
color: #059669;
font-weight: 700;
}

.building-section-beslissingsbomen-problemen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.building-content-beslissingsbomen-problemen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.building-text-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
}

.building-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
}

.building-paragraph-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.building-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
overflow: hidden;
border-radius: 12px;
height: auto;
min-height: 350px;
}

.building-image-beslissingsbomen-problemen {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.practical-section-beslissingsbomen-problemen {
background: #f3f4f6;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.practical-header-beslissingsbomen-problemen {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practical-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
word-wrap: break-word;
}

.practical-subtitle-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
max-width: 600px;
margin: 0 auto;
}

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

.practical-card-beslissingsbomen-problemen {
flex: 1 1 calc(50% - 0.75rem);
max-width: calc(50% - 0.75rem);
background: #ffffff;
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: 12px;
border: 1px solid #e5e7eb;
transition: all 0.3s ease;
}

.practical-card-beslissingsbomen-problemen:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
border-color: #059669;
}

.card-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
font-weight: 700;
margin-bottom: clamp(0.75rem, 1vw, 1rem);
line-height: 1.3;
word-wrap: break-word;
}

.card-text-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
}

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

.tips-section-beslissingsbomen-problemen {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.tips-content-beslissingsbomen-problemen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: flex-start;
}

.tips-text-wrapper-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
}

.tips-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
word-wrap: break-word;
}

.tips-intro-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.tips-list-beslissingsbomen-problemen {
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-beslissingsbomen-problemen {
display: flex;
gap: clamp(1rem, 1.5vw, 1.5rem);
align-items: flex-start;
}

.tip-number-beslissingsbomen-problemen {
color: #059669;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
font-weight: 700;
flex-shrink: 0;
}

.tip-text-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.7;
}

.tip-text-beslissingsbomen-problemen strong {
color: #0f172a;
}

.tips-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 50%;
max-width: 50%;
overflow: hidden;
border-radius: 12px;
height: auto;
min-height: 400px;
}

.tips-image-beslissingsbomen-problemen {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.tips-content-beslissingsbomen-problemen {
flex-direction: column;
}

.tips-text-wrapper-beslissingsbomen-problemen,
.tips-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 100%;
max-width: 100%;
}

.tips-image-wrapper-beslissingsbomen-problemen {
min-height: 300px;
}
}

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

.conclusion-content-beslissingsbomen-problemen {
max-width: 800px;
margin: 0 auto;
}

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

.conclusion-text-beslissingsbomen-problemen {
color: #cbd5e1;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.9;
margin-bottom: clamp(1.5rem, 2vw, 2rem);
text-align: center;
}

.conclusion-highlight-beslissingsbomen-problemen {
background: rgba(255, 255, 255, 0.08);
border-left: 4px solid #059669;
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: 8px;
margin-top: clamp(2rem, 3vw, 2.5rem);
}

.highlight-text-beslissingsbomen-problemen {
color: #ffffff;
font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
line-height: 1.8;
margin: 0;
font-style: italic;
text-align: center;
}

.disclaimer-section-beslissingsbomen-problemen {
background: #f3f4f6;
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-beslissingsbomen-problemen {
max-width: 900px;
margin: 0 auto;
background: #ffffff;
padding: clamp(1.5rem, 3vw, 2.5rem);
border-left: 4px solid #6b7280;
border-radius: 8px;
}

.disclaimer-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
font-weight: 700;
margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-beslissingsbomen-problemen {
color: #374151;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin: 0;
}

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

.related-content-beslissingsbomen-problemen {
display: flex;
flex-direction: column;
}

.related-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: clamp(2rem, 4vw, 3rem);
text-align: center;
word-wrap: break-word;
}

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

.related-card-link-beslissingsbomen-problemen {
text-decoration: none;
flex: 1 1 calc(33.333% - 1rem);
max-width: calc(33.333% - 1rem);
transition: all 0.3s ease;
}

.related-card-beslissingsbomen-problemen {
display: flex;
flex-direction: column;
height: 100%;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}

.related-card-link-beslissingsbomen-problemen:hover .related-card-beslissingsbomen-problemen {
transform: translateY(-6px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
border-color: #059669;
}

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

.related-card-image-beslissingsbomen-problemen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

.related-card-link-beslissingsbomen-problemen:hover .related-card-image-beslissingsbomen-problemen img {
transform: scale(1.05);
}

.related-card-text-beslissingsbomen-problemen {
padding: clamp(1rem, 2vw, 1.5rem);
display: flex;
flex-direction: column;
flex-grow: 1;
}

.related-card-title-beslissingsbomen-problemen {
color: #0f172a;
font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
font-weight: 700;
line-height: 1.3;
margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
word-wrap: break-word;
}

.related-card-description-beslissingsbomen-problemen {
color: #6b7280;
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
line-height: 1.6;
flex-grow: 1;
}

@media (max-width: 1024px) {
.related-card-link-beslissingsbomen-problemen {
flex: 1 1 calc(50% - 0.75rem);
max-width: calc(50% - 0.75rem);
}

.intro-content-beslissingsbomen-problemen,
.structure-content-beslissingsbomen-problemen,
.building-content-beslissingsbomen-problemen,
.tips-content-beslissingsbomen-problemen {
flex-direction: column;
}

.intro-text-beslissingsbomen-problemen,
.intro-image-wrapper-beslissingsbomen-problemen,
.structure-image-wrapper-beslissingsbomen-problemen,
.structure-text-beslissingsbomen-problemen,
.building-text-beslissingsbomen-problemen,
.building-image-wrapper-beslissingsbomen-problemen,
.tips-text-wrapper-beslissingsbomen-problemen,
.tips-image-wrapper-beslissingsbomen-problemen {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.hero-section-beslissingsbomen-problemen {
padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.breadcrumbs-beslissingsbomen-problemen {
font-size: 0.75rem;
}

.hero-image-wrapper-beslissingsbomen-problemen {
max-height: 350px;
}
}

.main-denkfouten-voorkomen {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-title-denkfouten-voorkomen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-denkfouten-voorkomen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 0;
}

.hero-meta-denkfouten-voorkomen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-denkfouten-voorkomen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.meta-item-denkfouten-voorkomen i {
  color: #059669;
}

.hero-image-wrapper-denkfouten-voorkomen {
  margin-top: clamp(1rem, 2vw, 2rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

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

  .hero-title-denkfouten-voorkomen {
    font-size: 2rem;
  }

  .hero-subtitle-denkfouten-voorkomen {
    font-size: 1rem;
  }

  .hero-meta-denkfouten-voorkomen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.breadcrumbs-denkfouten-voorkomen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-denkfouten-voorkomen a {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-denkfouten-voorkomen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-denkfouten-voorkomen span {
  color: #cbd5e1;
}

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

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

.intro-text-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .intro-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .intro-content-denkfouten-voorkomen {
    flex-direction: column;
  }

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

  .intro-title-denkfouten-voorkomen {
    font-size: 1.75rem;
  }

  .intro-paragraph-denkfouten-voorkomen {
    font-size: 0.95rem;
  }
}

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

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

.bias-one-text-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-one-image-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-one-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-one-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-one-highlight-denkfouten-voorkomen {
  background: #ecfdf5;
  border-left: 4px solid #059669;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #047857;
  line-height: 1.7;
}

.bias-one-img-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .bias-one-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .bias-one-content-denkfouten-voorkomen {
    flex-direction: column;
  }

  .bias-one-text-denkfouten-voorkomen,
  .bias-one-image-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bias-one-title-denkfouten-voorkomen {
    font-size: 1.5rem;
  }
}

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

.bias-two-content-denkfouten-voorkomen {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.bias-two-text-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-two-image-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-two-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-two-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-two-highlight-denkfouten-voorkomen {
  background: #ecfdf5;
  border-left: 4px solid #059669;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #047857;
  line-height: 1.7;
}

.bias-two-img-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .bias-two-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .bias-two-content-denkfouten-voorkomen {
    flex-direction: column;
  }

  .bias-two-text-denkfouten-voorkomen,
  .bias-two-image-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bias-two-title-denkfouten-voorkomen {
    font-size: 1.5rem;
  }
}

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

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

.bias-three-text-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-three-image-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.bias-three-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-three-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bias-three-highlight-denkfouten-voorkomen {
  background: #ecfdf5;
  border-left: 4px solid #059669;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #047857;
  line-height: 1.7;
}

.bias-three-img-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .bias-three-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .bias-three-content-denkfouten-voorkomen {
    flex-direction: column;
  }

  .bias-three-text-denkfouten-voorkomen,
  .bias-three-image-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bias-three-title-denkfouten-voorkomen {
    font-size: 1.5rem;
  }
}

.bias-patterns-section-denkfouten-voorkomen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.bias-patterns-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.bias-cards-wrapper-denkfouten-voorkomen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.bias-card-denkfouten-voorkomen {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.bias-card-denkfouten-voorkomen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.bias-card-title-denkfouten-voorkomen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0;
}

.bias-card-text-denkfouten-voorkomen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.bias-card-highlight-denkfouten-voorkomen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #047857;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .bias-patterns-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .bias-patterns-title-denkfouten-voorkomen {
    font-size: 1.75rem;
  }

  .bias-cards-wrapper-denkfouten-voorkomen {
    gap: 1rem;
  }

  .bias-card-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-denkfouten-voorkomen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-denkfouten-voorkomen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-denkfouten-voorkomen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-img-denkfouten-voorkomen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .practical-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .practical-content-denkfouten-voorkomen {
    flex-direction: column;
  }

  .practical-text-denkfouten-voorkomen,
  .practical-image-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-title-denkfouten-voorkomen {
    font-size: 1.75rem;
  }
}

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

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

.conclusion-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-paragraph-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.conclusion-highlight-denkfouten-voorkomen {
  background: #ecfdf5;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: left;
}

.conclusion-highlight-text-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #047857;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 500;
}

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

  .conclusion-title-denkfouten-voorkomen {
    font-size: 1.75rem;
  }
}

.disclaimer-section-denkfouten-voorkomen {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-denkfouten-voorkomen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-denkfouten-voorkomen {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-denkfouten-voorkomen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  color: #92400e;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-denkfouten-voorkomen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #78350f;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-denkfouten-voorkomen {
    padding: clamp(1.5rem, 4vw, 2rem) 0;
  }
}

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

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

.related-title-denkfouten-voorkomen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.related-subtitle-denkfouten-voorkomen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.related-card-denkfouten-voorkomen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-denkfouten-voorkomen:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.related-card-image-denkfouten-voorkomen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

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

.related-card-denkfouten-voorkomen:hover .related-card-img-denkfouten-voorkomen {
  transform: scale(1.05);
}

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

.related-card-title-denkfouten-voorkomen {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

.related-card-text-denkfouten-voorkomen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .related-section-denkfouten-voorkomen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .related-title-denkfouten-voorkomen {
    font-size: 1.75rem;
  }

  .related-cards-wrapper-denkfouten-voorkomen {
    gap: 1rem;
  }

  .related-card-denkfouten-voorkomen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-image-denkfouten-voorkomen {
    height: 180px;
  }
}

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

strong {
  font-weight: 600;
  color: inherit;
}

a {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #047857;
  text-decoration: underline;
}

i {
  display: inline-block;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
}

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

.decision-excellence-about {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
}

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

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

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

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

.stat-label-about {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.split-text-about {
  flex: 1 1 45%;
  min-width: 280px;
}

.split-visual-about {
  flex: 1 1 45%;
  min-width: 280px;
}

.split-visual-about img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.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, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

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

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

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

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

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

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color-light);
}

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

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
}

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

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

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

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  margin: 0;
}

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

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  display: block;
  font-style: normal;
  font-weight: 600;
}

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

.cta-title-about {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.cta-text-about {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.cta-button-about {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  transition: all var(--transition-base);
}

.cta-button-about:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

.disclaimer-heading-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
}

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

@media (max-width: 768px) {
  .foundation-split-about {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .split-text-about,
  .split-visual-about {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

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

  .features-cards-about {
    gap: 1.25rem;
  }

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

@media (max-width: 480px) {
  .hero-stats-about {
    gap: 0.75rem;
  }

  .stat-item-about {
    flex: 1 1 45%;
  }

  .process-step-about {
    gap: 0.75rem;
  }

  .step-number-about {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.faq-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero-subtitle {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  margin: 0;
  line-height: 1.5;
}

.faq-container {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-card);
  transition: all var(--transition-base);
}

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

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  text-align: left;
}

.faq-question-text {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  animation: slideDown var(--transition-base) ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

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

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

.faq-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-cta-subtitle {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

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

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-container {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

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

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-container {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.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-md) 0;
  font-weight: 700;
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-hero__title {
    font-size: 3.5rem;
  }
}

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

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.service-card__detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.service-card__detail::before {
  content: '';
  color: var(--color-primary);
  font-weight: bold;
}

.service-card__cta {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.service-card__cta:hover {
  color: var(--color-primary-hover);
}

.service-card__cta::after {
  content: '';
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__cta::after {
  transform: translateX(4px);
}

.services-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-bg-secondary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.services-gallery {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.services-gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-gallery__container {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .services-gallery {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-gallery {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.services-gallery__item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.services-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base);
}

.services-gallery__item:hover .services-gallery__image {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .services-gallery__item {
    display: none;
  }

  .services-gallery__item:first-child {
    display: block;
  }
}

.decision-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.decision-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.decision-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.decision-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.decision-docs .update-date {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  display: block;
}

.decision-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

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

.decision-docs ul {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.decision-docs ul li {
  margin-bottom: var(--space-sm);
}

.decision-docs .section {
  margin-bottom: var(--space-2xl);
}

.decision-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.decision-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.decision-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.decision-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .decision-docs .container {
    padding: 0 var(--space-lg);
  }

  .decision-docs .content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .decision-docs .container {
    padding: 0 var(--space-xl);
  }

  .decision-docs .content {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) 0;
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
  animation: iconPulse 0.6s ease-out;
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  stroke-width: 1.5;
}

h1 {
  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.5px;
}

.lead-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: 1.6;
}

.description-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.3px;
}

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

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

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

@keyframes iconPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .thank-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-2xl);
  }

  .thank-icon svg {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

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

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-2xl);
  }

  .thank-icon svg {
    width: 64px;
    height: 64px;
  }

  h1 {
    margin-bottom: var(--space-lg);
  }

  .lead-text {
    margin-bottom: var(--space-lg);
  }

  .description-text {
    margin-bottom: var(--space-lg);
  }

  .next-steps {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

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

  .btn:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

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

.error-visual {
  margin-bottom: var(--space-xl);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.error-code-wrapper {
  perspective: 1000px;
  animation: floatIn 0.8s ease-out forwards;
  opacity: 0;
}

.error-code {
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.error-illustration {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  color: var(--color-secondary);
  animation: rotateIn 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.decision-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.15));
}

.error-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-md);
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.error-context {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
  box-shadow: var(--shadow-sm);
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.6s;
  margin-bottom: var(--space-xl);
}

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

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

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

.error-suggestions {
  text-align: left;
  background-color: var(--color-bg-tertiary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.7s;
}

.suggestions-title {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-primary);
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  position: relative;
  line-height: 1.6;
}

.suggestions-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-15deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

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

  .error-suggestions {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .error-message {
    font-size: clamp(1rem, 1.2vw + 0.4rem, 1.15rem);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .error-context {
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .context-text {
    font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.05rem);
  }

  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: clamp(1rem, 1.1vw + 0.3rem, 1.1rem);
  }

  .suggestions-list li {
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
  }

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

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-heading {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: var(--space-lg);
  }

  .error-message {
    font-size: clamp(1.05rem, 1.3vw + 0.3rem, 1.25rem);
    max-width: 700px;
  }

  .btn {
    padding: var(--space-md) calc(var(--space-xl) * 1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code-wrapper,
  .error-illustration,
  .error-heading,
  .error-message,
  .error-context,
  .btn,
  .error-suggestions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.contact-message-us {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-message-us-hero {
  background-color: var(--color-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-message-us-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-message-us-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #d1fae5;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: 5rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: 6rem var(--space-md);
  }
}

.contact-message-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-message-us-main {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-message-us-main {
    padding: 5rem var(--space-md);
  }
}

.contact-message-us-content {
  width: 100%;
}

.contact-message-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

.contact-message-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-message-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-message-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-message-us-form-wrapper h2,
.contact-message-us-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.contact-message-us-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact-message-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-message-us-input,
.contact-message-us-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  width: 100%;
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-message-us-input:focus,
.contact-message-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  background-color: var(--color-bg-secondary);
}

.contact-message-us-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-primary);
}

.contact-message-us-form-consent {
  margin-top: var(--space-sm);
}

.contact-message-us-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.contact-message-us-checkbox {
  margin-top: 2px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-message-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-privacy-link:hover,
.contact-message-us-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-message-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-message-us-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-message-us-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.contact-message-us-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.contact-message-us-info-item {
  display: flex;
  gap: var(--space-lg);
}

.contact-message-us-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-message-us-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-weight: 700;
}

.contact-message-us-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-message-us-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-info-content a:hover,
.contact-message-us-info-content a:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-info-note {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem) !important;
  color: var(--color-text-muted) !important;
  margin-top: var(--space-xs) !important;
}

.contact-message-us-info-extra {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-message-us-info-extra h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.contact-message-us-info-extra p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .contact-message-us-grid {
    gap: 2rem;
  }

  .contact-message-us-form-wrapper,
  .contact-message-us-info-wrapper {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-grid {
    gap: 4rem;
  }

  .contact-message-us-form-wrapper {
    flex: 1 1 40%;
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 40%;
  }
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}