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

:root {
  /* Color scheme - modern Dutch-inspired with productivity focus */
  --color-primary: #1e88e5; /* Dutch blue - focus, clarity */
  --color-secondary: #ff6f00; /* Dutch orange - energy, motivation */
  --color-accent: #00bfa5; /* Teal - progress, achievement */
  --color-neutral-light: #f5f7fa; /* Light background */
  --color-neutral-medium: #e0e6ed; /* Medium background, borders */
  --color-neutral-dark: #4a5568; /* Secondary text */
  --color-text: #1a202c; /* Primary text */
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Font sizes - desktop */
  --fs-h1: 3.5rem;
  --fs-h2: 2.75rem;
  --fs-h3: 2.25rem;
  --fs-h4: 1.75rem;
  --fs-h5: 1.5rem;
  --fs-h6: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  
  /* Line heights */
  --lh-heading: 1.2;
  --lh-subheading: 1.3;
  --lh-body: 1.6;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Section padding */
  --section-padding-desktop: 6rem;
  --section-padding-tablet: 4rem;
  --section-padding-mobile: 3rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.35s ease;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

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

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

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

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

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

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

/* Button styles */
.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;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

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

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

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

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

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

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

.btn-accent:hover {
  background-color: #00a896;
  transform: translateY(-2px);
}

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

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

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

.btn-icon i, .btn-icon svg {
  margin-right: var(--space-sm);
}

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

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

/* Icon styles */
.icon-text {
  display: inline-flex;
  align-items: center;
}

.icon-text i, .icon-text svg {
  margin-right: var(--space-sm);
  font-size: var(--icon-sm);
}

/* Form elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  padding: var(--space-md);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* Section styling */
section {
  padding: var(--section-padding-desktop) 0;
}

/* Responsive breakpoints */
@media (max-width: 1439px) {
  :root {
    --fs-h1: 3.25rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
  }
  
  section {
    padding: var(--section-padding-desktop) 0;
  }
}

@media (max-width: 1023px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.125rem;
  }
  
  section {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-h5: 1.125rem;
    --fs-h6: 1rem;
  }
  
  section {
    padding: var(--section-padding-mobile) 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
  }
}
.header {
  background-color: var(--color-neutral-light);
  border-bottom: 3px solid var(--color-primary);
  position: relative;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

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

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h5);
  color: var(--color-text);
  transition: transform var(--transition-normal);
  text-decoration: none;
}

.header__logo:hover {
  transform: scale(1.05);
  color: var(--color-text);
}

.header__logo-icon {
  margin-right: var(--space-sm);
  font-size: var(--fs-h4);
}

.header__logo-text {
  letter-spacing: -0.02em;
}

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

.header__nav {
  display: flex;
}

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

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-normal);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-link--cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.header__nav-link--cta:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.header__nav-link--cta::after {
  display: none;
}

.header__productivity-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: var(--space-lg);
  margin-right: var(--space-lg);
}

.header__productivity-track {
  width: 120px;
  height: 8px;
  background-color: var(--color-neutral-medium);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.header__productivity-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-pill);
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    width: 55%;
  }
  100% {
    width: 75%;
  }
}

.header__productivity-label {
  font-size: var(--fs-xs);
  color: var(--color-neutral-dark);
  margin-top: var(--space-xs);
  font-weight: 500;
}

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

.header__mobile-toggle-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
}

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

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

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

.header__logo--mobile {
  font-size: var(--fs-h6);
}

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: var(--fs-h4);
  cursor: pointer;
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.header__mobile-nav-item {
  margin-bottom: var(--space-lg);
}

.header__mobile-nav-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: color var(--transition-normal);
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
}

.header__mobile-nav-link--cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: var(--space-lg);
}

.header__mobile-nav-link--cta:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.header__mobile-footer {
  margin-top: auto;
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.header__mobile-footer-link {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

@media (max-width: 1023px) {
  .header__productivity-meter {
    display: none;
  }
  
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header__container {
    padding: var(--space-md);
  }
  
  .header__logo {
    font-size: var(--fs-h6);
  }
}

/* Main styles */
.main {
  overflow-x: hidden;
}

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-light);
  overflow: hidden;
}

.main .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-3xl);
  align-items: center;
  position: relative;
}

.main .hero-text {
  position: relative;
  z-index: 2;
}

.main .hero h1 {
  font-size: var(--fs-h1);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  position: relative;
}

.main .hero-subtitle {
  font-size: var(--fs-h5);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
  max-width: 90%;
}

.main .hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.main .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

.main .hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform var(--transition-normal);
}

.main .hero-image:hover {
  transform: scale(1);
}

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  top: -50px;
  right: -30px;
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.15;
  bottom: -40px;
  left: 10%;
}

.main .hero-stats {
  position: absolute;
  bottom: 30px;
  left: -60px;
  z-index: 3;
  display: flex;
  gap: var(--space-md);
}

.main .hero-stat {
  background-color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  transition: transform var(--transition-normal);
}

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

.main .hero-stat-number {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-primary);
}

.main .hero-stat-text {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
  text-align: center;
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  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='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
  rotate: 180deg;
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
}

