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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-light: #64748b;
  --color-text-muted-dark: #9ca3af;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  --color-accent-blue: #3b82f6;
  --color-accent-purple: #8b5cf6;
  
  
  --color-error: #ef4444;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  
  --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);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-dark);
  background: var(--color-bg-secondary);
}

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

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

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

h1 {
  font-size: var(--text-6xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark h6 {
  color: var(--color-text-light);
}

.card-dark p {
  color: var(--color-text-secondary-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-light);
}

.section-dark p,
.section-dark li {
  color: var(--color-text-secondary-light);
}

.section-dark a {
  color: var(--color-primary);
}

.section-dark a:hover {
  color: var(--color-secondary);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

.section-light-alt {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
}

.section-accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
  color: var(--color-text-light);
}

.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent h4,
.section-accent h5,
.section-accent h6 {
  color: var(--color-text-light);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

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

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

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

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

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

.section-dark blockquote {
  border-left-color: var(--color-secondary);
  color: var(--color-text-secondary-light);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

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

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

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

.section-dark label {
  color: var(--color-text-light);
}

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

th {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  font-weight: 600;
  padding: var(--space-md);
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid #e2e8f0;
}

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

.section-dark table {
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-light);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

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

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

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

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

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

.section-dark .text-muted {
  color: var(--color-text-secondary-light);
}

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

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

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

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

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

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

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

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

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

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

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
  
  .hide-desktop {
    display: none;
  }
}

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

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

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

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

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

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

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

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

.animate-bounce {
  animation: bounce 2s infinite;
}

.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow var(--transition-base);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

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

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

.section-dark .divider {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-small {
  min-height: 60vh;
}

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

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

@media print {
  body {
    background: var(--color-bg-secondary);
    color: var(--color-text-dark);
  }
  
  .no-print {
    display: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
  
  .section,
  .section-sm,
  .section-lg,
  .section-xl {
    padding: var(--space-2xl) 0;
  }
  
  .btn {
    width: 100%;
  }
}
.header-accountability-nexus {
  background: var(--color-bg-primary);
  padding: 1rem 0;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

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

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

.header-accountability-nexus-brand:hover {
  opacity: 0.85;
}

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

.header-accountability-nexus-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

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

.header-accountability-nexus-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 0.25rem;
}

.header-accountability-nexus-nav-link:hover {
  color: var(--color-primary);
}

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

.header-accountability-nexus-nav-link:hover::after {
  width: 100%;
}

.header-accountability-nexus-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-accountability-nexus-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
  z-index: 101;
}

.header-accountability-nexus-mobile-toggle:hover {
  color: var(--color-primary);
}

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

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

.header-accountability-nexus-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 4rem;
  background: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.header-accountability-nexus-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.header-accountability-nexus-mobile-close:hover {
  color: var(--color-primary);
}

.header-accountability-nexus-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 1rem 0;
}

.header-accountability-nexus-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  display: block;
}

.header-accountability-nexus-mobile-link:hover {
  color: var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
}

.header-accountability-nexus-mobile-cta {
  margin: 2rem clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: block;
}

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

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

  .header-accountability-nexus-cta-button {
    display: inline-block;
  }

  .header-accountability-nexus-mobile-toggle {
    display: none;
  }

  .header-accountability-nexus-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-accountability-nexus-logo-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .header-accountability-nexus-logo-img {
    width: 40px;
    height: 40px;
  }
}

    .accountability-hub {
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.hero-btn-index {
  padding: clamp(0.65rem, 2vw, 0.85rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #10b981;
  font-family: 'Playfair Display', serif;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  min-height: 400px;
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-text-block-index,
  .hero-image-block-index {
    flex: 1 1 100%;
  }
  
  .hero-image-block-index {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-section-index {
    min-height: auto;
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons-index {
    flex-direction: column;
  }
  
  .hero-btn-index {
    width: 100%;
  }
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 1rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.features-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.card-icon-index {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #10b981;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.card-text-index {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

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

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

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

.about-image-block-index {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 12px;
  min-height: 400px;
}

.about-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0.5rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.about-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #334155;
}

.benefit-item-index i {
  color: #10b981;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefit-text-index {
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-content-index {
    flex-direction: column;
  }
  
  .about-image-block-index,
  .about-text-block-index {
    flex: 1 1 100%;
  }
  
  .about-image-block-index {
    min-height: 300px;
  }
}

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

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

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

.section-tag-process-index {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #d1fae5;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin: 1rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.process-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.process-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-step-index {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #10b981;
  font-family: 'Playfair Display', serif;
  line-height: 0.9;
  flex-shrink: 0;
}

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

.step-title-index {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

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

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

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

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

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

.blog-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 1rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.blog-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

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

.blog-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.blog-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

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

.blog-card-link-index {
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.blog-card-link-index:hover {
  color: #059669;
}

.blog-footer-index {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.blog-cta-index {
  display: inline-block;
}

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 1rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.testimonials-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.testimonial-text-index {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.author-name-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #0f172a;
  font-weight: 600;
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #94a3b8;
}

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 1rem 0 0 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

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

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

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

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

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

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

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 500px;
  line-height: 1.7;
}

.cta-button-index {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

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

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #10b981;
  color: #ffffff;
}

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

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

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

@media (max-width: 640px) {
  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    flex: 1 1 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.5rem 0.75rem;
  }
}

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

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

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

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

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

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

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

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

.footer-contact {
  display: block;
}

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

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

.footer-legal {
  display: block;
}

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

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

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

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

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

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 1 1 300px;
  }

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

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

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

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

.category-page-personal-accountability-training {
  width: 100%;
}

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

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

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

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

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

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

.hero-subtitle-accountability {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-visual-accountability {
  flex: 1 1 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.hero-image-accountability {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

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

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

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

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

.posts-subtitle-accountability {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.card-accountability {
  flex: 1 1 280px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.card-accountability:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.card-body-accountability {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-accountability {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #0f172a;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}

.card-description-accountability {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.card-meta-accountability {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.card-reading-time-accountability,
.card-level-accountability,
.card-date-accountability {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-accountability i,
.card-level-accountability i,
.card-date-accountability i {
  color: #10b981;
  font-size: 0.75rem;
}

.card-link-accountability {
  display: inline-block;
  font-size: 0.95rem;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.card-link-accountability:hover {
  color: #059669;
  transform: translateX(4px);
}

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

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

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

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

.insights-intro-accountability {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

.insights-list-accountability {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.insight-item-accountability {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.insight-number-accountability {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.insight-text-accountability {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.insight-item-title-accountability {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #0f172a;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}

.insight-item-description-accountability {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

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

.resource-title-accountability {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0;
}

.resource-intro-accountability {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: clamp(0.75rem, 1.5vw, 1rem);
}

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

.faq-item-accountability {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-question-accountability {
  display: block;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  background: #ffffff;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question-accountability:hover {
  background: #f8fafc;
  color: #10b981;
}

.faq-item-accountability[open] .faq-question-accountability {
  background: #f8fafc;
  color: #10b981;
}

.faq-item-accountability[open] .faq-question-accountability::after {
  transform: rotate(180deg);
}

.faq-question-accountability::after {
  content: '';
  float: right;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-answer-accountability {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.faq-answer-accountability p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

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

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

  .hero-visual-accountability {
    flex: 1 1 100%;
  }

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

  .insight-item-accountability {
    flex-direction: column;
    gap: 1rem;
  }

  .insight-number-accountability {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .posts-grid-accountability {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-accountability {
    gap: 2rem;
  }

  .card-accountability {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-accountability {
    flex: 1 1 calc(50% - 1rem);
  }
}

.main-eigenaarsmindset-ontwikkelen {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.hero-section-eigenaarsmindset-ontwikkelen {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-eigenaarsmindset-ontwikkelen a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-eigenaarsmindset-ontwikkelen a:hover {
  color: #d1fae5;
  text-decoration: underline;
}

.breadcrumb-separator-eigenaarsmindset-ontwikkelen,
.breadcrumb-current-eigenaarsmindset-ontwikkelen {
  color: #64748b;
}

.breadcrumb-current-eigenaarsmindset-ontwikkelen {
  color: #cbd5e1;
}

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

.hero-text-wrapper-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-eigenaarsmindset-ontwikkelen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-eigenaarsmindset-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.meta-item-eigenaarsmindset-ontwikkelen {
  color: #94a3b8;
}

.meta-divider-eigenaarsmindset-ontwikkelen {
  color: #475569;
}

.hero-image-wrapper-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-eigenaarsmindset-ontwikkelen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

  .hero-text-wrapper-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-eigenaarsmindset-ontwikkelen {
    max-height: 350px;
  }
}

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

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

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

.intro-text-eigenaarsmindset-ontwikkelen {
  flex: 1 1 65%;
  max-width: 65%;
}

.intro-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-eigenaarsmindset-ontwikkelen {
  flex: 1 1 35%;
  max-width: 35%;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.highlight-quote-eigenaarsmindset-ontwikkelen {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: #0f172a;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

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

  .intro-text-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-highlight-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.content-text-one-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-one-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-eigenaarsmindset-ontwikkelen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-eigenaarsmindset-ontwikkelen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .content-text-one-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-one-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-eigenaarsmindset-ontwikkelen {
    max-height: 300px;
  }
}

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

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

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

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

.content-text-two-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-wrapper-two-eigenaarsmindset-ontwikkelen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .content-text-two-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.content-text-three-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-three-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-list-eigenaarsmindset-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.technique-item-eigenaarsmindset-ontwikkelen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.technique-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.technique-text-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.content-image-three-eigenaarsmindset-ontwikkelen {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-three-eigenaarsmindset-ontwikkelen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .content-text-three-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-three-eigenaarsmindset-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-eigenaarsmindset-ontwikkelen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-four-eigenaarsmindset-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.content-text-four-eigenaarsmindset-ontwikkelen {
  flex: 1 1 100%;
}

.content-title-four-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-four-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-section-eigenaarsmindset-ontwikkelen {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-eigenaarsmindset-ontwikkelen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-posts-section-eigenaarsmindset-ontwikkelen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-posts-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.related-posts-grid-eigenaarsmindset-ontwikkelen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-post-card-eigenaarsmindset-ontwikkelen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-post-card-eigenaarsmindset-ontwikkelen:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-post-image-eigenaarsmindset-ontwikkelen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-eigenaarsmindset-ontwikkelen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-text-eigenaarsmindset-ontwikkelen {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-post-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-post-description-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

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

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

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

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

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

.disclaimer-title-eigenaarsmindset-ontwikkelen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: -0.01em;
}

.disclaimer-text-eigenaarsmindset-ontwikkelen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

  .disclaimer-content-eigenaarsmindset-ontwikkelen {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 640px) {
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.main-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-verantwoordelijkheid-nemen-beginnen a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-verantwoordelijkheid-nemen-beginnen a:hover {
  color: #f59e0b;
}

.breadcrumbs-verantwoordelijkheid-nemen-beginnen span {
  color: #64748b;
}

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

.hero-text-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.hero-meta-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.meta-item-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #64748b;
  display: flex;
  align-items: center;
}

.hero-image-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
  }

  .hero-text-verantwoordelijkheid-nemen-beginnen,
  .hero-image-verantwoordelijkheid-nemen-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
  }

  .intro-text-verantwoordelijkheid-nemen-beginnen,
  .intro-image-verantwoordelijkheid-nemen-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-verantwoordelijkheid-nemen-beginnen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-verantwoordelijkheid-nemen-beginnen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.steps-subtitle-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
}

.steps-wrapper-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-verantwoordelijkheid-nemen-beginnen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.step-text-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

.mindset-section-verantwoordelijkheid-nemen-beginnen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-wrapper-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-image-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mindset-text-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.mindset-paragraph-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mindset-quote-verantwoordelijkheid-nemen-beginnen {
  border-left: 4px solid #10b981;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 2vw, 2rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-text-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .mindset-wrapper-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
  }

  .mindset-image-verantwoordelijkheid-nemen-beginnen,
  .mindset-text-verantwoordelijkheid-nemen-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-verantwoordelijkheid-nemen-beginnen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.practical-intro-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.tools-list-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tool-item-verantwoordelijkheid-nemen-beginnen {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
}

.tool-name-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tool-description-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.practical-image-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .practical-content-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
  }

  .practical-text-verantwoordelijkheid-nemen-beginnen,
  .practical-image-verantwoordelijkheid-nemen-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.results-section-verantwoordelijkheid-nemen-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.results-content-verantwoordelijkheid-nemen-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.results-image-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.results-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.results-text-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.results-paragraph-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .results-content-verantwoordelijkheid-nemen-beginnen {
    flex-direction: column;
  }

  .results-image-verantwoordelijkheid-nemen-beginnen,
  .results-text-verantwoordelijkheid-nemen-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-verantwoordelijkheid-nemen-beginnen {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-verantwoordelijkheid-nemen-beginnen {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.conclusion-text-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

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

.related-header-verantwoordelijkheid-nemen-beginnen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-subtitle-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
}

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

.related-card-verantwoordelijkheid-nemen-beginnen {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-verantwoordelijkheid-nemen-beginnen:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.related-card-img-verantwoordelijkheid-nemen-beginnen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-verantwoordelijkheid-nemen-beginnen:hover .related-card-img-verantwoordelijkheid-nemen-beginnen {
  transform: scale(1.05);
}

.related-card-body-verantwoordelijkheid-nemen-beginnen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-verantwoordelijkheid-nemen-beginnen:hover {
  color: #059669;
}

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

.disclaimer-section-verantwoordelijkheid-nemen-beginnen {
  background: #0a0f1e;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-verantwoordelijkheid-nemen-beginnen {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #f59e0b;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-verantwoordelijkheid-nemen-beginnen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 640px) {
  .hero-section-verantwoordelijkheid-nemen-beginnen,
  .intro-section-verantwoordelijkheid-nemen-beginnen,
  .steps-section-verantwoordelijkheid-nemen-beginnen,
  .mindset-section-verantwoordelijkheid-nemen-beginnen,
  .practical-section-verantwoordelijkheid-nemen-beginnen,
  .results-section-verantwoordelijkheid-nemen-beginnen,
  .conclusion-section-verantwoordelijkheid-nemen-beginnen,
  .related-section-verantwoordelijkheid-nemen-beginnen,
  .disclaimer-section-verantwoordelijkheid-nemen-beginnen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

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

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

.main-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  overflow: hidden;
}

.hero-section-verantwoordelijkheid-teams-organisaties {
  background: #0a0f1e;
  padding: 4rem 0 3rem 0;
  overflow: hidden;
}

.breadcrumbs-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.breadcrumbs-verantwoordelijkheid-teams-organisaties a {
  color: #64b5f6;
  transition: color 0.3s ease;
}

.breadcrumbs-verantwoordelijkheid-teams-organisaties a:hover {
  color: #90caf9;
}

.breadcrumbs-verantwoordelijkheid-teams-organisaties span {
  color: #475569;
}

.breadcrumbs-verantwoordelijkheid-teams-organisaties span:last-child {
  color: #94a3b8;
  font-weight: 500;
}

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

.hero-text-wrapper-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-verantwoordelijkheid-teams-organisaties {
  color: #94a3b8;
}

.meta-divider-verantwoordelijkheid-teams-organisaties {
  color: #475569;
}

.hero-image-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-verantwoordelijkheid-teams-organisaties {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-wrapper-verantwoordelijkheid-teams-organisaties,
  .hero-image-wrapper-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }

  .breadcrumbs-verantwoordelijkheid-teams-organisaties {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

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

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

.intro-text-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-img-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-verantwoordelijkheid-teams-organisaties {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-verantwoordelijkheid-teams-organisaties,
  .intro-image-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }
}

.foundation-section-verantwoordelijkheid-teams-organisaties {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.foundation-content-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundation-image-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-text-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.foundation-paragraph-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.foundation-highlight-verantwoordelijkheid-teams-organisaties {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-text-verantwoordelijkheid-teams-organisaties {
  color: #0f172a;
  font-style: italic;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
}

.foundation-img-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .foundation-content-verantwoordelijkheid-teams-organisaties {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .foundation-image-verantwoordelijkheid-teams-organisaties,
  .foundation-text-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }
}

.impact-section-verantwoordelijkheid-teams-organisaties {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.impact-content-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-text-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.impact-paragraph-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.impact-list-verantwoordelijkheid-teams-organisaties {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.impact-item-verantwoordelijkheid-teams-organisaties {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.impact-item-verantwoordelijkheid-teams-organisaties:before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.2rem;
}

.impact-img-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .impact-content-verantwoordelijkheid-teams-organisaties {
    flex-direction: column;
    gap: 2rem;
  }

  .impact-text-verantwoordelijkheid-teams-organisaties,
  .impact-image-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .impact-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }
}

.practice-section-verantwoordelijkheid-teams-organisaties {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practice-header-verantwoordelijkheid-teams-organisaties {
  text-align: center;
  margin-bottom: 3rem;
}

.practice-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.practice-subtitle-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.practice-cards-wrapper-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card-verantwoordelijkheid-teams-organisaties:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-number-verantwoordelijkheid-teams-organisaties {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.card-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .practice-card-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }
}

.closing-section-verantwoordelijkheid-teams-organisaties {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.closing-content-verantwoordelijkheid-teams-organisaties {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.closing-text-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-image-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.closing-paragraph-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.closing-cta-verantwoordelijkheid-teams-organisaties {
  margin-top: 2rem;
}

.cta-button-verantwoordelijkheid-teams-organisaties {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #10b981;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.cta-button-verantwoordelijkheid-teams-organisaties:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.closing-img-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .closing-content-verantwoordelijkheid-teams-organisaties {
    flex-direction: column;
    gap: 2rem;
  }

  .closing-text-verantwoordelijkheid-teams-organisaties,
  .closing-image-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .closing-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }
}

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

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

.disclaimer-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.related-section-verantwoordelijkheid-teams-organisaties {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-header-verantwoordelijkheid-teams-organisaties {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.related-subtitle-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.related-card-verantwoordelijkheid-teams-organisaties {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: calc(33.333% - 1.33rem);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-verantwoordelijkheid-teams-organisaties:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-image-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-verantwoordelijkheid-teams-organisaties {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-verantwoordelijkheid-teams-organisaties {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(1.05rem, 2vw + 0.4rem, 1.3rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-verantwoordelijkheid-teams-organisaties {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.related-card-link-verantwoordelijkheid-teams-organisaties {
  display: inline-block;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-verantwoordelijkheid-teams-organisaties:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-verantwoordelijkheid-teams-organisaties {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

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

  .related-title-verantwoordelijkheid-teams-organisaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  }

  .practice-cards-wrapper-verantwoordelijkheid-teams-organisaties {
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section-verantwoordelijkheid-teams-organisaties {
    padding: 2rem 0 1.5rem 0;
  }

  .intro-section-verantwoordelijkheid-teams-organisaties,
  .foundation-section-verantwoordelijkheid-teams-organisaties,
  .impact-section-verantwoordelijkheid-teams-organisaties,
  .practice-section-verantwoordelijkheid-teams-organisaties,
  .closing-section-verantwoordelijkheid-teams-organisaties,
  .related-section-verantwoordelijkheid-teams-organisaties {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .disclaimer-section-verantwoordelijkheid-teams-organisaties {
    padding: 1.5rem 0;
  }
}

.main-aansprakelijkheid-praktische-methoden {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
}

.hero-section-aansprakelijkheid-praktische-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-aansprakelijkheid-praktische-methoden a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-aansprakelijkheid-praktische-methoden a:hover {
  color: #f59e0b;
}

.breadcrumbs-aansprakelijkheid-praktische-methoden span {
  color: #64748b;
}

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

.hero-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-lead-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-aansprakelijkheid-praktische-methoden {
  color: #94a3b8;
}

.meta-divider-aansprakelijkheid-praktische-methoden {
  color: #475569;
}

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

@media (max-width: 768px) {
  .hero-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column;
  }

  .hero-text-aansprakelijkheid-praktische-methoden,
  .hero-image-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-aansprakelijkheid-praktische-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

@media (max-width: 768px) {
  .intro-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column;
  }

  .intro-text-aansprakelijkheid-praktische-methoden,
  .intro-image-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-aansprakelijkheid-praktische-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.methods-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-paragraph-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.methods-list-aansprakelijkheid-praktische-methoden {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.methods-list-item-aansprakelijkheid-praktische-methoden {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.methods-img-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .methods-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column;
  }

  .methods-text-aansprakelijkheid-praktische-methoden,
  .methods-image-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tracking-section-aansprakelijkheid-praktische-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tracking-content-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tracking-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tracking-paragraph-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.tracking-list-aansprakelijkheid-praktische-methoden {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.tracking-list-item-aansprakelijkheid-praktische-methoden {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.tracking-img-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tracking-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column-reverse;
  }

  .tracking-image-aansprakelijkheid-praktische-methoden,
  .tracking-text-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.accountability-section-aansprakelijkheid-praktische-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.accountability-content-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.accountability-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.accountability-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.accountability-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accountability-paragraph-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.accountability-quote-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.75;
  padding: 1.5rem;
  background: #e0f2fe;
  border-left: 4px solid #10b981;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-style: italic;
}

.accountability-img-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .accountability-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column;
  }

  .accountability-text-aansprakelijkheid-praktische-methoden,
  .accountability-image-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.systems-section-aansprakelijkheid-praktische-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.systems-header-aansprakelijkheid-praktische-methoden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.systems-subtitle-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.systems-cards-aansprakelijkheid-praktische-methoden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.system-card-aansprakelijkheid-praktische-methoden {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.system-card-aansprakelijkheid-praktische-methoden:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.system-card-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.system-card-text-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .system-card-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
  }
}

.implementation-section-aansprakelijkheid-praktische-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-aansprakelijkheid-praktische-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.implementation-paragraph-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.implementation-list-aansprakelijkheid-praktische-methoden {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.implementation-list-item-aansprakelijkheid-praktische-methoden {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.implementation-highlight-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.75;
  padding: 1.5rem;
  background: #d1fae5;
  border-left: 4px solid #10b981;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.implementation-img-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-content-aansprakelijkheid-praktische-methoden {
    flex-direction: column-reverse;
  }

  .implementation-text-aansprakelijkheid-praktische-methoden,
  .implementation-image-aansprakelijkheid-praktische-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-aansprakelijkheid-praktische-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-aansprakelijkheid-praktische-methoden {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.disclaimer-section-aansprakelijkheid-praktische-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-aansprakelijkheid-praktische-methoden {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-aansprakelijkheid-praktische-methoden {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.related-section-aansprakelijkheid-praktische-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.related-card-aansprakelijkheid-praktische-methoden {
  flex: 1 1 320px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-aansprakelijkheid-praktische-methoden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-image-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-aansprakelijkheid-praktische-methoden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-aansprakelijkheid-praktische-methoden {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

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

.related-card-description-aansprakelijkheid-praktische-methoden {
  font-size: clamp(0.825rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
  flex: 1;
}

.related-link-aansprakelijkheid-praktische-methoden {
  display: inline-block;
  font-size: clamp(0.825rem, 1vw, 0.95rem);
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-aansprakelijkheid-praktische-methoden:hover {
  color: #059669;
}

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

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

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

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

@media (max-width: 640px) {
  .hero-section-aansprakelijkheid-praktische-methoden {
    padding: 2rem 0;
  }

  .intro-section-aansprakelijkheid-praktische-methoden,
  .methods-section-aansprakelijkheid-praktische-methoden,
  .tracking-section-aansprakelijkheid-praktische-methoden,
  .accountability-section-aansprakelijkheid-praktische-methoden,
  .systems-section-aansprakelijkheid-praktische-methoden,
  .implementation-section-aansprakelijkheid-praktische-methoden,
  .conclusion-section-aansprakelijkheid-praktische-methoden,
  .disclaimer-section-aansprakelijkheid-praktische-methoden,
  .related-section-aansprakelijkheid-praktische-methoden {
    padding: 2rem 0;
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

.responsibility-academy-about {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  overflow: hidden;
}

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

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

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

.hero-text-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

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

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

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

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

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

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

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.foundation-text-about {
  max-width: 900px;
  margin: 0 auto;
}

.foundation-text-about p {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.foundation-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.pillar-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.pillar-title-about {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.pillar-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

.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(2.5rem, 4vw, 3.5rem);
}

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

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

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

.step-number-about {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  flex-shrink: 0;
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

.approach-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-md);
}

.impact-section-about {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  font-style: normal;
}

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

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

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

.commitment-text-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.commitment-text-about p {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1rem;
  }

  .stat-number-about {
    font-size: 1.75rem;
  }

  .process-step-about {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-about {
    font-size: 2rem;
    min-width: auto;
  }

  .featured-quote-about {
    border-left-width: 4px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title-about {
    font-size: 2.5rem;
  }

  .section-title-about {
    font-size: 2.25rem;
  }
}

@media (min-width: 1025px) {
  .hero-title-about {
    font-size: 3.5rem;
  }

  .section-title-about {
    font-size: 2.75rem;
  }
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.btn-primary-about:hover {
  background: var(--color-primary-hover);
  text-decoration: none;
}

.faq-page {
    background-color: var(--color-bg-primary);
    color: var(--color-text-light);
  }

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

  .faq-hero__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .faq-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 5vw + 0.5rem, var(--text-5xl));
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: var(--line-height-tight);
  }

  .faq-hero__subtitle {
    font-family: var(--font-primary);
    font-size: clamp(var(--text-base), 2vw + 0.3rem, var(--text-lg));
    color: var(--color-text-secondary-light);
    line-height: var(--line-height-normal);
  }

  @media (min-width: 768px) {
    .faq-hero {
      padding: var(--space-2xl) var(--space-lg);
    }

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

  @media (min-width: 1024px) {
    .faq-hero {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  .faq-content {
    background-color: var(--color-bg-primary);
    padding: var(--space-lg) var(--space-md);
    overflow: hidden;
  }

  .faq-content__container {
    max-width: 900px;
    margin: 0 auto;
  }

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

  .faq-item {
    background-color: var(--color-bg-card-dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-base);
  }

  .faq-item:hover {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
  }

  .faq-item.active {
    background-color: rgba(16, 185, 129, 0.05);
    border-color: var(--color-primary);
  }

  .faq-item__trigger {
    width: 100%;
    padding: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-primary);
    font-size: clamp(var(--text-sm), 1vw + 0.5rem, var(--text-base));
    color: var(--color-text-light);
    font-weight: 600;
    transition: color var(--transition-fast);
  }

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

  .faq-item__question {
    text-align: left;
    line-height: var(--line-height-normal);
  }

  .faq-item__icon {
    flex-shrink: 0;
    font-size: var(--text-xl);
    color: var(--color-primary);
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-item.active .faq-item__icon {
    transform: rotate(45deg);
  }

  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 var(--space-md);
  }

  .faq-item.active .faq-item__answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
  }

  .faq-item__answer p {
    font-family: var(--font-primary);
    font-size: clamp(var(--text-sm), 1vw + 0.3rem, var(--text-base));
    color: var(--color-text-secondary-light);
    line-height: var(--line-height-relaxed);
    margin: 0;
  }

  @media (min-width: 768px) {
    .faq-content {
      padding: var(--space-2xl) var(--space-lg);
    }

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

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

    .faq-item__answer {
      padding: 0 var(--space-lg);
    }

    .faq-item.active .faq-item__answer {
      padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .faq-content {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  .faq-cta {
    background-color: var(--color-bg-primary);
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .faq-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw + 0.5rem, var(--text-4xl));
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: var(--line-height-tight);
  }

  .faq-cta__text {
    font-family: var(--font-primary);
    font-size: clamp(var(--text-sm), 1vw + 0.3rem, var(--text-base));
    color: var(--color-text-secondary-light);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-normal);
  }

  .faq-cta__button {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: clamp(var(--text-sm), 1vw + 0.3rem, var(--text-base));
    font-weight: 600;
    transition: background-color var(--transition-base);
    cursor: pointer;
    border: none;
  }

  .faq-cta__button:hover {
    background-color: var(--color-primary-hover);
  }

  @media (min-width: 768px) {
    .faq-cta {
      padding: var(--space-2xl) var(--space-lg);
    }

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

    .faq-cta__text {
      margin-bottom: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .faq-cta {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

.services-page {
  width: 100%;
  background-color: var(--color-bg-secondary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 6rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: var(--space-lg);
}

.service-card-features li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

.service-card-features li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.service-card-features li:last-child {
  margin-bottom: 0;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 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(var(--text-2xl), 5vw, var(--text-4xl));
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem var(--space-xl);
  }
}

.services-image-1,
.services-image-2,
.services-image-3 {
  display: none;
}

.responsibility-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.responsibility-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.responsibility-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.responsibility-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.responsibility-docs .last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.responsibility-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.responsibility-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.responsibility-docs ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
  color: var(--color-text-dark);
}

.responsibility-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.responsibility-docs .section {
  margin-bottom: var(--space-2xl);
}

.responsibility-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.responsibility-docs .contact-section h2 {
  color: var(--color-text-dark);
  margin-top: 0;
}

.responsibility-docs .contact-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.responsibility-docs .contact-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .responsibility-docs .content {
    padding: var(--space-4xl) 0;
  }
  
  .responsibility-docs .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .responsibility-docs .container {
    padding: 0 var(--space-lg);
  }
  
  .responsibility-docs .content {
    padding: var(--space-4xl) 0;
  }
}

.thank-you-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.thank-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.thank-content .lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  line-height: var(--line-height-normal);
}

.thank-content .description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.thank-content .next-steps {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-icon {
    width: 100px;
    height: 100px;
  }

  .thank-icon svg {
    width: 60px;
    height: 60px;
  }

  .btn {
    padding: 1.125rem 3rem;
    font-size: var(--text-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 100vh;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-2xl);
  }

  .thank-icon svg {
    width: 72px;
    height: 72px;
  }

  .thank-content h1 {
    margin-bottom: var(--space-lg);
  }

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  justify-content: center;
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.error-code-display {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.error-icon {
  width: clamp(80px, 15vw, 140px);
  height: clamp(80px, 15vw, 140px);
  color: var(--color-primary);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.error-icon svg {
  width: 100%;
  height: 100%;
}

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

.error-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
  margin: 0;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-message {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
}

.error-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

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

.hint-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-muted-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-style: italic;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 640px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }

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

  .error-message {
    padding: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-2xl);
  }

  .error-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
  }

  .error-actions {
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-3xl);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-code-display {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

.contact-page-support {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-page-hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, rgba(16, 185, 129, 0.05) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-page-hero-content {
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
  letter-spacing: -0.02em;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-page-form-wrapper {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .contact-page-form-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  display: block;
}

.contact-page-required {
  color: var(--color-error);
  margin-left: 0.25rem;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-page-input::placeholder,
.contact-page-textarea::placeholder {
  color: var(--color-text-secondary-light);
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-page-input:hover:not(:focus),
.contact-page-textarea:hover:not(:focus) {
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-form-privacy {
  margin: 0.5rem 0;
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary-light);
  line-height: 1.5;
  margin: 0;
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-page-submit {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.contact-page-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.contact-page-submit:active {
  transform: translateY(0);
}

.contact-page-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-page-info-wrapper {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .contact-page-info-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }
}

.contact-page-info-header {
  margin-bottom: 2.5rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-page-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-page-info-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background-color: rgba(16, 185, 129, 0.05);
}

.contact-page-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin: 0.25rem 0;
  line-height: 1.5;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-page-info-hours {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary-light);
  margin: 0.5rem 0 0 0;
  font-style: italic;
}

.contact-page-info-box {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
}

.contact-page-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.contact-page-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .contact-page-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-page-form-wrapper,
  .contact-page-info-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-page-form {
    gap: 1.25rem;
  }

  .contact-page-submit {
    padding: 0.875rem 1.25rem;
    font-size: var(--text-sm);
  }
}

@media (min-width: 1440px) {
  .contact-page-hero {
    padding: 6rem 0;
  }

  .contact-page-main {
    padding: 5rem 0;
  }
}
.header-accountability-nexus-mobile-toggle[aria-expanded="true"]{
  display: none;
} 