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

:root {
  
  --color-primary: #1E88E5;       
  --color-primary-dark: #1565C0;  
  --color-secondary: #FF8F00;     
  --color-accent: #00BFA5;        
  --color-neutral: #546E7A;       
  --color-background: #F5F7FA;    
  --color-white: #FFFFFF;         
  --color-text: #263238;          
  --color-text-light: #607D8B;    
  
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  
  --fs-h1: clamp(2.5rem, 5vw, 3.5rem);
  --fs-h2: clamp(2rem, 4vw, 2.75rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h4: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h5: clamp(1.125rem, 1.5vw, 1.5rem);
  --fs-h6: clamp(1rem, 1.25vw, 1.25rem);
  --fs-body: clamp(1rem, 1vw, 1.125rem);
  --fs-small: clamp(0.875rem, 0.9vw, 1rem);
  --fs-tiny: clamp(0.75rem, 0.8vw, 0.875rem);
  
  
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  
  --section-space-mobile: 3rem;
  --section-space-tablet: 5rem;
  --section-space-desktop: 7rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-focus: 0 0 0 3px rgba(30, 136, 229, 0.3);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-background);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

h5 {
  font-size: var(--fs-h5);
  font-weight: 600;
}

h6 {
  font-size: var(--fs-h6);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

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

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

strong {
  font-weight: 600;
}

small {
  font-size: var(--fs-small);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  gap: var(--space-xs);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #E65100;
  text-decoration: none;
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: #00897B;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--fs-h6);
}

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

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

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

.icon-xs {
  font-size: var(--icon-xs);
}

.icon-sm {
  font-size: var(--icon-sm);
}

.icon-md {
  font-size: var(--icon-md);
}

.icon-lg {
  font-size: var(--icon-lg);
}

.icon-xl {
  font-size: var(--icon-xl);
}

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

@media (min-width: 768px) {
  .section {
    padding: var(--section-space-tablet) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--section-space-desktop) 0;
  }
}
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  border-bottom: 3px solid var(--color-primary);
  position: relative;
}

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

.header__logo {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--space-xxs);
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.logo__icon {
  font-size: var(--icon-sm);
  color: var(--color-secondary);
  background-color: var(--color-primary);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.logo__text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h5);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.header__nav {
  display: none;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-xxs) var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.nav__link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav__link:hover::after {
  width: 70%;
}

.nav__item--cta .btn {
  padding: 0.5rem 1rem;
  margin-left: var(--space-xs);
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-toggle__bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  padding: var(--space-lg);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.mobile-menu__close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.mobile-menu__close:hover {
  background-color: var(--color-background);
}

.mobile-menu__close-icon {
  font-size: var(--fs-h4);
  color: var(--color-text);
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

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

.mobile-menu__link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-h5);
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: var(--space-sm) 0;
  transition: all var(--transition-normal);
  position: relative;
}

.mobile-menu__link:hover {
  color: var(--color-primary);
  padding-left: var(--space-xs);
  text-decoration: none;
}

.mobile-menu__link--cta {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  margin-top: var(--space-md);
}

.mobile-menu__link--cta:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-left: var(--space-md);
}

