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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

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

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

.hero-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-start;
}

.hero-section h1 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.hero-section p {
  color: var(--color-text-secondary);
  max-width: 500px;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-bg-tertiary);
}

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

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

.stat-label {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.features-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

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

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

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

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

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

.about-image {
  width: 100%;
  height: 400px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }
}

.programs-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.programs-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.programs-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

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

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

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.program-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

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

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

.program-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.program-benefit {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--color-text-secondary);
}

.program-benefit i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.program-price {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-bg-tertiary);
}

.program-price-value {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
}

.program-price-period {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.testimonials-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

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

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: var(--space-xs);
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.testimonial-quote {
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-name {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

.contact-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.contact-info p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-detail p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  padding: clamp(0.625rem, 1.5vw, 0.875rem);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  transition: all 0.3s ease;
}

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

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

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

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

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  align-items: center;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

.cta-section .btn-secondary {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
  background: transparent;
  color: #ffffff;
}

footer {
  background: var(--color-text-primary);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #ffffff;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
  }

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons a {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.decoration-dot {
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

.decoration-line {
  height: 3px;
  width: 60px;
  background: var(--color-primary);
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  a, button {
    transition: all 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.header-groei-nav {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.header-groei-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.header-groei-nav-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-groei-nav-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.header-groei-nav-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-groei-nav-nav-link:hover {
  color: var(--color-text-primary);
}

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

.header-groei-nav-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-groei-nav-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-groei-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  flex-shrink: 0;
}

.header-groei-nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.header-groei-nav-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding-top: 80px;
}

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

.header-groei-nav-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 100;
}

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

.header-groei-nav-mobile-close:hover {
  color: var(--color-primary);
}

.header-groei-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.header-groei-nav-mobile-link {
  display: block;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all 300ms ease;
}

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

.header-groei-nav-mobile-cta {
  display: block;
  margin: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

  .header-groei-nav-mobile-menu {
    display: none !important;
  }

  .header-groei-nav-desktop-nav {
    display: flex;
  }

  .header-groei-nav-cta-button {
    display: inline-block;
  }

  .header-groei-nav-container {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 767px) {
  .header-groei-nav-logo-text {
    font-size: 1.125rem;
  }

  .header-groei-nav-logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .header-groei-nav-logo-text {
    font-size: 1.5rem;
  }

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

  .header-groei-nav-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

    .growth-hub {
  width: 100%;
  margin: 0;
  padding: 0;
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

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

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

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

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

.btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-section {
  background: var(--color-bg-secondary);
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-deco-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 100px;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-orb-light {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(10, 184, 129, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-organic {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-detail {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: rgba(10, 184, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
}

.hero-title {
  color: #111827;
}

.hero-subtitle {
  color: #4b5563;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-bg-tertiary);
}

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

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

.stat-label {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
  }

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

.about-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.about-deco-shape-1 {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-glow {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: rgba(10, 184, 129, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-line {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-deco-float {
  position: absolute;
  bottom: 100px;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.about-deco-secondary {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50% 50% 45% 55% / 50% 50% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

.about-text {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-heading {
  color: #111827;
}

.about-description {
  color: #4b5563;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-feature-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-feature-item i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-text {
  color: #4b5563;
}

.about-image-wrapper {
  flex: 1 1 45%;
  position: relative;
  z-index: 10;
}

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

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: var(--space-2xl);
  }

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

  .about-image {
    max-height: 350px;
  }
}

.process-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.process-deco-mesh {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-blob-1 {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-blob-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(10, 184, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-accent-line {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

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

.process-title {
  color: #111827;
  margin-bottom: var(--space-md);
}

.process-subtitle {
  color: #4b5563;
}

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

.process-step {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

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

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

.process-step-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.process-step-text {
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
    align-items: center;
  }

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

.features-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.features-deco-field {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-orb-1 {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-orb-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.07);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-shape {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(10, 184, 129, 0.05);
  border-radius: 65% 35% 40% 60% / 35% 65% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.features-deco-panel {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 180px;
  height: 140px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.features-deco-accent {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.features-title {
  color: #111827;
}

.features-description {
  color: #4b5563;
}

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

.feature-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-title {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.feature-text {
  color: #4b5563;
  line-height: 1.7;
}

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

.featured-posts-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.posts-deco-glow-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-shape {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(10, 184, 129, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-line {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.posts-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.posts-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.posts-title {
  color: #111827;
}

.posts-subtitle {
  color: #4b5563;
}

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

.post-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}

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

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

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

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

.post-title {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.post-description {
  color: #4b5563;
  line-height: 1.7;
  flex: 1;
}

.post-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.posts-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

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

.testimonials-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-deco-accent-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-accent-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 184, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-shape {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-line {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.22), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonials-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.testimonials-title {
  color: #111827;
}

.testimonials-subtitle {
  color: #4b5563;
}

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

.testimonial-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: var(--space-xs);
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.testimonial-quote {
  color: #4b5563;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.author-name {
  color: #111827;
  font-weight: 600;
}

.author-role {
  color: #4b5563;
  font-size: 0.875rem;
}

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

.faq-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.faq-deco-blob {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.faq-deco-glow {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.faq-deco-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.faq-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.faq-title {
  color: #111827;
}

.faq-subtitle {
  color: #4b5563;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.faq-question {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.faq-answer {
  color: #4b5563;
  line-height: 1.7;
}

.contact-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-deco-mesh {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow-1 {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(10, 184, 129, 0.06);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-title {
  color: #111827;
}

.contact-intro {
  color: #4b5563;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  color: #111827;
  font-weight: 500;
  font-size: 0.9375rem;
}

.form-input,
.form-textarea {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  color: #111827;
  background: var(--color-bg-secondary);
  transition: all 0.3s ease;
}

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

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-submit {
  padding: clamp(0.875rem, 1.5vw, 1rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

.contact-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-privacy {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: var(--space-md);
}

.contact-link {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-info {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-title {
  color: #111827;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-info-label {
  color: #111827;
  font-weight: 600;
  margin: 0;
}

.contact-info-desc {
  color: #4b5563;
  font-size: 0.9375rem;
  margin: 0;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-cta-text {
  color: #111827;
  font-weight: 600;
  margin: 0;
}

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

  .contact-form-wrapper,
  .contact-info {
    flex: 1 1 100%;
  }
}

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

.cta-deco-glow {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-accent {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: #ffffff;
}

.cta-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons a {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 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 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-btn-accept {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

.cookie-btn-decline {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

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

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

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

@media (min-width: 768px) {
  section {
    padding-top: clamp(5rem, 12vw, 8rem);
    padding-bottom: clamp(5rem, 12vw, 8rem);
  }

  .hero-section {
    padding-top: clamp(6rem, 15vw, 10rem);
    padding-bottom: clamp(6rem, 15vw, 10rem);
  }
}

@media (min-width: 1024px) {
  section {
    padding-top: clamp(6rem, 15vw, 10rem);
    padding-bottom: clamp(6rem, 15vw, 10rem);
  }

  .hero-section {
    padding-top: clamp(8rem, 18vw, 12rem);
    padding-bottom: clamp(8rem, 18vw, 12rem);
  }
}

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

    :root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid #e5e7eb;
  padding: clamp(3rem, 6vw, 5rem) 0;
  font-family: var(--font-primary);
  width: 100%;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

.footer-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

.footer-about-title,
.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 450px;
}

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

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline-block;
  min-width: 70px;
}

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

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

  .footer-section {
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 200px;
  }

  .footer-section.footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

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

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

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 6vw, 4rem);
  }

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

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

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
    

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

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

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

.hero-title-personal-growth {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-personal-growth {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-personal-growth {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.hero-stats-personal-growth {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid #e5e7eb;
  width: 100%;
}

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

.stat-number-personal-growth {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #059669;
  font-weight: 700;
  line-height: 1;
}

.stat-label-personal-growth {
  color: #4b5563;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.posts-section-personal-growth {
  background: #f3f4f6;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.posts-header-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.posts-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

.posts-title-personal-growth {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-personal-growth {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

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

.card-personal-growth {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-personal-growth:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-personal-growth img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title-personal-growth {
  color: #111827;
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.card-description-personal-growth {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: clamp(0.75rem, 1.5vw, 1rem) 0;
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.card-meta-item-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.8125rem;
  font-weight: 500;
}

.card-meta-item-personal-growth i {
  color: #059669;
  font-size: 0.75rem;
}

.card-link-personal-growth {
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.card-link-personal-growth:hover {
  color: #047857;
  text-decoration: underline;
}

.methodology-section-personal-growth {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.methodology-header-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.methodology-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

.methodology-title-personal-growth {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methodology-subtitle-personal-growth {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.methodology-steps-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.methodology-step-personal-growth {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 0.3s ease;
}

.methodology-step-personal-growth:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.methodology-step-number-personal-growth {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methodology-step-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex-grow: 1;
}

.methodology-step-title-personal-growth {
  color: #111827;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
}

.methodology-step-text-personal-growth {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.insights-section-personal-growth {
  background: #f3f4f6;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 800px;
}

.featured-quote-personal-growth {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quote-text-personal-growth {
  color: #111827;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-personal-growth {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-style: normal;
  display: block;
}

.insights-title-personal-growth {
  color: #111827;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-list-personal-growth {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-item-personal-growth {
  color: #4b5563;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.8;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #059669;
}

.insights-item-personal-growth strong {
  color: #111827;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #059669;
  color: #ffffff;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

.btn-primary:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
}

.btn-secondary:hover {
  background: #059669;
  color: #ffffff;
}

.btn-secondary:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

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

@media (max-width: 768px) {
  .hero-cta-personal-growth {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-personal-growth a {
    width: 100%;
  }

  .hero-stats-personal-growth {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }

  .card-personal-growth {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-step-personal-growth {
    flex-direction: column;
    gap: 1rem;
  }

  .methodology-step-number-personal-growth {
    min-width: auto;
  }

  .posts-grid-personal-growth {
    flex-direction: column;
  }

  .insights-content-personal-growth {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-stats-personal-growth {
    grid-template-columns: repeat(3, 1fr);
  }

  .posts-grid-personal-growth {
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-personal-growth {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-section-personal-growth {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .methodology-section-personal-growth {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .insights-section-personal-growth {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

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

a {
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.hero-title-doelstelling-actieplannen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-doelstelling-actieplannen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-meta-doelstelling-actieplannen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-doelstelling-actieplannen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-doelstelling-actieplannen i {
  font-size: 0.875rem;
}

.hero-cta-doelstelling-actieplannen {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-doelstelling-actieplannen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-doelstelling-actieplannen:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.hero-image-block-doelstelling-actieplannen {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-doelstelling-actieplannen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

  .hero-text-block-doelstelling-actieplannen,
  .hero-image-block-doelstelling-actieplannen {
    flex: 1 1 100%;
  }

  .hero-cta-doelstelling-actieplannen {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-doelstelling-actieplannen {
    width: 100%;
  }
}

.inleiding-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.inleiding-wrapper-doelstelling-actieplannen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.inleiding-text-doelstelling-actieplannen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inleiding-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.inleiding-paragraph-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.inleiding-image-doelstelling-actieplannen {
  flex: 1 1 50%;
  min-width: 0;
}

.inleiding-img-doelstelling-actieplannen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .inleiding-wrapper-doelstelling-actieplannen {
    flex-direction: column;
  }

  .inleiding-text-doelstelling-actieplannen,
  .inleiding-image-doelstelling-actieplannen {
    flex: 1 1 100%;
  }
}

.smart-doelen-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.smart-header-doelstelling-actieplannen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.smart-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.smart-subtitle-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.smart-cards-doelstelling-actieplannen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.smart-card-doelstelling-actieplannen {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.smart-card-doelstelling-actieplannen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(5, 150, 105, 0.15);
  border-color: var(--color-primary);
}

.smart-card-icon-doelstelling-actieplannen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.smart-card-title-doelstelling-actieplannen {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.smart-card-text-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .smart-card-doelstelling-actieplannen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.quote-text-doelstelling-actieplannen {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-author-doelstelling-actieplannen {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

.actieplan-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.actieplan-wrapper-doelstelling-actieplannen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.actieplan-text-doelstelling-actieplannen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.actieplan-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.actieplan-paragraph-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.actieplan-image-doelstelling-actieplannen {
  flex: 1 1 50%;
  min-width: 0;
}

.actieplan-img-doelstelling-actieplannen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .actieplan-wrapper-doelstelling-actieplannen {
    flex-direction: column-reverse;
  }

  .actieplan-text-doelstelling-actieplannen,
  .actieplan-image-doelstelling-actieplannen {
    flex: 1 1 100%;
  }
}

.stappen-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.stappen-content-doelstelling-actieplannen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.stap-doelstelling-actieplannen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.stap-doelstelling-actieplannen:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.stap-nummer-doelstelling-actieplannen {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.stap-inhoud-doelstelling-actieplannen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.stap-titel-doelstelling-actieplannen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.stap-tekst-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .stap-doelstelling-actieplannen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stap-nummer-doelstelling-actieplannen {
    min-width: auto;
  }

  .stap-inhoud-doelstelling-actieplannen {
    gap: 0.5rem;
  }
}

.praktijk-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.praktijk-wrapper-doelstelling-actieplannen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.praktijk-image-doelstelling-actieplannen {
  flex: 1 1 45%;
  min-width: 0;
}

.praktijk-img-doelstelling-actieplannen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.praktijk-text-doelstelling-actieplannen {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.praktijk-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.praktijk-paragraph-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.praktijk-tips-doelstelling-actieplannen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.praktijk-tip-doelstelling-actieplannen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.tip-icon-doelstelling-actieplannen {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.praktijk-tip-doelstelling-actieplannen strong {
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.praktijk-tip-doelstelling-actieplannen {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .praktijk-wrapper-doelstelling-actieplannen {
    flex-direction: column;
  }

  .praktijk-image-doelstelling-actieplannen,
  .praktijk-text-doelstelling-actieplannen {
    flex: 1 1 100%;
  }
}

.conclusie-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusie-content-doelstelling-actieplannen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.conclusie-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.conclusie-text-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.conclusie-cta-doelstelling-actieplannen {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary-conclusie-doelstelling-actieplannen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-conclusie-doelstelling-actieplannen:hover {
  background: var(--color-bg-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-doelstelling-actieplannen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-text-muted);
  border-radius: var(--radius-md);
}

.disclaimer-title-doelstelling-actieplannen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.related-section-doelstelling-actieplannen {
  width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-doelstelling-actieplannen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-doelstelling-actieplannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-doelstelling-actieplannen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-doelstelling-actieplannen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-doelstelling-actieplannen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.related-card-image-doelstelling-actieplannen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-card-image-doelstelling-actieplannen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-doelstelling-actieplannen:hover .related-card-image-doelstelling-actieplannen img {
  transform: scale(1.05);
}

.related-card-content-doelstelling-actieplannen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
  position: relative;
}

.related-card-title-doelstelling-actieplannen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-doelstelling-actieplannen {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.related-card-arrow-doelstelling-actieplannen {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.related-card-doelstelling-actieplannen:hover .related-card-arrow-doelstelling-actieplannen {
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-doelstelling-actieplannen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .inleiding-section-doelstelling-actieplannen,
  .smart-doelen-section-doelstelling-actieplannen,
  .actieplan-section-doelstelling-actieplannen,
  .stappen-section-doelstelling-actieplannen,
  .praktijk-section-doelstelling-actieplannen,
  .conclusie-section-doelstelling-actieplannen,
  .related-section-doelstelling-actieplannen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-doelstelling-actieplannen {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .inleiding-section-doelstelling-actieplannen,
  .smart-doelen-section-doelstelling-actieplannen,
  .actieplan-section-doelstelling-actieplannen,
  .stappen-section-doelstelling-actieplannen,
  .praktijk-section-doelstelling-actieplannen,
  .conclusie-section-doelstelling-actieplannen,
  .related-section-doelstelling-actieplannen {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

.main-mindfulness-zelfbewustzijn {
  width: 100%;
  background: #f9fafb;
}

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

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

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

.hero-title-mindfulness-zelfbewustzijn {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-mindfulness-zelfbewustzijn {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  max-width: 500px;
}

.hero-meta-mindfulness-zelfbewustzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-mindfulness-zelfbewustzijn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-mindfulness-zelfbewustzijn i {
  font-size: 0.875rem;
}

.hero-stats-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

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

.stat-number-mindfulness-zelfbewustzijn {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-mindfulness-zelfbewustzijn {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #4b5563;
}

.hero-image-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-mindfulness-zelfbewustzijn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.introduction-section-mindfulness-zelfbewustzijn {
  background: #f9fafb;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.intro-text-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-description-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

.intro-image-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-mindfulness-zelfbewustzijn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.foundations-section-mindfulness-zelfbewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.foundations-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.foundations-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.practices-steps-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-step-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.practice-number-mindfulness-zelfbewustzijn {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

.practice-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.practice-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.deepening-section-mindfulness-zelfbewustzijn {
  background: #f9fafb;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.deepening-wrapper-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.deepening-text-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.deepening-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.deepening-description-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

.deepening-benefits-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.benefit-item-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-item-mindfulness-zelfbewustzijn i {
  color: #059669;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.deepening-image-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepening-img-mindfulness-zelfbewustzijn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.implementation-section-mindfulness-zelfbewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.implementation-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.implementation-header-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.implementation-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.implementation-subtitle-mindfulness-zelfbewustzijn {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.implementation-card-mindfulness-zelfbewustzijn {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implementation-card-mindfulness-zelfbewustzijn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.card-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.card-description-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.transformation-section-mindfulness-zelfbewustzijn {
  background: #f9fafb;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.transformation-wrapper-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.transformation-image-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.transformation-img-mindfulness-zelfbewustzijn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.transformation-text-mindfulness-zelfbewustzijn {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transformation-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.transformation-description-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

.transformation-quote-mindfulness-zelfbewustzijn {
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border-left: 4px solid #059669;
  background: #d1fae5;
  margin: 1rem 0;
  border-radius: 4px;
}

.quote-text-mindfulness-zelfbewustzijn {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #047857;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.quote-author-mindfulness-zelfbewustzijn {
  font-size: 0.875rem;
  color: #059669;
  font-style: normal;
  font-weight: 500;
}

.getting-started-section-mindfulness-zelfbewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.getting-started-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.getting-started-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.getting-started-steps-mindfulness-zelfbewustzijn {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.getting-started-step-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.step-number-mindfulness-zelfbewustzijn {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.step-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.step-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.getting-started-image-mindfulness-zelfbewustzijn {
  max-width: 500px;
  margin: 0 auto;
}

.getting-started-img-mindfulness-zelfbewustzijn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.conclusion-section-mindfulness-zelfbewustzijn {
  background: #f9fafb;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.conclusion-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

.conclusion-cta-mindfulness-zelfbewustzijn {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-button-mindfulness-zelfbewustzijn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-mindfulness-zelfbewustzijn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.related-section-mindfulness-zelfbewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.related-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-card-mindfulness-zelfbewustzijn {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-mindfulness-zelfbewustzijn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-image-mindfulness-zelfbewustzijn {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-link-mindfulness-zelfbewustzijn {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-link-mindfulness-zelfbewustzijn:hover {
  color: #047857;
  transform: translateX(4px);
}

.disclaimer-section-mindfulness-zelfbewustzijn {
  background: #f9fafb;
  padding: clamp(2.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-mindfulness-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #d1d5db;
  border-radius: 8px;
}

.disclaimer-title-mindfulness-zelfbewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.disclaimer-text-mindfulness-zelfbewustzijn {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-mindfulness-zelfbewustzijn,
  .introduction-content-mindfulness-zelfbewustzijn,
  .deepening-wrapper-mindfulness-zelfbewustzijn,
  .transformation-wrapper-mindfulness-zelfbewustzijn {
    flex-direction: column;
  }

  .hero-text-wrapper-mindfulness-zelfbewustzijn,
  .intro-text-mindfulness-zelfbewustzijn,
  .deepening-text-mindfulness-zelfbewustzijn,
  .transformation-text-mindfulness-zelfbewustzijn,
  .hero-image-mindfulness-zelfbewustzijn,
  .intro-image-mindfulness-zelfbewustzijn,
  .deepening-image-mindfulness-zelfbewustzijn,
  .transformation-image-mindfulness-zelfbewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-step-mindfulness-zelfbewustzijn {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-number-mindfulness-zelfbewustzijn {
    min-width: auto;
  }

  .hero-stats-mindfulness-zelfbewustzijn {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .getting-started-steps-mindfulness-zelfbewustzijn {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.hero-text-block-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-block-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.breadcrumbs-tijdbeheer-productiviteit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-tijdbeheer-productiviteit a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-tijdbeheer-productiviteit a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-tijdbeheer-productiviteit span {
  color: var(--color-text-secondary);
  margin: 0 0.25rem;
}

.hero-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-tijdbeheer-productiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-tijdbeheer-productiviteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-tijdbeheer-productiviteit i {
  font-size: 0.875rem;
}

.hero-image-tijdbeheer-productiviteit {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

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

  .hero-text-block-tijdbeheer-productiviteit,
  .hero-image-block-tijdbeheer-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.introduction-text-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.introduction-image-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.introduction-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-img-tijdbeheer-productiviteit {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-tijdbeheer-productiviteit {
    flex-direction: column;
  }

  .introduction-text-tijdbeheer-productiviteit,
  .introduction-image-tijdbeheer-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.fundamentals-header-tijdbeheer-productiviteit {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.fundamentals-text-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.fundamentals-image-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.fundamentals-subheading-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.fundamentals-paragraph-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fundamentals-image-img-tijdbeheer-productiviteit {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .fundamentals-content-tijdbeheer-productiviteit {
    flex-direction: column;
  }

  .fundamentals-text-tijdbeheer-productiviteit,
  .fundamentals-image-tijdbeheer-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.techniques-header-tijdbeheer-productiviteit {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.techniques-subtitle-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.techniques-steps-tijdbeheer-productiviteit {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.techniques-step-tijdbeheer-productiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.techniques-step-number-tijdbeheer-productiviteit {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 80px;
}

.techniques-step-content-tijdbeheer-productiviteit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.techniques-step-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.techniques-step-text-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

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

.productivity-text-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.productivity-image-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.productivity-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.productivity-paragraph-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.productivity-highlight-tijdbeheer-productiviteit {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.productivity-highlight-text-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.productivity-image-img-tijdbeheer-productiviteit {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .productivity-content-tijdbeheer-productiviteit {
    flex-direction: column;
  }

  .productivity-text-tijdbeheer-productiviteit,
  .productivity-image-tijdbeheer-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.habits-header-tijdbeheer-productiviteit {
  text-align: center;
  margin-bottom: 3rem;
}

.habits-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

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

.habits-image-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.habits-text-tijdbeheer-productiviteit {
  flex: 1 1 400px;
  max-width: 50%;
}

.habits-paragraph-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.habits-image-img-tijdbeheer-productiviteit {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .habits-content-tijdbeheer-productiviteit {
    flex-direction: column;
  }

  .habits-image-tijdbeheer-productiviteit,
  .habits-text-tijdbeheer-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.conclusion-text-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
}

.conclusion-quote-tijdbeheer-productiviteit {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  text-align: left;
}

.conclusion-quote-text-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  font-style: italic;
}

.disclaimer-section-tijdbeheer-productiviteit {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-tijdbeheer-productiviteit {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.disclaimer-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

.related-header-tijdbeheer-productiviteit {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

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

.related-card-tijdbeheer-productiviteit {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-image-tijdbeheer-productiviteit {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.related-card-title-tijdbeheer-productiviteit {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-tijdbeheer-productiviteit {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-tijdbeheer-productiviteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: gap 0.3s ease, color 0.3s ease;
  width: fit-content;
}

.related-card-link-tijdbeheer-productiviteit:hover {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

.related-card-link-tijdbeheer-productiviteit i {
  font-size: 0.875rem;
}

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

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

  .techniques-step-tijdbeheer-productiviteit {
    flex-direction: column;
    align-items: flex-start;
  }

  .techniques-step-number-tijdbeheer-productiviteit {
    min-width: auto;
  }
}

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

strong {
  font-weight: 600;
}

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

  .main-communicatie-relaties section {
    width: 100%;
    overflow: hidden;
  }

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

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

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

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

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

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

  .breadcrumbs-communicatie-relaties a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumbs-communicatie-relaties a:hover {
    color: var(--color-primary-hover);
  }

  .breadcrumbs-communicatie-relaties span {
    color: var(--color-text-secondary);
  }

  .hero-title-communicatie-relaties {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-description-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-meta-communicatie-relaties {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .meta-badge-communicatie-relaties {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
  }

  .meta-badge-communicatie-relaties i {
    font-size: 0.875rem;
  }

  .hero-stats-communicatie-relaties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--color-bg-tertiary);
  }

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

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

  .stat-label-communicatie-relaties {
    color: var(--color-text-secondary);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
  }

  .hero-image-communicatie-relaties {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .hero-image-communicatie-relaties {
    max-width: 100%;
    height: auto;
    display: block;
  }

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

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

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

  
  .intro-section-communicatie-relaties {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

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

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

  .intro-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
  }

  .intro-paragraph-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .intro-image-img-communicatie-relaties {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
  }

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

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

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

  .section-header-communicatie-relaties {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
  }

  .section-tag-communicatie-relaties {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .core-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    line-height: 1.2;
  }

  .section-subtitle-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

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

  .core-step-communicatie-relaties {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
  }

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

  .core-step-content-communicatie-relaties {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .core-step-title-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .core-step-text-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

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

    .core-step-number-communicatie-relaties {
      min-width: 50px;
    }
  }

  
  .techniques-section-communicatie-relaties {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .techniques-text-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .techniques-image-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .techniques-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
  }

  .techniques-intro-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.7;
  }

  .techniques-list-communicatie-relaties {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 1.75rem);
  }

  .technique-item-communicatie-relaties {
    padding: 0;
  }

  .technique-name-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
  }

  .technique-desc-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  .techniques-img-communicatie-relaties {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .techniques-wrapper-communicatie-relaties {
      flex-direction: column;
    }

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

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

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

  .relationships-image-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .relationships-text-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .relationships-subtitle-communicatie-relaties {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .relationships-paragraph-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .relationships-highlight-communicatie-relaties {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .highlight-text-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-primary);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
  }

  .relationships-img-communicatie-relaties {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .relationships-wrapper-communicatie-relaties {
      flex-direction: column-reverse;
    }

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

  
  .challenges-section-communicatie-relaties {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .challenges-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.2;
  }

  .challenges-grid-communicatie-relaties {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
  }

  .challenge-card-communicatie-relaties {
    flex: 1 1 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .challenge-icon-communicatie-relaties {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .challenge-card-title-communicatie-relaties {
    font-size: clamp(1.025rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .challenge-card-text-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .challenge-card-communicatie-relaties {
      flex: 1 1 100%;
      max-width: none;
    }
  }

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

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

  .practice-text-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practice-image-communicatie-relaties {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practice-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
  }

  .practice-intro-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.7;
  }

  .practice-exercises-communicatie-relaties {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 1.75rem);
  }

  .exercise-item-communicatie-relaties {
    padding: 0;
  }

  .exercise-title-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
  }

  .exercise-text-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  .practice-img-communicatie-relaties {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
  }

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

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

  
  .conclusion-section-communicatie-relaties {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .conclusion-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.2;
  }

  .conclusion-text-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
  }

  .conclusion-quote-communicatie-relaties {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    margin: clamp(1rem, 2vw, 2rem) 0;
  }

  .quote-text-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-primary);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
  }

  .conclusion-cta-communicatie-relaties {
    text-align: center;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .cta-button-communicatie-relaties {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    text-decoration: none;
    transition: all 0.3s ease;
  }

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

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

  .related-header-communicatie-relaties {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
  }

  .related-title-communicatie-relaties {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.2;
  }

  .related-subtitle-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
  }

  .related-grid-communicatie-relaties {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
  }

  .related-card-communicatie-relaties {
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .related-image-communicatie-relaties {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

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

  .related-card-content-communicatie-relaties {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
  }

  .related-card-title-communicatie-relaties {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .related-card-text-communicatie-relaties {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  .related-card-link-communicatie-relaties {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 1rem);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }

  .related-card-link-communicatie-relaties:hover {
    color: var(--color-primary-hover);
    transform: translateX(4px);
  }

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

  
  .disclaimer-section-communicatie-relaties {
    background: var(--color-bg-tertiary);
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .disclaimer-content-communicatie-relaties {
    max-width: 800px;
    margin: 0 auto;
  }

  .disclaimer-title-communicatie-relaties {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

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

  .disclaimer-text-communicatie-relaties:last-child {
    margin-bottom: 0;
  }

  
  @media (max-width: 1024px) {
    .section-header-communicatie-relaties {
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }

    .related-grid-communicatie-relaties {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .breadcrumbs-communicatie-relaties {
      font-size: 0.75rem;
    }

    .hero-stats-communicatie-relaties {
      grid-template-columns: 1fr;
    }

    .challenges-grid-communicatie-relaties {
      justify-content: stretch;
    }

    .challenge-card-communicatie-relaties {
      flex: 1 1 100%;
    }
  }

.main-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  background: #f9fafb;
}

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

.hero-content-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-text-block-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
}

.breadcrumbs-zelfvertrouwen-persoonlijke-kracht a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-zelfvertrouwen-persoonlijke-kracht a:hover {
  color: #047857;
  text-decoration: underline;
}

.hero-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 550px;
}

.hero-meta-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.meta-badge-zelfvertrouwen-persoonlijke-kracht {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-zelfvertrouwen-persoonlijke-kracht i {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-stats-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid #e5e7eb;
}

.stat-item-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-zelfvertrouwen-persoonlijke-kracht {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.intro-section-zelfvertrouwen-persoonlijke-kracht {
  background: #f9fafb;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.foundation-section-zelfvertrouwen-persoonlijke-kracht {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.foundation-header-zelfvertrouwen-persoonlijke-kracht {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.foundation-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.foundation-subtitle-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.pillar-card-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card-zelfvertrouwen-persoonlijke-kracht:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pillar-icon-zelfvertrouwen-persoonlijke-kracht {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 10px;
  color: #059669;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.pillar-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.pillar-text-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.strategies-section-zelfvertrouwen-persoonlijke-kracht {
  background: #f9fafb;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.strategies-text-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.strategy-steps-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-step-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #059669;
}

.step-number-zelfvertrouwen-persoonlijke-kracht {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  min-width: 50px;
  text-align: center;
}

.step-content-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.step-text-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.strategies-image-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mindset-section-zelfvertrouwen-persoonlijke-kracht {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.mindset-image-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-img-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mindset-text-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.featured-quote-zelfvertrouwen-persoonlijke-kracht {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 8px;
}

.quote-text-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.quote-author-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
}

.mindset-paragraph-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mindset-list-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  list-style: none;
}

.mindset-item-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.list-icon-zelfvertrouwen-persoonlijke-kracht {
  color: #059669;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.list-text-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
}

.tools-section-zelfvertrouwen-persoonlijke-kracht {
  background: #f9fafb;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-zelfvertrouwen-persoonlijke-kracht {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.tools-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.tools-subtitle-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-grid-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-zelfvertrouwen-persoonlijke-kracht:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-name-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.tool-description-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.tool-benefit-zelfvertrouwen-persoonlijke-kracht {
  color: #059669;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  font-weight: 500;
}

.action-section-zelfvertrouwen-persoonlijke-kracht {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.action-text-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.action-paragraph-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.action-image-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-img-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-section-zelfvertrouwen-persoonlijke-kracht {
  background: #f9fafb;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

.conclusion-text-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.disclaimer-section-zelfvertrouwen-persoonlijke-kracht {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-zelfvertrouwen-persoonlijke-kracht {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-zelfvertrouwen-persoonlijke-kracht {
  color: #92400e;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-text-zelfvertrouwen-persoonlijke-kracht {
  color: #78350f;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
}

.related-section-zelfvertrouwen-persoonlijke-kracht {
  background: #f9fafb;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.related-header-zelfvertrouwen-persoonlijke-kracht {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-grid-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-zelfvertrouwen-persoonlijke-kracht {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-zelfvertrouwen-persoonlijke-kracht:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.related-image-zelfvertrouwen-persoonlijke-kracht {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.related-image-zelfvertrouwen-persoonlijke-kracht img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-zelfvertrouwen-persoonlijke-kracht {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.related-card-title-zelfvertrouwen-persoonlijke-kracht {
  color: #111827;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-zelfvertrouwen-persoonlijke-kracht {
  color: #4b5563;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-zelfvertrouwen-persoonlijke-kracht,
  .intro-content-zelfvertrouwen-persoonlijke-kracht,
  .strategies-content-zelfvertrouwen-persoonlijke-kracht,
  .mindset-content-zelfvertrouwen-persoonlijke-kracht,
  .action-content-zelfvertrouwen-persoonlijke-kracht {
    flex-direction: column;
  }

  .hero-text-block-zelfvertrouwen-persoonlijke-kracht,
  .hero-image-block-zelfvertrouwen-persoonlijke-kracht,
  .intro-text-zelfvertrouwen-persoonlijke-kracht,
  .intro-image-zelfvertrouwen-persoonlijke-kracht,
  .strategies-text-zelfvertrouwen-persoonlijke-kracht,
  .strategies-image-zelfvertrouwen-persoonlijke-kracht,
  .mindset-image-zelfvertrouwen-persoonlijke-kracht,
  .mindset-text-zelfvertrouwen-persoonlijke-kracht,
  .action-text-zelfvertrouwen-persoonlijke-kracht,
  .action-image-zelfvertrouwen-persoonlijke-kracht {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-zelfvertrouwen-persoonlijke-kracht {
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .strategy-step-zelfvertrouwen-persoonlijke-kracht {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number-zelfvertrouwen-persoonlijke-kracht {
    min-width: auto;
    text-align: left;
  }

  .related-card-zelfvertrouwen-persoonlijke-kracht {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .pillars-grid-zelfvertrouwen-persoonlijke-kracht,
  .tools-grid-zelfvertrouwen-persoonlijke-kracht,
  .related-grid-zelfvertrouwen-persoonlijke-kracht {
    justify-content: space-between;
  }

  .pillar-card-zelfvertrouwen-persoonlijke-kracht,
  .tool-card-zelfvertrouwen-persoonlijke-kracht,
  .related-card-zelfvertrouwen-persoonlijke-kracht {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

.personal-growth-narrative-about {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

.hero-growth-section-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.hero-growth-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-growth-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}

.hero-growth-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 3rem;
}

.stat-item-about {
  flex: 1 1 150px;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-growth-image-about {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  display: block;
}

.foundation-section-about {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.foundation-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.foundation-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.foundation-block-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.block-title-about {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.block-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.methodology-section-about {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.methodology-section-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.methodology-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step-about:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.step-description-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.values-section-about {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.values-content-about {
  display: flex;
  flex-direction: column;
}

.values-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.values-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-intro-about {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.value-card-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 3px solid var(--color-primary);
}

.value-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: block;
}

.value-card-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.value-card-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.vision-quote-section-about::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.vision-quote-content-about {
  position: relative;
  z-index: 1;
  text-align: center;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-secondary);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-attribution-about {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.disclaimer-section-about {
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-growth-stats-about {
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 120px;
  }

  .foundation-blocks-about {
    flex-direction: column;
  }

  .foundation-block-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-step-about {
    flex-direction: column;
  }

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

  .values-cards-about {
    flex-direction: column;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-about {
    padding: 1.5rem;
  }

  .quote-text-about {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-growth-section-about {
    padding: 5rem 0;
  }

  .foundation-section-about {
    padding: 5rem 0;
  }

  .methodology-section-about {
    padding: 5rem 0;
  }

  .values-section-about {
    padding: 5rem 0;
  }

  .vision-quote-section-about {
    padding: 5rem 0;
  }

  .disclaimer-section-about {
    padding: 3.5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-growth-section-about {
    padding: 6rem 0;
  }

  .foundation-section-about {
    padding: 6rem 0;
  }

  .methodology-section-about {
    padding: 6rem 0;
  }

  .values-section-about {
    padding: 6rem 0;
  }

  .vision-quote-section-about {
    padding: 6rem 0;
  }

  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

.growth-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.growth-portal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.privacy-hero-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.privacy-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.privacy-content-section {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.privacy-section-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.privacy-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.privacy-section-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.privacy-section-list-item::before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
}

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

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
}

.privacy-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

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

.privacy-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }

  .privacy-content-section {
    padding: 4rem 0;
  }

  .privacy-contact-section {
    padding: 5rem 0;
  }

  .privacy-section-list {
    margin-left: 2rem;
  }
}

@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }

  .privacy-content-section {
    padding: 5rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }
}

  .thank-you-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .thank-section {
    width: 100%;
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  
  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 600px;
    margin: 0 auto;
  }

  
  .thank-icon {
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: 50%;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--color-primary);
  }

  
  .thank-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    color: var(--color-text-primary);
    line-height: 1.15;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }

  
  .thank-lead {
    font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  
  .thank-description {
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .thank-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
  }

  .detail-item i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
  }

  .detail-item p {
    font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
    line-height: 1.5;
  }

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

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

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

  
  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 8vw, 6rem) 0;
    }

    .thank-details {
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2rem);
    }

    .detail-item {
      padding: clamp(1.5rem, 3vw, 2rem);
    }
  }

  
  @media (min-width: 1024px) {
    .thank-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .thank-content {
      gap: clamp(2rem, 4vw, 3rem);
    }

    .detail-item {
      padding: clamp(2rem, 3vw, 2.5rem);
    }

    .btn {
      font-size: 1.0625rem;
      padding: 1rem 2.5rem;
    }

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

  
  @media (min-width: 1440px) {
    .thank-content {
      gap: 3rem;
    }

    .thank-details {
      gap: 2rem;
    }
  }

  
  .thank-content p,
  .detail-item p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: var(--font-primary);
}

.error-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  background: var(--color-bg-primary);
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

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

.error-visual {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
}

.error-decoration {
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-secondary);
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

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

.error-message {
  max-width: 600px;
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.2;
  font-weight: 700;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem) 0;
  line-height: 1.6;
  font-weight: 500;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(2rem, 4vw, 2.5rem) 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description strong {
  color: var(--color-primary);
  font-weight: 600;
}

.error-suggestions {
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  box-shadow: var(--shadow-sm);
}

.suggestions-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.suggestions-list li {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.suggestions-list i {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.btn-large {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code {
    text-shadow: 0 6px 30px rgba(5, 150, 105, 0.2);
  }

  .error-decoration {
    top: -30px;
    right: -40px;
  }

  .error-suggestions {
    padding: 2.5rem;
  }

  .suggestions-list {
    gap: 1.25rem;
  }

  .btn-large:hover {
    box-shadow: var(--shadow-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 3.5rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-suggestions {
    padding: 3rem;
  }

  .error-description {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1440px) {
  .error-content {
    gap: 4rem;
  }

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media print {
  .error-section {
    min-height: auto;
  }

  .error-decoration {
    display: none;
  }

  .btn {
    display: none;
  }
}