.main .featured-posts h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.main .section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  color: var(--color-neutral-dark);
  font-size: var(--fs-h6);
}

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

.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(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.main .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.3;
}

.main .post-card p {
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

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

.main .section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.main .section-cta .btn {
  font-size: var(--fs-body);
  padding: var(--space-md) var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.main .section-cta .btn i {
  transition: transform var(--transition-normal);
}

.main .section-cta .btn:hover i {
  transform: translateX(5px);
}

/* Benefits Section */
.main .benefits {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

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

.main .section-header p {
  color: var(--color-neutral-dark);
  font-size: var(--fs-h6);
}

.main .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.main .benefit-card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
  height: 100%;
}

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

.main .benefit-card:nth-child(odd):hover {
  background-color: var(--color-primary);
}

.main .benefit-card:nth-child(even):hover {
  background-color: var(--color-secondary);
}

.main .benefit-card:hover h3,
.main .benefit-card:hover p,
.main .benefit-card:hover .benefit-icon i {
  color: var(--color-white);
}

.main .benefit-icon {
  font-size: var(--icon-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.main .benefit-card:nth-child(even) .benefit-icon {
  color: var(--color-secondary);
}

.main .benefit-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  transition: color var(--transition-normal);
}

.main .benefit-card p {
  color: var(--color-neutral-dark);
  transition: color var(--transition-normal);
}

.main .benefits-image-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.main .benefits-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.main .benefits-image-container:hover .benefits-image {
  transform: scale(1.02);
}

/* Method Section */
.main .method {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.main .method-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.main .method-intro {
  font-size: var(--fs-h6);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-2xl);
}

.main .method-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.main .method-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.main .method-step-number {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  min-width: 60px;
  transition: all var(--transition-normal);
}

.main .method-step:hover .method-step-number {
  opacity: 1;
  transform: scale(1.1);
}

.main .method-step h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.main .method-step p {
  color: var(--color-neutral-dark);
}

.main .method-visual {
  position: relative;
}

.main .method-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all var(--transition-normal);
}

.main .method-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

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

/* Testimonials Section */
.main .testimonials {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .testimonials h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.main .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.main .testimonial-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 .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.main .testimonial-content {
  padding: var(--space-xl);
  flex-grow: 1;
  position: relative;
}

.main .testimonial-quote {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: var(--space-md);
}

.main .testimonial-content p {
  font-style: italic;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.main .testimonial-rating {
  margin-top: var(--space-lg);
  color: var(--color-secondary);
  font-size: var(--fs-body);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-neutral-medium);
}

.main .testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

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

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

/* Contact Section */
.main .contact {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-white);
  position: relative;
}

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

.main .contact-info h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.main .contact-info > p {
  font-size: var(--fs-h6);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  max-width: 90%;
}

.main .contact-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.main .contact-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main .contact-benefit i {
  color: var(--color-success);
  font-size: var(--fs-h5);
}

.main .contact-benefit p {
  margin-bottom: 0;
  font-weight: 500;
}

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

.main .contact-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.main .contact-image:hover .contact-img {
  transform: scale(1.03);
}

.main .contact-form-container {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

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

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

.main .form-group label {
  font-weight: 500;
  color: var(--color-text);
}

.main .form-group input,
.main .form-group textarea {
  padding: var(--space-md);
  border: 1px solid var(--color-neutral-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  transition: all var(--transition-normal);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
  outline: none;
}

.main .form-privacy {
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.main .form-privacy input {
  width: 20px;
  height: 20px;
}

.main .form-privacy label {
  margin-bottom: 0;
}

.main .btn-full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.main .btn-full i {
  transition: transform var(--transition-normal);
}

.main .btn-full:hover i {
  transform: translateX(5px);
}

/* Cookie Banner */
.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;
}

.main .cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.main .cookie-content p {
  margin-bottom: 0;
  padding-right: var(--space-lg);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .main .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-stats {
    position: static;
    justify-content: center;
    margin-top: var(--space-xl);
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .method-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .main .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .cookie-content {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .main .cookie-content p {
    padding-right: 0;
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.footer {
  position: relative;
  background-color: var(--color-neutral-light);
  color: var(--color-text);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
  overflow: hidden;
  font-family: var(--font-primary);
}

.footer__wave {
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 5rem;
  color: var(--color-neutral-light);
  line-height: 0;
}

.footer__wave svg {
  width: 100%;
  height: 100%;
}

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

.footer__brand {
  grid-column: span 1;
}

.footer__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.footer__tagline {
  font-size: var(--fs-body);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

.footer__efficiency-meter {
  background-color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.footer__efficiency-meter:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.footer__meter {
  height: 8px;
  background-color: var(--color-neutral-medium);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.footer__meter-fill {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-pill);
  transition: width 1.5s ease-in-out;
}

.footer__meter-value {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-primary);
  text-align: right;
}

.footer__links, .footer__resources, .footer__newsletter {
  grid-column: span 1;
}

.footer__heading {
  font-size: var(--fs-h6);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

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

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

.footer__link {
  color: var(--color-neutral-dark);
  text-decoration: none;
  font-size: var(--fs-body);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: var(--space-md);
}

.footer__link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.footer__link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer__link:hover:before {
  background-color: var(--color-secondary);
  transform: translateY(-50%) scale(1.3);
}

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

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

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

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

.footer__tool-icon svg {
  width: 20px;
  height: 20px;
}

.footer__tool-info {
  flex: 1;
}

.footer__tool-name {
  font-size: var(--fs-small);
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
}

.footer__tool-desc {
  font-size: var(--fs-xs);
  color: var(--color-neutral-dark);
  margin: 0;
}

.footer__newsletter-text {
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
}

.footer__input-group {
  display: flex;
  position: relative;
}

.footer__input {
  width: 100%;
  padding: var(--space-md);
  padding-right: 45px;
  border: 2px solid var(--color-neutral-medium);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  font-size: var(--fs-small);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.footer__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

.footer__submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.footer__submit svg {
  width: 18px;
  height: 18px;
}

.footer__submit:hover {
  background-color: var(--color-secondary);
  transform: translateY(-50%) scale(1.05);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
}

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

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

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

.footer__divider {
  width: 4px;
  height: 4px;
  background-color: var(--color-neutral-dark);
  border-radius: 50%;
  margin: 0 var(--space-md);
}

.footer__copyright {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
}

.footer__productivity-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  z-index: -1;
  opacity: 0.1;
}

.footer__pattern-item {
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.footer__pattern-item:nth-child(2) {
  background-color: var(--color-secondary);
  width: 20px;
  height: 20px;
  align-self: center;
}

.footer__pattern-item:nth-child(3) {
  background-color: var(--color-accent);
  width: 15px;
  height: 15px;
  align-self: flex-end;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__brand, .footer__links, .footer__resources, .footer__newsletter {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand, .footer__links, .footer__resources, .footer__newsletter {
    grid-column: span 1;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }
  
  .footer__legal {
    margin-bottom: var(--space-sm);
  }
}

.privacy-page {
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: var(--lh-body);
}

.privacy-page__container {
  padding: var(--space-xl) var(--space-md);
}

.privacy-page__header {
  margin-bottom: var(--space-3xl);
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-lg);
}

.privacy-page__title {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.privacy-page__last-updated {
  color: var(--color-neutral-dark);
  font-size: var(--fs-small);
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

.privacy-page__section-title {
  color: var(--color-primary);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-md);
}

.privacy-page__subsection-title {
  color: var(--color-text);
  font-size: var(--fs-h5);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.privacy-page__text {
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

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

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

.privacy-page__contact-info {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  border-left: 4px solid var(--color-accent);
}

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
}

.privacy-page__contact-item strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 1023px) {
  .privacy-page__container {
    padding: var(--space-lg) var(--space-md);
  }
  
  .privacy-page__title {
    font-size: var(--fs-h3);
  }
  
  .privacy-page__section-title {
    font-size: var(--fs-h4);
  }
  
  .privacy-page__subsection-title {
    font-size: var(--fs-h6);
  }
}

@media (max-width: 767px) {
  .privacy-page__container {
    padding: var(--space-md);
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-2xl);
  }
  
  .privacy-page__title {
    font-size: var(--fs-h3);
  }
  
  .privacy-page__section-title {
    font-size: var(--fs-h5);
    padding-left: var(--space-sm);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-lg);
  }
}

/* Terms of Service page specific styles */
.terms-page {
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-primary);
  padding: var(--space-3xl) 0;
}

.terms-page__header {
  margin-bottom: var(--space-3xl);
  text-align: center;
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-xl);
}

.terms-page h1 {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.terms-page__updated {
  color: var(--color-neutral-dark);
  font-size: var(--fs-small);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

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

.terms-page h2 {
  color: var(--color-primary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-md);
}

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

.terms-page__list {
  list-style-type: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

/* Responsive adjustments */
@media (max-width: 1023px) {
  .terms-page {
    padding: var(--space-2xl) 0;
  }
  
  .terms-page__section {
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page h1 {
    font-size: var(--fs-h3);
  }
  
  .terms-page h2 {
    font-size: var(--fs-h5);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__list {
    margin-left: var(--space-lg);
  }
}

.cookie-page {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-text);
  padding: var(--section-padding-desktop) 0;
}

.cookie-page__container {
  max-width: 900px;
}

.cookie-page__title {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.cookie-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

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

.cookie-page__section-title {
  color: var(--color-text);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

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

.cookie-page__subsection-title {
  color: var(--color-text);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

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

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

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

@media (max-width: 1023px) {
  .cookie-page {
    padding: var(--section-padding-tablet) 0;
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--section-padding-mobile) 0;
  }
  
  .cookie-page__title {
    font-size: var(--fs-h3);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-h5);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--fs-h6);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
}

/* Thank you page specific styles */
.thank-page {
  background-color: var(--color-neutral-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-page__container {
  padding: var(--space-2xl) var(--space-md);
}

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

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

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

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

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

.thank-page__subtitle {
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.thank-page__message {
  font-size: var(--fs-body);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

.thank-page__response-time {
  font-size: var(--fs-body);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
}

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

.thank-page__button {
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page__container {
    padding: var(--space-xl) var(--space-md);
  }
  
  .thank-page__card {
    padding: var(--space-xl);
  }
  
  .thank-page__title {
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__icon {
    margin-bottom: var(--space-lg);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
  
  .thank-page__subtitle {
    font-size: var(--fs-h5);
    margin-bottom: var(--space-md);
  }
  
  .thank-page__message,
  .thank-page__response-time {
    font-size: var(--fs-small);
    margin-bottom: var(--space-md);
  }
  
  .thank-page__action {
    margin-top: var(--space-lg);
  }
}

/* Category Page Styles */
.category-page {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
}

/* Hero Section */
.category-page__hero {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
  margin-bottom: var(--space-2xl);
}

.category-page__hero h1 {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  max-width: 800px;
}

.category-page__hero-description {
  font-size: var(--fs-h6);
  line-height: var(--lh-body);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.category-page__hero-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

.category-page__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Posts Grid Section */
.category-page__posts {
  padding: var(--space-2xl) 0;
}

.category-page__posts h2 {
  margin-bottom: var(--space-2xl);
  text-align: center;
  color: var(--color-text);
  font-size: var(--fs-h2);
}

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

/* Post Card Styles */
.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);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.post-card__image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.post-card h3 {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  font-size: var(--fs-h5);
  line-height: var(--lh-heading);
  color: var(--color-text);
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-lg);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-neutral-dark);
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-card a {
  margin: 0 var(--space-lg) var(--space-lg);
  align-self: flex-start;
}

/* Productivity Tips Section */
.category-page__productivity-tips {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
}

.category-page__productivity-tips h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
  font-size: var(--fs-h2);
}

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

.productivity-tips__image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.productivity-tips__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.productivity-tips__list-container {
  padding: var(--space-lg);
}

.productivity-tips__list {
  list-style: none;
}

.productivity-tips__item {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.productivity-tips__item:hover {
  transform: translateX(5px);
}

.productivity-icon {
  display: inline-block;
  width: var(--icon-sm);
  height: var(--icon-sm);
  margin-right: var(--space-sm);
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Productivity Stats Section */
.category-page__productivity-stats {
  padding: var(--space-3xl) 0;
}

.category-page__productivity-stats h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
  font-size: var(--fs-h2);
}

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

.productivity-stats__intro,
.productivity-stats__conclusion {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.productivity-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.productivity-stats__card {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.productivity-stats__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.productivity-stats__number {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.productivity-stats__description {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
}

.productivity-stats__image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.productivity-stats__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .productivity-tips__content,
  .productivity-stats__content {
    grid-template-columns: 1fr;
  }
  
  .productivity-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .productivity-stats__grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__hero h1 {
    font-size: var(--fs-h2);
  }
  
  .category-page__hero-description {
    font-size: var(--fs-body);
  }
}

/* Base styles for the specific post */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel {
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: var(--lh-body);
}

/* Breadcrumbs styling */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .breadcrumbs a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-xl);
  color: var(--color-white);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-white);
}

/* Content Sections */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section-light {
  background-color: var(--color-white);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section-dark {
  background-color: var(--color-neutral-light);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section h2 {
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-h2);
  text-align: center;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section h3 {
  margin-bottom: var(--space-md);
  font-size: var(--fs-h4);
  color: var(--color-primary);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .section-content {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .text-content {
  flex: 1;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .image-content {
  flex: 1;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-image-full {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: var(--space-2xl) auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Steps Section */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .implementation-tips {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .checklist {
  list-style: none;
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .checklist li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Benefits Section */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .benefit-card {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  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-efficiënte-vergaderingen-nederlandse-25-minuten-regel .benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .implementation-guide {
  background-color: var(--color-neutral-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .implementation-guide ol {
  padding-left: var(--space-xl);
  margin: var(--space-lg) 0;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .implementation-guide li {
  margin-bottom: var(--space-md);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .implementation-guide strong {
  color: var(--color-primary);
}

/* Related Posts Section */
.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-h2);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card h3 {
  margin-bottom: var(--space-md);
  font-size: var(--fs-h5);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card a:hover {
  color: var(--color-secondary);
}

.post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-post-card p {
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .section-content {
    flex-direction: column;
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero h1 {
    font-size: var(--fs-h2);
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .post-hero .lead {
    font-size: var(--fs-body);
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .steps-container,
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .benefits-grid,
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-efficiënte-vergaderingen-nederlandse-25-minuten-regel .related-posts-section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* Base styles for the page */
.post-tijdsblokken-nederlandse-aanpak {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
}

/* Breadcrumbs styling */
.post-tijdsblokken-nederlandse-aanpak .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-neutral-medium);
  font-size: var(--fs-small);
}

.post-tijdsblokken-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.post-tijdsblokken-nederlandse-aanpak .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero section styling */
.post-tijdsblokken-nederlandse-aanpak .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-tijdsblokken-nederlandse-aanpak .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.post-tijdsblokken-nederlandse-aanpak .post-hero .container {
  position: relative;
  z-index: 2;
}

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

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

/* Content sections general styling */
.post-tijdsblokken-nederlandse-aanpak .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-tijdsblokken-nederlandse-aanpak .content-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-xl);
  color: var(--color-text);
  position: relative;
}

.post-tijdsblokken-nederlandse-aanpak .content-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-top: var(--space-sm);
}

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

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

/* Principles section styling */
.post-tijdsblokken-nederlandse-aanpak .principles-section {
  background-color: var(--color-white);
}

.post-tijdsblokken-nederlandse-aanpak .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-tijdsblokken-nederlandse-aanpak .text-content {
  flex: 1;
}

.post-tijdsblokken-nederlandse-aanpak .image-container {
  flex: 0 0 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-tijdsblokken-nederlandse-aanpak .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-tijdsblokken-nederlandse-aanpak .image-container:hover img {
  transform: scale(1.02);
}

.post-tijdsblokken-nederlandse-aanpak .feature-list {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}

.post-tijdsblokken-nederlandse-aanpak .feature-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-tijdsblokken-nederlandse-aanpak .feature-list li::before {
  content: "✓";
  color: var(--color-accent);
  position: absolute;
  left: -25px;
  font-weight: bold;
}

/* Implementation section styling */
.post-tijdsblokken-nederlandse-aanpak .implementation-section {
  background-color: var(--color-neutral-light);
  position: relative;
}

.post-tijdsblokken-nederlandse-aanpak .steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

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

.post-tijdsblokken-nederlandse-aanpak .step-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h5);
}

.post-tijdsblokken-nederlandse-aanpak .step-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-tijdsblokken-nederlandse-aanpak .step-card li {
  margin-bottom: var(--space-sm);
}

.post-tijdsblokken-nederlandse-aanpak .implementation-example {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.post-tijdsblokken-nederlandse-aanpak .implementation-example h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.post-tijdsblokken-nederlandse-aanpak .schedule-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.post-tijdsblokken-nederlandse-aanpak .schedule-item {
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-tijdsblokken-nederlandse-aanpak .time {
  flex: 0 0 120px;
  background-color: var(--color-neutral-medium);
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-tijdsblokken-nederlandse-aanpak .activity {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-white);
}

.post-tijdsblokken-nederlandse-aanpak .planning {
  background-color: var(--color-primary);
}

.post-tijdsblokken-nederlandse-aanpak .deep-work {
  background-color: var(--color-accent);
}

.post-tijdsblokken-nederlandse-aanpak .communication {
  background-color: var(--color-secondary);
}

.post-tijdsblokken-nederlandse-aanpak .break {
  background-color: var(--color-success);
}

.post-tijdsblokken-nederlandse-aanpak .routine {
  background-color: var(--color-neutral-dark);
}

.post-tijdsblokken-nederlandse-aanpak .meetings {
  background-color: var(--color-warning);
  color: var(--color-text);
}

.post-tijdsblokken-nederlandse-aanpak .center-image {
  display: flex;
  justify-content: center;
  margin: var(--space-2xl) auto;
  max-width: 800px;
}

/* Challenges section styling */
.post-tijdsblokken-nederlandse-aanpak .challenges-section {
  background-color: var(--color-white);
  position: relative;
}

.post-tijdsblokken-nederlandse-aanpak .challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.post-tijdsblokken-nederlandse-aanpak .challenge-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  border-left: 4px solid var(--color-primary);
}

.post-tijdsblokken-nederlandse-aanpak .challenge-card:hover {
  transform: translateY(-5px);
}

.post-tijdsblokken-nederlandse-aanpak .challenge-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-tijdsblokken-nederlandse-aanpak .key-takeaways {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-tijdsblokken-nederlandse-aanpak .key-takeaways h3 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.post-tijdsblokken-nederlandse-aanpak .key-takeaways ul {
  padding-left: var(--space-xl);
  columns: 2;
}

.post-tijdsblokken-nederlandse-aanpak .key-takeaways li {
  margin-bottom: var(--space-md);
  break-inside: avoid;
}

.post-tijdsblokken-nederlandse-aanpak .conclusion {
  font-size: var(--fs-h6);
  line-height: var(--lh-subheading);
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  border-top: 1px solid var(--color-neutral-medium);
  border-bottom: 1px solid var(--color-neutral-medium);
}

/* Related posts section styling */
.post-tijdsblokken-nederlandse-aanpak .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--section-padding-desktop) 0;
}

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

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

.post-tijdsblokken-nederlandse-aanpak .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);
  text-decoration: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.post-tijdsblokken-nederlandse-aanpak .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  transition: color var(--transition-normal);
}

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

.post-tijdsblokken-nederlandse-aanpak .post-card p {
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .post-tijdsblokken-nederlandse-aanpak .section-content {
    flex-direction: column;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .image-container {
    width: 100%;
    margin-top: var(--space-lg);
  }
  
  .post-tijdsblokken-nederlandse-aanpak .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-tijdsblokken-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-tijdsblokken-nederlandse-aanpak .challenges-grid {
    grid-template-columns: 1fr;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .key-takeaways ul {
    columns: 1;
  }
}

@media (max-width: 767px) {
  .post-tijdsblokken-nederlandse-aanpak .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .steps-container {
    grid-template-columns: 1fr;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .schedule-item {
    flex-direction: column;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .time {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
  }
  
  .post-tijdsblokken-nederlandse-aanpak .content-section h2::after {
    margin: var(--space-sm) auto 0;
  }
}

.post-top-productiviteitsapps-nederland {
  color: var(--color-text);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-top-productiviteitsapps-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
}

.post-top-productiviteitsapps-nederland .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-top-productiviteitsapps-nederland .breadcrumbs a:hover {
  text-decoration: underline;
}

/* Hero Section */
.post-top-productiviteitsapps-nederland .post-hero {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.post-top-productiviteitsapps-nederland .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-heading);
}

.post-top-productiviteitsapps-nederland .post-hero .lead {
  font-size: var(--fs-h5);
  max-width: 900px;
  margin: 0 auto;
  line-height: var(--lh-subheading);
  font-weight: 400;
}

/* Content Sections */
.post-top-productiviteitsapps-nederland .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-top-productiviteitsapps-nederland .section-light {
  background-color: var(--color-white);
}

.post-top-productiviteitsapps-nederland .section-medium {
  background-color: var(--color-neutral-light);
}

.post-top-productiviteitsapps-nederland .content-section h2 {
  font-size: var(--fs-h2);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-top-productiviteitsapps-nederland .content-section h3 {
  font-size: var(--fs-h4);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.post-top-productiviteitsapps-nederland .content-section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

/* Image Container */
.post-top-productiviteitsapps-nederland .image-container {
  margin: var(--space-xl) 0;
  text-align: center;
}

.post-top-productiviteitsapps-nederland .image-container img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* SMART Principles Cards */
.post-top-productiviteitsapps-nederland .smart-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-top-productiviteitsapps-nederland .smart-principle-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-top-productiviteitsapps-nederland .smart-principle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-productiviteitsapps-nederland .smart-principle-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-sm);
}

/* Implementation Steps */
.post-top-productiviteitsapps-nederland .implementation-steps {
  margin: var(--space-xl) 0;
}

.post-top-productiviteitsapps-nederland .step {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-primary);
}

.post-top-productiviteitsapps-nederland .step h3 {
  color: var(--color-primary);
  margin-top: 0;
}

/* Case Study */
.post-top-productiviteitsapps-nederland .case-study {
  background-color: var(--color-neutral-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-top-productiviteitsapps-nederland .case-study h3 {
  color: var(--color-secondary);
  margin-top: 0;
}

/* Conclusion */
.post-top-productiviteitsapps-nederland .conclusion {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
}

.post-top-productiviteitsapps-nederland .conclusion h3 {
  color: var(--color-white);
  margin-top: 0;
}

.post-top-productiviteitsapps-nederland .conclusion p {
  color: var(--color-white);
  margin-bottom: 0;
}

/* Related Posts */
.post-top-productiviteitsapps-nederland .related-posts {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--color-neutral-light);
}

.post-top-productiviteitsapps-nederland .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-top-productiviteitsapps-nederland .post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-top-productiviteitsapps-nederland .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-top-productiviteitsapps-nederland .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-productiviteitsapps-nederland .post-card h3 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-top-productiviteitsapps-nederland .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-top-productiviteitsapps-nederland .post-card h3 a:hover {
  color: var(--color-secondary);
}

.post-top-productiviteitsapps-nederland .post-card p {
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-top-productiviteitsapps-nederland .smart-principles {
    grid-template-columns: 1fr;
  }
  
  .post-top-productiviteitsapps-nederland .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-top-productiviteitsapps-nederland .content-section {
    padding: var(--section-padding-tablet) 0;
  }
  
  .post-top-productiviteitsapps-nederland .related-posts {
    padding: var(--section-padding-tablet) 0;
  }
}

@media (max-width: 767px) {
  .post-top-productiviteitsapps-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-top-productiviteitsapps-nederland .post-hero h1 {
    font-size: var(--fs-h2);
  }
  
  .post-top-productiviteitsapps-nederland .post-hero .lead {
    font-size: var(--fs-h6);
  }
  
  .post-top-productiviteitsapps-nederland .content-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-top-productiviteitsapps-nederland .related-posts {
    padding: var(--section-padding-mobile) 0;
  }
  
  .post-top-productiviteitsapps-nederland .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-top-productiviteitsapps-nederland .content-section h2 {
    font-size: var(--fs-h3);
  }
  
  .post-top-productiviteitsapps-nederland .content-section h3 {
    font-size: var(--fs-h5);
  }
}

  /* Page-specific styles */
  .post-top-10-productiviteitsapps-nederlandse-professionals .breadcrumbs {
    background-color: var(--color-neutral-light);
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
    color: var(--color-neutral-dark);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .breadcrumbs a:hover {
    color: var(--color-secondary);
  }
  
  /* Hero Section */
  .post-top-10-productiviteitsapps-nederlandse-professionals .post-hero {
    background-color: var(--color-white);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .post-hero h1 {
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    max-width: 800px;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .post-hero .lead {
    font-size: var(--fs-h6);
    color: var(--color-neutral-dark);
    line-height: var(--lh-subheading);
    margin-bottom: var(--space-xl);
    max-width: 800px;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: var(--space-xl) 0;
  }
  
  /* Apps Section - Light background */
  .post-top-10-productiviteitsapps-nederlandse-professionals .apps-section {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop) 0;
  }
  
  /* Focus Section - White background */
  .post-top-10-productiviteitsapps-nederlandse-professionals .focus-section {
    background-color: var(--color-white);
    padding: var(--section-padding-desktop) 0;
  }
  
  /* Collaboration Section - Light background */
  .post-top-10-productiviteitsapps-nederlandse-professionals .collaboration-section {
    background-color: var(--color-neutral-light);
    padding: var(--section-padding-desktop) 0;
  }
  
  /* Section Headers */
  .post-top-10-productiviteitsapps-nederlandse-professionals .content-section h2 {
    color: var(--color-primary);
    margin-bottom: var(--space-2xl);
    position: relative;
    display: inline-block;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .content-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-pill);
  }
  
  /* App Cards */
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .focus-section .app-card {
    background-color: var(--color-neutral-light);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-card h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--fs-h5);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-content {
    display: flex;
    flex-direction: row;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-text {
    flex: 1;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-image {
    width: 280px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  
  /* Features and Tips Sections */
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-features,
  .post-top-10-productiviteitsapps-nederlandse-professionals .implementation-tips {
    background-color: rgba(30, 136, 229, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-features h4,
  .post-top-10-productiviteitsapps-nederlandse-professionals .implementation-tips h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-size: var(--fs-body);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-features ul,
  .post-top-10-productiviteitsapps-nederlandse-professionals .implementation-tips ol {
    padding-left: var(--space-xl);
    margin-bottom: 0;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .app-features li,
  .post-top-10-productiviteitsapps-nederlandse-professionals .implementation-tips li {
    margin-bottom: var(--space-sm);
    line-height: var(--lh-body);
  }
  
  /* Conclusion */
  .post-top-10-productiviteitsapps-nederlandse-professionals .conclusion {
    background-color: rgba(0, 191, 165, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    border: 1px solid var(--color-accent);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .conclusion h3 {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
  }
  
  /* Related Posts Section */
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-section {
    background-color: var(--color-white);
    padding: var(--section-padding-desktop) 0;
    border-top: 1px solid var(--color-neutral-medium);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--color-text);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card {
    background-color: var(--color-neutral-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card h3 {
    font-size: var(--fs-h6);
    margin-bottom: var(--space-md);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card h3 a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card h3 a:hover {
    color: var(--color-secondary);
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card p {
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
  }
  
  .post-top-10-productiviteitsapps-nederlandse-professionals .related-post-card .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1023px) {
    .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .app-content {
      flex-direction: column;
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .app-image {
      width: 100%;
      margin-top: var(--space-md);
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .apps-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .focus-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .collaboration-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-section {
      padding: var(--section-padding-tablet) 0;
    }
  }
  
  @media (max-width: 767px) {
    .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .post-hero {
      padding: var(--space-2xl) 0;
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .post-hero .lead {
      font-size: var(--fs-body);
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .apps-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .focus-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .collaboration-section,
    .post-top-10-productiviteitsapps-nederlandse-professionals .related-posts-section {
      padding: var(--section-padding-mobile) 0;
    }
    
    .post-top-10-productiviteitsapps-nederlandse-professionals .app-card {
      padding: var(--space-lg);
    }
  }

/* Base styles for the post */
.post-page {
  color: var(--color-text);
  font-family: var(--font-primary);
}

/* Breadcrumbs */
.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-small);
  background-color: var(--color-neutral-light);
}

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

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

/* Hero Section */
.post-page .post-hero {
  background-color: var(--color-white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-neutral-medium);
}

.post-page .post-hero h1 {
  font-size: var(--fs-h1);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-page .post-hero .lead {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

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

/* Content Sections - General */
.post-page .content-section {
  padding: var(--section-padding-desktop) 0;
}

.post-page .content-section h2 {
  font-size: var(--fs-h2);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-page .content-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin-top: var(--space-sm);
  border-radius: var(--radius-pill);
}

/* Section 1 - Boundaries */
.post-page .section-boundaries {
  background-color: var(--color-neutral-light);
}

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

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

.post-page .content-image {
  order: 2;
}

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

.post-page .tip-box {
  background-color: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.post-page .tip-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h6);
}

.post-page .tip-box ul {
  margin-left: var(--space-lg);
  line-height: var(--lh-body);
}

.post-page .tip-box li {
  margin-bottom: var(--space-sm);
}

/* Section 2 - Efficiency */
.post-page .section-efficiency {
  background-color: var(--color-white);
}

.post-page .efficiency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-page .efficiency-card {
  background-color: var(--color-neutral-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-page .efficiency-card h3 {
  color: var(--color-primary);
  font-size: var(--fs-h5);
  margin-bottom: var(--space-md);
}

.post-page .efficiency-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

.post-page .quote-box {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.post-page .quote-box p {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.post-page .quote-box cite {
  font-size: var(--fs-body);
  font-style: normal;
  opacity: 0.9;
}

/* Section 3 - Implementation */
.post-page .section-implementation {
  background-color: var(--color-neutral-light);
}

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

.post-page .step-item {
  display: flex;
  margin-bottom: var(--space-xl);
  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;
  margin-right: var(--space-lg);
  font-size: var(--fs-h6);
}

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

.post-page .step-content h4 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-h6);
}

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

.post-page .conclusion-box h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--fs-h5);
}

/* Related Posts */
.post-page .related-posts-section {
  background-color: var(--color-white);
  padding: var(--section-padding-desktop) 0;
  border-top: 1px solid var(--color-neutral-medium);
}

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

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

.post-page .related-post-card {
  background-color: var(--color-neutral-light);
  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-h6);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  color: var(--color-text);
}

.post-page .related-post-card p {
  padding: 0 var(--space-lg);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-page .efficiency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-page .section-content {
    grid-template-columns: 1fr;
  }
  
  .post-page .content-text {
    order: 2;
  }
  
  .post-page .content-image {
    order: 1;
    margin-bottom: var(--space-lg);
  }
  
  .post-page .efficiency-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .step-item {
    flex-direction: column;
  }
  
  .post-page .step-number {
    margin-bottom: var(--space-md);
  }
}

.privacy-page {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.privacy-page__header {
  margin-bottom: var(--space-3xl);
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-lg);
}

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

.privacy-page__updated {
  font-size: var(--fs-small);
  color: var(--color-neutral-dark);
  font-family: var(--font-secondary);
}

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-md);
}

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

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

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

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

.privacy-page__contact p {
  margin-bottom: var(--space-sm);
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-2xl);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

.terms-page {
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: var(--lh-body);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.terms-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-lg);
}

.terms-page__title {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.terms-page__last-updated {
  color: var(--color-neutral-dark);
  font-size: var(--fs-small);
  font-style: italic;
  margin-bottom: 0;
}

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

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

.terms-page__section:last-child {
  margin-bottom: 0;
}

.terms-page__section-title {
  color: var(--color-text);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-neutral-medium);
  padding-bottom: var(--space-sm);
}

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

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

.terms-page p {
  margin-bottom: var(--space-md);
}

@media (max-width: 1023px) {
  .terms-page__title {
    font-size: var(--fs-h3);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h5);
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__title {
    font-size: var(--fs-h3);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-h5);
  }
}

.cookie-page {
  background-color: var(--color-neutral-light);
  color: var(--color-text);
  font-family: var(--font-primary);
}

.cookie-page__header {
  background-color: var(--color-primary);
  padding: var(--space-2xl) 0;
  color: var(--color-white);
}

.cookie-page__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.cookie-page__last-updated {
  font-size: var(--fs-small);
  color: var(--color-neutral-light);
  margin-bottom: 0;
}

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

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

.cookie-page__section:last-child {
  margin-bottom: 0;
}

.cookie-page__section-title {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  border-bottom: 2px solid var(--color-neutral-medium);
  padding-bottom: var(--space-sm);
}

.cookie-page__subsection-title {
  font-size: var(--fs-h5);
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cookie-page__text {
  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;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

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

@media (max-width: 1023px) {
  .cookie-page__header {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__content {
    padding: var(--space-2xl) 0;
  }
  
  .cookie-page__section {
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .cookie-page__header {
    padding: var(--space-lg) 0;
  }
  
  .cookie-page__content {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__section {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__title {
    font-size: var(--fs-h3);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-h4);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--fs-h6);
  }
}

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

.thank-page__container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

.thank-page__message {
  font-size: var(--fs-h5);
  line-height: var(--lh-subheading);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.thank-page__submessage {
  font-size: var(--fs-body);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-body);
}

.thank-page__tips {
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.thank-page__subtitle {
  font-size: var(--fs-h5);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.thank-page__list {
  list-style-type: none;
  padding-left: var(--space-lg);
}

.thank-page__list-item {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.thank-page__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.thank-page__button {
  margin-top: var(--space-lg);
  font-size: var(--fs-body);
  padding: var(--space-md) var(--space-xl);
}

@media (max-width: 767px) {
  .thank-page__card {
    padding: var(--space-xl);
  }
  
  .thank-page__message {
    font-size: var(--fs-h6);
  }
  
  .thank-page__icon svg {
    width: var(--icon-lg);
    height: var(--icon-lg);
  }
  
  .thank-page__tips {
    padding: var(--space-md);
  }
}

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

  .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__number {
    font-family: var(--font-primary);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    position: relative;
    opacity: 0.9;
    text-shadow: var(--shadow-md);
  }

  .error-404__number::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
  }

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

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-xl);
    line-height: var(--lh-body);
  }

  .error-404__button {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) var(--space-xl);
  }

  .error-404__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-4xl) var(--space-md);
    }

    .error-404__number {
      font-size: 7rem;
    }

    .error-404__title {
      font-size: var(--fs-h4);
    }

    .error-404__message {
      font-size: var(--fs-small);
      margin-bottom: var(--space-lg);
    }

    .error-404__number::after {
      width: 60px;
      height: 3px;
    }
  }

  @media (max-width: 480px) {
    .error-404__number {
      font-size: 5rem;
    }

    .error-404__number::after {
      width: 40px;
      height: 2px;
    }
  }