.mobile-menu__footer {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu__footer-link {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.mobile-menu__footer-link:hover {
  color: var(--color-primary);
}

.header__progress-bar {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.progress-bar__indicator {
  height: 100%;
  width: 0;
  background-color: var(--color-secondary);
  transition: width var(--transition-normal);
}

.header.mobile-menu-active .header__mobile-menu {
  transform: translateX(0);
}

.header.mobile-menu-active .mobile-toggle__bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.header.mobile-menu-active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

.header.mobile-menu-active .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
  
  .header__mobile-toggle {
    display: none;
  }
  
  .header__wrapper {
    padding: var(--space-xs) 0;
  }
}

@media (min-width: 1024px) {
  .nav__list {
    gap: var(--space-lg);
  }
  
  .logo__text {
    font-size: var(--fs-h4);
  }
  
  .logo__icon {
    width: 35px;
    height: 35px;
    font-size: var(--icon-md);
  }
}

.main {
  overflow-x: hidden;
}

.main .hero {
  position: relative;
  padding: calc(var(--section-space-mobile) * 1.2) 0;
  background-color: var(--color-background);
  overflow: hidden;
}

.main .hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  z-index: 2;
}

.main .hero-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.main .hero-text h1 {
  margin-bottom: var(--space-md);
  color: var(--color-text);
  font-weight: 700;
}

.main .hero-text p {
  font-size: var(--fs-h6);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

.main .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

.main .productivity-chart {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.main .chart-element {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .chart-element:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.main .chart-element-1 {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.main .chart-element-2 {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.main .chart-element-3 {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.main .chart-number {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.main .chart-label {
  font-size: var(--fs-small);
  font-weight: 500;
}

.main .productivity-image {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.main .chart-connector {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(30, 136, 229, 0.1) 0%, rgba(30, 136, 229, 0) 70%);
  z-index: 0;
}

.main .hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, var(--color-primary-dark) 0%, rgba(30, 136, 229, 0) 70%);
  top: -100px;
  right: -100px;
  opacity: 0.1;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, var(--color-secondary) 0%, rgba(255, 143, 0, 0) 70%);
  bottom: -50px;
  left: -50px;
  opacity: 0.1;
}

.main .featured-posts {
  padding: var(--section-space-mobile) 0;
  background-color: var(--color-white);
}

.main .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.main .section-header h2 {
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.main .section-description {
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: var(--fs-body);
}

.main .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.main .post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.main .post-card-image {
  height: 200px;
  overflow: hidden;
}

.main .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.main .post-card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.main .post-card-content h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-heading);
}

.main .post-card-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.main .post-card-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

.main .section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.main .methodology {
  padding: var(--section-space-mobile) 0;
  background-color: var(--color-background);
  position: relative;
}

.main .methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.main .methodology-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

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

.main .methodology-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  margin-bottom: var(--space-md);
  font-size: var(--icon-md);
}

.main .methodology-card:nth-child(2) .methodology-icon {
  background-color: var(--color-secondary);
}

.main .methodology-card:nth-child(3) .methodology-icon {
  background-color: var(--color-accent);
}

.main .methodology-card:nth-child(4) .methodology-icon {
  background-color: var(--color-neutral);
}

.main .methodology-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.main .methodology-card p {
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.main .methodology-number {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 100px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  font-family: var(--font-primary);
}

.main .methodology-image-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main .methodology-image {
  width: 100%;
  height: auto;
  display: block;
}

.main .stats {
  padding: var(--section-space-mobile) 0;
  position: relative;
  overflow: hidden;
}

.main .stats-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F5F7FA'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.main .stats-content {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.main .stats-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.main .stats-header h2 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.main .stats-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.main .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.main .stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.main .stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.main .stat-number {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.main .stat-label {
  font-size: var(--fs-h6);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.main .stat-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
}

.main .stats-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  transform: rotate(180deg);
}

.main .testimonials {
  padding: var(--section-space-mobile) 0;
  background-color: var(--color-white);
}

.main .testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.main .testimonial-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .testimonial-quote {
  padding: var(--space-lg);
  position: relative;
}

.main .testimonial-quote .fa-quote-left {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-size: var(--fs-h4);
  color: var(--color-primary);
  opacity: 0.2;
}

.main .testimonial-quote .fa-quote-right {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  font-size: var(--fs-h4);
  color: var(--color-primary);
  opacity: 0.2;
}

.main .testimonial-quote p {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-lg);
  font-style: italic;
  color: var(--color-text);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.main .testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-md);
  border: 3px solid var(--color-primary);
}

.main .testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .testimonial-author-info h4 {
  margin-bottom: var(--space-xxs);
  font-size: var(--fs-body);
}

.main .testimonial-author-info p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  margin-bottom: 0;
}

.main .contact {
  padding: var(--section-space-mobile) 0;
  background-color: var(--color-background);
  position: relative;
}

.main .contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main .contact-content {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main .contact-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.main .contact-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
}

.main .contact-info {
  margin-top: var(--space-lg);
}

.main .contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.main .contact-info-item i {
  font-size: var(--icon-sm);
  margin-right: var(--space-sm);
  color: var(--color-secondary);
}

.main .contact-info-item p {
  margin-bottom: 0;
  font-size: var(--fs-small);
}

.main .contact-form-container {
  padding: var(--space-xl);
}

.main .contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
}

.main .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.main .form-checkbox input {
  width: auto;
  margin-top: 5px;
}

.main .form-checkbox label {
  margin-bottom: 0;
  font-size: var(--fs-small);
}

.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  z-index: 1000;
  display: none;
}

.main .cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease-out forwards;
}

.main .cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.main .cookie-content p {
  margin-bottom: 0;
  font-size: var(--fs-small);
}

.main .cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }
  
  .main .hero-text {
    margin: 0;
    text-align: left;
  }
  
  .main .hero-cta {
    justify-content: flex-start;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .methodology-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .contact-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .main .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .form-group:nth-last-child(2),
  .main .form-group:last-child {
    grid-column: span 2;
  }
}

.footer {
  background-color: var(--color-white);
  padding: var(--space-xl) 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.footer__brand {
  max-width: 450px;
}

.footer__title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

.footer__description {
  color: var(--color-text-light);
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.footer__productivity-meter {
  background-color: var(--color-background);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  transition: transform var(--transition-normal);
}

.footer__productivity-meter:hover {
  transform: translateY(-4px);
}

.footer__meter-label {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
}

.footer__meter {
  height: 8px;
  background-color: rgba(84, 110, 122, 0.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.footer__meter-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-pill);
  animation: pulse 3s infinite;
}

.footer__tip {
  font-size: var(--fs-small);
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 0;
}

.footer__nav-title,
.footer__resources-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h6);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer__nav-title::after,
.footer__resources-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-sm);
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: var(--space-xs);
}

.footer__nav-link {
  color: var(--color-text-light);
  font-size: var(--fs-body);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--space-sm);
}

.footer__nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.footer__nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.footer__tool {
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.footer__tool:hover {
  background-color: rgba(30, 136, 229, 0.1);
  transform: translateY(-3px);
}

.footer__tool-icon {
  background-color: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.footer__tool-name {
  font-size: var(--fs-small);
  color: var(--color-text);
  font-weight: 500;
}

.footer__divider {
  height: 1px;
  background-color: rgba(84, 110, 122, 0.2);
  margin: var(--space-lg) 0;
}

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

.footer__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__legal-link {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer__copyright {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

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

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-xxl);
  }
  
  .footer__tools {
    grid-template-columns: repeat(2, 1fr);
  }
}

.privacy-page {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-secondary);
  padding: var(--space-lg) 0;
}

.privacy-page__container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.privacy-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-sm);
}

.privacy-page__updated {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-small);
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
}

.privacy-page__heading {
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-text-light);
}

.privacy-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

.privacy-page__contact {
  background-color: var(--color-background);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-md);
}

.privacy-page p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.privacy-page strong {
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .privacy-page__container {
    padding: var(--space-lg) var(--space-md);
  }
  
  .privacy-page__title {
    font-size: var(--fs-h2);
  }
  
  .privacy-page__heading {
    font-size: var(--fs-h4);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-lg) 0;
  color: var(--color-text);
}

.terms-page .container {
  max-width: 900px;
}

.terms-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-text-light);
  padding-bottom: var(--space-md);
}

.terms-page__header h1 {
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.terms-page__updated {
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.terms-page__content {
  margin-bottom: var(--space-xl);
}

.terms-page__section {
  margin-bottom: var(--space-xl);
}

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-md);
}

.terms-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.terms-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-body);
}

.terms-page__navigation {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.terms-page__navigation h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.terms-page__nav-list {
  list-style-type: none;
}

.terms-page__nav-list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-fast);
}

.terms-page__nav-list li:hover {
  border-left-color: var(--color-primary);
}

.terms-page__nav-list a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.terms-page__nav-list a:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .terms-page__navigation {
    position: sticky;
    top: var(--space-xl);
  }
  
  .terms-page .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: 
      "header header"
      "content navigation";
    gap: var(--space-lg);
  }
  
  .terms-page__header {
    grid-area: header;
  }
  
  .terms-page__content {
    grid-area: content;
  }
  
  .terms-page__navigation {
    grid-area: navigation;
  }
}

@media (max-width: 767px) {
  .terms-page__navigation {
    order: -1;
    margin-bottom: var(--space-lg);
  }
}

.cookie-page {
  background-color: var(--color-background);
  font-family: var(--font-secondary);
  color: var(--color-text);
  padding: var(--space-lg) 0;
}

.cookie-page__header {
  margin-bottom: var(--space-xl);
}

.cookie-page__header h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--lh-heading);
}

.cookie-page__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
}

.cookie-page__section h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.cookie-page__section p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.cookie-page__list {
  list-style-type: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookie-page__list li {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.cookie-page__list li strong {
  font-weight: 600;
  color: var(--color-neutral);
}

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-background);
}

.cookie-page__footer p {
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .cookie-page__content {
    padding: var(--space-lg);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .cookie-page__content {
    padding: var(--space-md);
  }
  
  .cookie-page__section h2 {
    font-size: var(--fs-h4);
  }
}

.thank-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
}

.thank-page__container {
  width: 100%;
  max-width: 700px;
}

.thank-page__content {
  padding: var(--space-xl);
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-page__content:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.thank-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.thank-page__icon svg {
  width: var(--icon-xl);
  height: var(--icon-xl);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: 700;
}

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

.thank-page__message p {
  color: var(--color-text);
  font-family: var(--font-secondary);
  margin-left: auto;
  margin-right: auto;
  line-height: var(--lh-body);
}

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

.thank-page__action .btn {
  padding: var(--space-sm) var(--space-xl);
  font-weight: 600;
}

@media (max-width: 768px) {
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
}

.category-page {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-secondary);
}

.category-page__hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.category-page__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.category-page__description {
  font-size: var(--fs-h5);
  max-width: 800px;
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
  color: var(--color-white);
}

.category-page__section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  position: relative;
  padding-bottom: var(--space-xs);
}

.category-page__section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

.category-page__posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.post-card:focus-within {
  box-shadow: var(--shadow-focus);
  outline: none;
}

.post-card__image-wrapper {
  height: 200px;
  overflow: hidden;
}

.post-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-card:hover .post-card__image-wrapper img {
  transform: scale(1.05);
}

.post-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.post-card:hover .post-card__title {
  color: var(--color-primary);
}

.post-card__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-card__link {
  align-self: flex-start;
  margin-top: auto;
}

.category-page__tips-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.category-page__tip-card {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-normal);
}

.category-page__tip-icon {
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.category-page__tip-title {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.category-page__tip-text {
  color: var(--color-text-light);
}

.category-page__stats-content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.category-page__stats-intro {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.category-page__stats-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.category-page__stats-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: baseline;
}

.category-page__stats-item strong {
  color: var(--color-primary);
  margin-right: var(--space-xs);
  font-size: var(--fs-h5);
}

.category-page__stats-conclusion {
  font-style: italic;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__tips-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-page__hero {
    padding: var(--space-xxl) 0;
  }
  
  .category-page__description {
    font-size: var(--fs-h5);
    max-width: 800px;
  }
}

.post-timeboxing-nederlandse-aanpak {
  color: var(--color-text);
  font-family: var(--font-secondary);
  line-height: var(--lh-body);
}

.post-timeboxing-nederlandse-aanpak .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-timeboxing-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-timeboxing-nederlandse-aanpak .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-timeboxing-nederlandse-aanpak .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.post-timeboxing-nederlandse-aanpak .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  font-weight: 700;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-timeboxing-nederlandse-aanpak .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.post-timeboxing-nederlandse-aanpak .content-section {
  padding: var(--section-space-mobile) 0;
}

.post-timeboxing-nederlandse-aanpak .content-section-light {
  background-color: var(--color-white);
}

.post-timeboxing-nederlandse-aanpak .content-section-dark {
  background-color: var(--color-background);
}

.post-timeboxing-nederlandse-aanpak .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.post-timeboxing-nederlandse-aanpak .content-section h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.post-timeboxing-nederlandse-aanpak .content-section h4 {
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.post-timeboxing-nederlandse-aanpak .content-section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.post-timeboxing-nederlandse-aanpak .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-timeboxing-nederlandse-aanpak .content-text {
  order: 1;
}

.post-timeboxing-nederlandse-aanpak .content-image {
  order: 2;
  text-align: center;
}

.post-timeboxing-nederlandse-aanpak .section-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-timeboxing-nederlandse-aanpak .content-image-center {
  margin: var(--space-xl) 0;
  text-align: center;
}

.post-timeboxing-nederlandse-aanpak .section-image-large {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-timeboxing-nederlandse-aanpak .timeboxing-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-timeboxing-nederlandse-aanpak .step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-timeboxing-nederlandse-aanpak .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-timeboxing-nederlandse-aanpak .step-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-timeboxing-nederlandse-aanpak .implementation-tips {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.post-timeboxing-nederlandse-aanpak .implementation-tips h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-timeboxing-nederlandse-aanpak .implementation-tips ul {
  list-style-type: none;
  padding-left: 0;
}

.post-timeboxing-nederlandse-aanpak .implementation-tips li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

.post-timeboxing-nederlandse-aanpak .implementation-tips li:before {
  content: "";
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.post-timeboxing-nederlandse-aanpak .tools-section {
  margin: var(--space-xl) 0;
}

.post-timeboxing-nederlandse-aanpak .tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.post-timeboxing-nederlandse-aanpak .tool-card {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.post-timeboxing-nederlandse-aanpak .tool-card:hover {
  transform: translateY(-4px);
}

.post-timeboxing-nederlandse-aanpak .tool-card h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.post-timeboxing-nederlandse-aanpak .case-study {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.post-timeboxing-nederlandse-aanpak .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.post-timeboxing-nederlandse-aanpak .conclusion h3 {
  color: var(--color-accent);
}

.post-timeboxing-nederlandse-aanpak .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-space-mobile) 0;
}

.post-timeboxing-nederlandse-aanpak .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--fs-h2);
}

.post-timeboxing-nederlandse-aanpak .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-timeboxing-nederlandse-aanpak .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-timeboxing-nederlandse-aanpak .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-timeboxing-nederlandse-aanpak .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-timeboxing-nederlandse-aanpak .related-post-card h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-timeboxing-nederlandse-aanpak .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-timeboxing-nederlandse-aanpak .related-post-card p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .post-timeboxing-nederlandse-aanpak .content-section {
    padding: var(--section-space-tablet) 0;
  }
  
  .post-timeboxing-nederlandse-aanpak .content-grid {
    grid-template-columns: 3fr 2fr;
  }
  
  .post-timeboxing-nederlandse-aanpak .content-text {
    order: 1;
  }
  
  .post-timeboxing-nederlandse-aanpak .content-image {
    order: 2;
  }
  
  .post-timeboxing-nederlandse-aanpak .timeboxing-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-timeboxing-nederlandse-aanpak .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-timeboxing-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-timeboxing-nederlandse-aanpak .content-section {
    padding: var(--section-space-desktop) 0;
  }
  
  .post-timeboxing-nederlandse-aanpak .post-hero {
    padding: calc(var(--space-xxl) * 1.5) 0;
  }
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .post-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.9) 0%, rgba(21, 101, 192, 0.85) 100%);
  z-index: 1;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .post-hero .container {
  position: relative;
  z-index: 2;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .post-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .post-hero .lead {
  font-size: var(--fs-h5);
  font-weight: 400;
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin-bottom: 0;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-section {
  padding: var(--section-space-mobile) 0;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-section-light {
  background-color: var(--color-white);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-section-dark {
  background-color: var(--color-background);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-section-accent {
  background-color: var(--color-white);
  border-top: 5px solid var(--color-accent);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .techniques-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h4);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-list {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-list li {
  margin-bottom: var(--space-xs);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .technique-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-card {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-card ul {
  padding-left: var(--space-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-card li {
  margin-bottom: var(--space-xs);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: rgba(0, 191, 165, 0.05);
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--color-accent);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .conclusion h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-posts-section {
  padding: var(--section-space-mobile) 0;
  background-color: var(--color-background);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card h3 a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-top-digitale-productiviteitstools-nederlandse-professionals .related-post-card .btn {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .post-top-digitale-productiviteitstools-nederlandse-professionals .content-grid {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .content-section {
    padding: var(--section-space-tablet) 0;
  }
}

@media (min-width: 1024px) {
  .post-top-digitale-productiviteitstools-nederlandse-professionals .techniques-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .strategy-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-top-digitale-productiviteitstools-nederlandse-professionals .content-section {
    padding: var(--section-space-desktop) 0;
  }
}

.post-page {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: var(--color-background);
}

.post-page .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-page .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-page .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-page .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.post-page .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.post-page .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.post-page .content-section {
  padding: var(--space-xxl) 0;
}

.post-page .section-light {
  background-color: var(--color-white);
}

.post-page .section-dark {
  background-color: var(--color-background);
}

.post-page .content-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-page .content-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

.post-page .content-flex {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.post-page .content-text {
  flex: 1;
}

.post-page .content-image {
  flex: 1;
}

.post-page .content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-page .key-benefits {
  background-color: rgba(30, 136, 229, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.post-page .key-benefits h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-page .key-benefits ul {
  margin-left: var(--space-md);
}

.post-page .key-benefits li {
  margin-bottom: var(--space-xs);
}

.post-page .methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.post-page .method-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .method-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h4);
}

.post-page .method-tip {
  background-color: rgba(255, 143, 0, 0.1);
  border-left: 3px solid var(--color-secondary);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  font-size: var(--fs-small);
}

.post-page .case-study {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
}

.post-page .case-study h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.post-page .section-image {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.post-page .implementation-steps {
  margin-bottom: var(--space-xl);
}

.post-page .step {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.post-page .step-number {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.post-page .step-content {
  flex: 1;
}

.post-page .step-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.post-page .conclusion {
  background-color: rgba(0, 191, 165, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-xl);
}

.post-page .conclusion h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.post-page .conclusion .btn {
  margin-top: var(--space-md);
}

.post-page .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-xxl) 0;
}

.post-page .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-page .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-page .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-page .related-post-card h3 {
  font-size: var(--fs-h5);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  color: var(--color-text);
}

.post-page .related-post-card p {
  padding: 0 var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-page .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
  .post-page .content-flex {
    flex-direction: row;
  }
  
  .post-page .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-page .methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .content-section .container {
    max-width: 1200px;
  }
}

  
  .post-digitale-productiviteitstools-nederlandse-professionals {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-secondary);
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: var(--fs-small);
    color: var(--color-text-light);
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .breadcrumbs a:hover {
    text-decoration: underline;
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .post-hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    text-align: center;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .post-hero h1 {
    color: var(--color-white);
    font-size: var(--fs-h1);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .post-hero .lead {
    font-size: var(--fs-h5);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .hero-cta {
    margin-top: var(--space-lg);
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tools-section {
    background-color: var(--color-white);
    padding: var(--section-space-mobile) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tool-card {
    background-color: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tool-card h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tools-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .communication-section {
    background-color: var(--color-background);
    padding: var(--section-space-mobile) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tools-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tool-card.highlight {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-secondary);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .best-practices {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-sm);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .best-practices h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .best-practices ul {
    padding-left: var(--space-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .best-practices li {
    margin-bottom: var(--space-sm);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .communication-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .automation-section {
    background-color: var(--color-white);
    padding: var(--section-space-mobile) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .efficiency-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .tool-card.efficiency {
    background-color: var(--color-background);
    border-top: 4px solid var(--color-accent);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .implementation-tips {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: var(--shadow-sm);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .implementation-tips h3 {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .implementation-tips ol {
    padding-left: var(--space-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .implementation-tips li {
    margin-bottom: var(--space-sm);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .conclusion {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .conclusion h3 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .conclusion p {
    color: var(--color-white);
  }
  
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-section {
    background-color: var(--color-background);
    padding: var(--section-space-mobile) 0;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-content {
    padding: var(--space-lg);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-content h3 {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-sm);
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-content a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-digitale-productiviteitstools-nederlandse-professionals .related-post-content p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
  }
  
  
  @media (min-width: 768px) {
    .post-digitale-productiviteitstools-nederlandse-professionals .tools-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .communication-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .automation-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-section {
      padding: var(--section-space-tablet) 0;
    }
    
    .post-digitale-productiviteitstools-nederlandse-professionals .tools-grid {
      grid-template-columns: 3fr 2fr;
      align-items: center;
    }
    
    .post-digitale-productiviteitstools-nederlandse-professionals .tools-columns {
      grid-template-columns: 1fr 1fr;
    }
    
    .post-digitale-productiviteitstools-nederlandse-professionals .efficiency-tools {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .post-digitale-productiviteitstools-nederlandse-professionals .tools-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .communication-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .automation-section,
    .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-section {
      padding: var(--section-space-desktop) 0;
    }
    
    .post-digitale-productiviteitstools-nederlandse-professionals .related-posts-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

.post-werk-prive-balans-nederlandse-bedrijfscultuur {
  font-family: var(--font-secondary);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  background-color: var(--color-background);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .content-section {
  padding: var(--section-space-mobile) 0;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .section-light {
  background-color: var(--color-white);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .section-accent {
  background-color: var(--color-background);
  position: relative;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .text-column h2 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .section-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h4);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-list {
  list-style-type: none;
  padding-left: var(--space-md);
  margin-top: var(--space-sm);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-list li {
  position: relative;
  margin-bottom: var(--space-xs);
  padding-left: var(--space-sm);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .strategy-list li::before {
  content: "";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .image-wrapper {
  margin-top: var(--space-lg);
  text-align: center;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .wide-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .impact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .impact-text {
  margin-bottom: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .benefits-box {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .benefits-box h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .benefits-list li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-sm);
  position: relative;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .benefits-list li::before {
  content: "";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .conclusion-box {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .conclusion-box h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .conclusion-box p {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-posts-section {
  background-color: var(--color-background);
  padding: var(--section-space-mobile) 0;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary-dark);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .card-content {
  padding: var(--space-lg);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.post-werk-prive-balans-nederlandse-bedrijfscultuur .related-post-card p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .content-section {
    padding: var(--section-space-tablet) 0;
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .two-column-layout {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .impact-container {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .content-section {
    padding: var(--section-space-desktop) 0;
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-werk-prive-balans-nederlandse-bedrijfscultuur .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.privacy-page {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-secondary);
  line-height: var(--lh-body);
  padding: var(--space-lg) 0;
}

.privacy-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-text-light);
  padding-bottom: var(--space-md);
}

.privacy-page__header h1 {
  color: var(--color-primary-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.privacy-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

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

.privacy-page__list {
  list-style-type: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.privacy-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-body);
}

.privacy-page__contact {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
  background-color: var(--color-background);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.privacy-page__contact li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-body);
}

.privacy-page strong {
  color: var(--color-neutral);
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-page__section {
    padding: var(--space-md);
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-lg);
  }
}

.terms-page {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: var(--color-background);
  padding: var(--space-lg) 0;
}

.terms-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-text-light);
  padding-bottom: var(--space-md);
}

.terms-page__header h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.terms-page__date {
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
}

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-page__section {
  margin-bottom: var(--space-xl);
}

.terms-page__section h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-background);
}

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.terms-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.terms-page__list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-body);
}

@media (max-width: 768px) {
  .terms-page__header h1 {
    font-size: var(--fs-h2);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-h4);
  }
  
  .terms-page__content {
    padding: 0 var(--space-sm);
  }
}

.cookie-page {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-secondary);
  line-height: var(--lh-body);
  padding: var(--space-lg) 0;
}

.cookie-page .container {
  max-width: 900px;
}

.cookie-page__header {
  margin-bottom: var(--space-xl);
}

.cookie-page__header h1 {
  color: var(--color-primary-dark);
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
}

.cookie-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.cookie-page__subsection h3 {
  color: var(--color-neutral);
  font-family: var(--font-primary);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.cookie-page__list {
  list-style-type: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.cookie-page__list li {
  margin-bottom: var(--space-xs);
}

.cookie-page p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.cookie-page__footer {
  border-top: 1px solid var(--color-text-light);
  padding-top: var(--space-lg);
  margin-top: var(--space-xxl);
}

.cookie-page__update-date {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-page__section {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__header {
    margin-bottom: var(--space-lg);
  }
  
  .cookie-page__footer {
    margin-top: var(--space-xl);
  }
}

.thank-page__section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.thank-page__content {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.thank-page__content:hover {
  transform: none;
}

.thank-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.thank-page__check-icon {
  width: var(--icon-xl);
  height: var(--icon-xl);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

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

.thank-page__message p {
  margin: 0 auto var(--space-md);
  color: var(--color-text);
}

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

.thank-page__button {
  padding: var(--space-sm) var(--space-xl);
  font-weight: 600;
  font-size: var(--fs-h6);
}

.thank-page__note {
  font-size: var(--fs-small);
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-lg);
    margin: 0 var(--space-sm);
  }
  
  .thank-page__check-icon {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-h2);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--space-xxl) var(--space-md);
    background-color: var(--color-background);
  }

  .error-404__container {
    width: 100%;
  }

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404__title {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: var(--shadow-md);
  }

  .error-404__divider {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-pill);
  }

  .error-404__subtitle {
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
  }

  .error-404__message {
    font-size: var(--fs-body);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
  }

  .error-404__button {
    display: inline-flex;
    align-items: center;
    transition: transform var(--transition-normal);
  }

  .error-404__button:hover {
    transform: translateX(-4px);
  }

  .error-404__icon {
    margin-right: var(--space-xs);
  }

  @media (min-width: 768px) {
    .error-404 {
      padding: var(--space-xxl) var(--space-lg);
    }

    .error-404__title {
      margin-bottom: var(--space-md);
    }

    .error-404__divider {
      margin-bottom: var(--space-xl);
    }

    .error-404__subtitle {
      margin-bottom: var(--space-lg);
    }

    .error-404__message {
      margin-bottom: var(--space-xl);
    }
  }
