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

:root {
  
  --color-primary: #005E8A; 
  --color-secondary: #FF6B35; 
  --color-accent: #00A878; 
  --color-neutral: #F5F5F5; 
  --color-neutral-dark: #E0E0E0; 
  --color-text: #2D3748; 
  --color-text-light: #718096; 
  
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  
  --text-xs: 0.75rem;    
  --text-sm: 0.875rem;   
  --text-base: 1rem;     
  --text-md: 1.125rem;   
  --text-lg: 1.25rem;    
  --text-xl: 1.5rem;     
  --text-2xl: 1.875rem;  
  --text-3xl: 2.25rem;   
  --text-4xl: 2.75rem;   
  --text-5xl: 3.5rem;    
  
  
  --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;     
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.07), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  
  --icon-xs: 0.75rem;    
  --icon-sm: 1rem;       
  --icon-md: 1.25rem;    
  --icon-lg: 1.5rem;     
  --icon-xl: 2rem;       
  
  
  --z-base: 1;
  --z-above: 10;
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-toast: 2000;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-neutral);
}

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

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

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

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

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

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

h6 {
  font-size: var(--text-md);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

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

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

strong {
  font-weight: 700;
}

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

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

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

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

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

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

.btn-accent:hover {
  background-color: #008e65;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

.icon-text {
  margin-right: var(--space-sm);
}

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

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

input, textarea, select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  border: 1px solid var(--color-neutral-dark);
  border-radius: var(--radius-md);
  background-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(0, 94, 138, 0.1);
}

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

@media (max-width: 767px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  h4 {
    font-size: var(--text-lg);
  }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
.header {
  background-color: var(--color-neutral);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-neutral-dark);
  position: relative;
}

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

.header__logo-wrapper {
  flex: 0 0 auto;
}

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

.header__logo:hover {
  transform: translateY(-2px);
  color: var(--color-text);
}

.header__logo-icon {
  margin-right: var(--space-xs);
  color: var(--color-secondary);
  font-size: var(--text-2xl);
}

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

.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

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

.header__nav-item {
  position: relative;
}

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

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

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

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

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

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

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

.header__productivity-meter {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.header__productivity-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-light);
  white-space: nowrap;
}

.header__productivity-bar {
  width: 80px;
  height: 8px;
  background-color: var(--color-neutral-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.header__productivity-progress {
  width: 78%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

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

.header__productivity-value {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
}

.header__cta {
  white-space: nowrap;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-above);
}

.header__mobile-toggle-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  overflow-y: auto;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.header__mobile-menu.is-active .header__mobile-menu-container {
  right: 0;
}

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

.header__mobile-menu-close {
  background: transparent;
  border: none;
  font-size: var(--text-xl);
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-xs);
}

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

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

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

.header__mobile-nav-link {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  transition: color var(--transition-normal);
}

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

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

.header__mobile-productivity-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.header__mobile-productivity-bar {
  height: 10px;
  background-color: var(--color-neutral-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.header__mobile-productivity-progress {
  width: 78%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.header__mobile-productivity-value {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
}

.header__mobile-cta {
  margin-bottom: var(--space-xl);
}

.header__mobile-cta-button {
  width: 100%;
  padding: var(--space-md);
}

.header__mobile-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-neutral-dark);
}

.header__mobile-footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  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;
  }
  
  .header__mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .header__cta {
    display: none;
  }
  
  .header__container {
    padding: 0 var(--space-md);
  }
  
  .header__logo {
    font-size: var(--text-lg);
  }
  
  .header__logo-icon {
    font-size: var(--text-xl);
  }
}

.main {
  overflow-x: hidden;
}

.main .hero {
  position: relative;
  padding: var(--space-4xl) 0;
  background-color: var(--color-neutral);
  overflow: hidden;
}

.main .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: 
    "text"
    "image"
    "stats";
  gap: var(--space-xl);
  position: relative;
  z-index: var(--z-above);
}

.main .hero-text {
  grid-area: text;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.main .hero h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.main .hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.main .hero-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.main .hero-cta .btn {
  padding: var(--space-sm) var(--space-xl);
  transform: scale(1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .hero-cta .btn:hover {
  transform: scale(1.05);
}

.main .hero-image-container {
  grid-area: image;
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}

.main .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  position: relative;
}

.main .hero-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80%;
  height: 80%;
  background-color: var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.15;
  transform: rotate(-3deg);
}

.main .hero-stats {
  grid-area: stats;
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.main .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main .stat-number {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.main .stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

.main .hero-accent-shape {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color-primary);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.05;
  z-index: 1;
}

.main .featured-posts {
  padding: var(--space-3xl) 0;
  background-color: white;
  position: relative;
}

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

.main .section-header h2 {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.main .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.main .section-description {
  font-size: var(--text-lg);
  color: var(--color-text-light);
}

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

.main .post-card {
  background-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%;
}

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

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

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

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

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

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

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

.main .post-card .btn {
  align-self: flex-start;
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
}

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

.main .section-cta .btn {
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--text-md);
}

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

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

.main .key-methods {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral);
  position: relative;
  overflow: hidden;
}

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

.main .method-card {
  background-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;
  overflow: hidden;
}

.main .method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

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

.main .method-card:hover::before {
  width: 10px;
}

.main .method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 94, 138, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.main .method-icon i {
  font-size: var(--icon-xl);
  color: var(--color-primary);
}

.main .method-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.main .method-card p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.main .method-benefits {
  list-style: none;
}

.main .method-benefits li {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
}

.main .method-benefits i {
  color: var(--color-accent);
  margin-right: var(--space-sm);
  font-size: var(--text-sm);
}

.main .case-studies {
  padding: var(--space-3xl) 0;
  background-color: white;
  position: relative;
}

.main .case-studies-slider {
  position: relative;
  overflow: hidden;
}

.main .case-study {
  width: 100%;
}

.main .case-study-content {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main .case-study-image-container {
  height: 250px;
  overflow: hidden;
}

.main .case-study-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .case-study-text {
  padding: var(--space-xl);
}

.main .case-study h3 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.main .case-study-industry {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.main .case-study-description {
  margin-bottom: var(--space-lg);
}

.main .case-study-results {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.main .result-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: var(--space-md);
  background-color: rgba(0, 94, 138, 0.05);
  border-radius: var(--radius-md);
}

.main .result-number {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.main .result-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-weight: 500;
}

.main .case-study-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
  gap: var(--space-sm);
}

.main .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--color-neutral-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.main .nav-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

.main .testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral);
  position: relative;
}

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

.main .testimonial-card {
  background-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;
}

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

.main .testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(0, 94, 138, 0.1);
  font-size: 40px;
}

.main .testimonial-text {
  font-size: var(--text-md);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
}

.main .testimonial-author {
  display: flex;
  align-items: center;
}

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

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

.main .author-info h4 {
  font-size: var(--text-md);
  margin-bottom: 0;
  color: var(--color-primary);
}

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

.main .how-we-work {
  padding: var(--space-3xl) 0;
  background-color: white;
  position: relative;
}

.main .process-steps {
  position: relative;
  z-index: 2;
}

.main .process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background-color: var(--color-neutral-dark);
  z-index: 1;
}

.main .process-step {
  display: flex;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.main .process-step:last-child {
  margin-bottom: 0;
}

.main .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-right: var(--space-lg);
  flex-shrink: 0;
  z-index: 2;
}

.main .step-content {
  flex-grow: 1;
}

.main .step-content h3 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.main .step-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

.main .step-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 200px;
}

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

.main .contact {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral);
  position: relative;
}

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

.main .contact-content {
  display: flex;
  flex-direction: column;
}

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

.main .contact-content p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.main .contact-benefits {
  margin-bottom: var(--space-xl);
}

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

.main .benefit-item i {
  color: var(--color-accent);
  font-size: var(--text-md);
  margin-right: var(--space-md);
}

.main .benefit-item span {
  font-size: var(--text-md);
}

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

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

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

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

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

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

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-neutral-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  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(0, 94, 138, 0.1);
  outline: none;
}

.main .form-checkbox {
  display: flex;
  align-items: center;
}

.main .form-checkbox input {
  width: auto;
  margin-right: var(--space-sm);
}

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

.main .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  width: 100%;
  font-size: var(--text-md);
  margin-top: var(--space-md);
}

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

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

.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: var(--z-toast);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.main .cookie-banner.visible {
  transform: translateY(0);
}

.main .cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.main .cookie-content p {
  margin-bottom: var(--space-md);
}

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

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

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

@media (min-width: 768px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "text image"
      "stats stats";
    align-items: center;
  }
  
  .main .hero-text {
    text-align: left;
  }
  
  .main .hero h1::after {
    left: 0;
    transform: none;
  }
  
  .main .hero-cta {
    justify-content: flex-start;
  }
  
  .main .hero-stats {
    justify-content: space-around;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .methods-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .case-study-content {
    flex-direction: row;
  }
  
  .main .case-study-image-container {
    width: 40%;
    height: auto;
  }
  
  .main .case-study-text {
    width: 60%;
  }
  
  .main .process-steps::before {
    left: 40px;
  }
  
  .main .contact-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .main .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .main .cookie-content p {
    margin-bottom: 0;
    margin-right: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .methods-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .process-steps::before {
    left: 50px;
  }
  
  .main .step-number {
    width: 80px;
    height: 80px;
    font-size: var(--text-2xl);
  }
}

.footer {
  position: relative;
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
  overflow: hidden;
}

.footer__wave-container {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 100% 100% 0 0;
  transform: translateX(-25%);
}

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

.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--space-xl);
}

.footer__brand {
  flex: 1 1 300px;
  max-width: 400px;
}

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

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

.footer__tagline {
  font-size: var(--text-md);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer__btn {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.footer__nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  flex: 1 1 300px;
}

.footer__nav-column {
  flex: 1 1 160px;
}

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

.footer__nav-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

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

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

.footer__nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: var(--space-sm);
}

.footer__nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.footer__nav-link:hover {
  color: white;
  transform: translateX(3px);
}

.footer__nav-link:hover:before {
  opacity: 1;
}

.footer__efficiency-meter {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-inner);
}

.footer__meter-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  color: white;
}

.footer__meter-container {
  margin: var(--space-md) 0;
}

.footer__meter-track {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.footer__meter-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(to right, var(--color-accent), var(--color-secondary));
  border-radius: var(--radius-full);
  transition: width 1.5s ease-in-out;
}

.footer__meter-markers {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.footer__meter-caption {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-sm);
  text-align: center;
  font-style: italic;
}

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

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__disclaimer {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.footer__disclaimer p {
  margin: 0;
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
  }
  
  .footer__main {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__nav-wrapper {
    gap: var(--space-xl);
    margin-top: var(--space-md);
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .footer__meter-markers span {
    font-size: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav-wrapper {
    gap: var(--space-xl);
  }
}

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

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

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

.privacy-page__title {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.privacy-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: italic;
}

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

.privacy-page__section-title {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.privacy-page__content p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: var(--text-base);
}

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

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

.privacy-page__contact-info {
  background-color: var(--color-neutral);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page__container {
    padding: var(--space-lg);
  }
  
  .privacy-page__title {
    font-size: var(--text-2xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-md);
  }
}

.terms-page {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  background-color: var(--color-neutral);
  font-family: var(--font-secondary);
}

.terms-page__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.terms-page__header h1 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.terms-page__last-updated {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-style: italic;
}

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

.terms-page__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-neutral-dark);
}

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

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.terms-page__section p {
  color: var(--color-text);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

.terms-page__list li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

@media (max-width: 767px) {
  .terms-page {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
  }

  .terms-page__header h1 {
    font-size: var(--text-2xl);
  }

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

  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
}

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

.cookie-page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-neutral-dark);
}

.cookie-page__subtitle {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.cookie-page__date {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cookie-page__intro {
  margin-bottom: var(--space-xl);
  font-size: var(--text-md);
  line-height: 1.6;
}

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

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

.cookie-page__list-title {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-lg) 0;
  }
  
  .cookie-page__container {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__subtitle {
    font-size: var(--text-lg);
  }
  
  .cookie-page__intro {
    font-size: var(--text-base);
  }
  
  .cookie-page__list {
    padding-left: var(--space-lg);
  }
}

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

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

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

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

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

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-size: var(--text-3xl);
}

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

.thank-page__message p {
  color: var(--color-text);
  font-size: var(--text-md);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-xl) var(--space-md);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
}

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

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

.category-page__hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
}

.category-page__hero-description {
  font-size: var(--text-lg);
  max-width: 800px;
  margin-bottom: 0;
  line-height: 1.6;
}

.category-page__posts {
  padding: var(--space-2xl) 0;
}

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

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

.post-card {
  background-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 {
  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-md) var(--space-md) var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-base);
  color: var(--color-text-light);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-card a {
  margin: 0 var(--space-md) var(--space-md);
  display: inline-block;
}

.category-page__tips {
  background-color: white;
  padding: var(--space-3xl) 0;
  margin: var(--space-2xl) 0;
}

.category-page__tips h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text);
  font-size: var(--text-3xl);
}

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

.category-page__tips-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__tips-list ol {
  counter-reset: tip-counter;
  list-style: none;
  padding: 0;
}

.category-page__tips-list li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.category-page__tips-list li:before {
  content: counter(tip-counter);
  counter-increment: tip-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-secondary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.category-page__tips-list h4 {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.category-page__tips-list p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.category-page__stats {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral);
}

.category-page__stats h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text);
  font-size: var(--text-3xl);
}

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

.category-page__stats-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.category-page__stats-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-primary);
}

.category-page__stats-card p {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: 0;
}

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

.category-page__stats-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.category-page__stats-info p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.category-page__stats-info p:last-child {
  margin-bottom: 0;
}

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

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-neutral-dark);
  background-color: white;
}

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

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

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

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

.post-page .post-hero .lead {
  font-size: var(--text-lg);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

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

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

.post-page .content-section h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: var(--space-xs);
}

.post-page .content-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.post-page .content-section p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.7;
}

.post-page .section-pomodoro {
  background-color: white;
}

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

.post-page .section-implementation {
  background-color: white;
}

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

.post-page .text-column {
  flex: 3;
}

.post-page .image-column {
  flex: 2;
}

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

.post-page .timeblocking-tips ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}

.post-page .timeblocking-tips li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.post-page .timeblocking-tips li:before {
  content: '';
  position: absolute;
  left: 0;
  top: var(--space-xs);
  width: 20px;
  height: 20px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
  opacity: 0.2;
}

.post-page .timeblocking-tips li:after {
  content: '';
  position: absolute;
  left: var(--space-xs);
  top: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.post-page .implementation-steps ol {
  counter-reset: step-counter;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-xl);
}

.post-page .implementation-steps li {
  counter-increment: step-counter;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-xl);
}

.post-page .implementation-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--text-sm);
}

.post-page .implementation-steps li strong {
  display: block;
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.post-page .implementation-steps li p {
  margin-top: 0;
}

.post-page .image-container {
  margin: var(--space-xl) 0;
  text-align: center;
}

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

.post-page .quote-box {
  background-color: var(--color-neutral);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
}

.post-page .quote-box blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.post-page .quote-box cite {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  display: block;
  text-align: right;
}

.post-page .related-posts {
  background-color: var(--color-neutral);
  padding: var(--space-3xl) 0;
}

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

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

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

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

.post-page .post-card h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.post-page .post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-page .post-card .read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-page .post-card .read-more:hover {
  color: var(--color-secondary);
}

@media (max-width: 1023px) {
  .post-page .section-content {
    flex-direction: column;
  }
  
  .post-page .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-page .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-page .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-page .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-page .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-page .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-page .implementation-steps li {
    padding-left: var(--space-lg);
  }
}

.post-digitale-werkstromen-efficiëntie {
  color: var(--color-text);
  font-family: var(--font-secondary);
  line-height: 1.6;
}

.post-digitale-werkstromen-efficiëntie .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-neutral-dark);
  background-color: white;
}

.post-digitale-werkstromen-efficiëntie .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-digitale-werkstromen-efficiëntie .breadcrumbs a:hover {
  color: var(--color-secondary);
}

.post-digitale-werkstromen-efficiëntie .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.post-digitale-werkstromen-efficiëntie .post-hero .container {
  position: relative;
  z-index: var(--z-above);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-digitale-werkstromen-efficiëntie .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 900px;
  line-height: 1.2;
}

.post-digitale-werkstromen-efficiëntie .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.post-digitale-werkstromen-efficiëntie .hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

.post-digitale-werkstromen-efficiëntie .content-section {
  padding: var(--space-4xl) 0;
}

.post-digitale-werkstromen-efficiëntie .section-light {
  background-color: white;
}

.post-digitale-werkstromen-efficiëntie .section-dark {
  background-color: var(--color-neutral);
}

.post-digitale-werkstromen-efficiëntie .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  text-align: center;
}

.post-digitale-werkstromen-efficiëntie .content-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

.post-digitale-werkstromen-efficiëntie .content-section p {
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
}

.post-digitale-werkstromen-efficiëntie .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.post-digitale-werkstromen-efficiëntie .content-text {
  padding-right: var(--space-lg);
}

.post-digitale-werkstromen-efficiëntie .content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-digitale-werkstromen-efficiëntie .content-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.post-digitale-werkstromen-efficiëntie .tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-digitale-werkstromen-efficiëntie .tool-card {
  background-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-digitale-werkstromen-efficiëntie .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-werkstromen-efficiëntie .tool-benefits {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-digitale-werkstromen-efficiëntie .tool-benefits li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.post-digitale-werkstromen-efficiëntie .tool-benefits li::before {
  content: "";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.post-digitale-werkstromen-efficiëntie .case-study {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.post-digitale-werkstromen-efficiëntie .case-study img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.post-digitale-werkstromen-efficiëntie .steps-container {
  margin: var(--space-xl) 0;
}

.post-digitale-werkstromen-efficiëntie .step {
  display: flex;
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.post-digitale-werkstromen-efficiëntie .step-number {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-right: var(--space-md);
  margin-top: var(--space-xs);
}

.post-digitale-werkstromen-efficiëntie .step-content {
  flex-grow: 1;
}

.post-digitale-werkstromen-efficiëntie .conclusion {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: rgba(0, 94, 138, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.post-digitale-werkstromen-efficiëntie .related-posts-section {
  background-color: var(--color-neutral);
  padding: var(--space-3xl) 0;
}

.post-digitale-werkstromen-efficiëntie .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

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

.post-digitale-werkstromen-efficiëntie .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-digitale-werkstromen-efficiëntie .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-digitale-werkstromen-efficiëntie .related-post-card h3 {
  padding: var(--space-md) var(--space-md) 0;
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-digitale-werkstromen-efficiëntie .related-post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-digitale-werkstromen-efficiëntie .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
  display: inline-block;
}

@media (max-width: 1023px) {
  .post-digitale-werkstromen-efficiëntie .tools-grid,
  .post-digitale-werkstromen-efficiëntie .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-digitale-werkstromen-efficiëntie .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-digitale-werkstromen-efficiëntie .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-digitale-werkstromen-efficiëntie .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-digitale-werkstromen-efficiëntie .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-digitale-werkstromen-efficiëntie .content-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-werkstromen-efficiëntie .content-text {
    padding-right: 0;
  }
  
  .post-digitale-werkstromen-efficiëntie .tools-grid,
  .post-digitale-werkstromen-efficiëntie .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-digitale-werkstromen-efficiëntie .content-section h2 {
    font-size: var(--text-2xl);
  }
}

.post-vergaderefficiëntie-nederlandse-methode {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: var(--color-neutral);
}

.post-vergaderefficiëntie-nederlandse-methode .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background-color: white;
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-vergaderefficiëntie-nederlandse-methode .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-vergaderefficiëntie-nederlandse-methode .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-vergaderefficiëntie-nederlandse-methode .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-vergaderefficiëntie-nederlandse-methode .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-vergaderefficiëntie-nederlandse-methode .post-hero .lead {
  font-size: var(--text-lg);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.post-vergaderefficiëntie-nederlandse-methode .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-vergaderefficiëntie-nederlandse-methode .content-section-light {
  background-color: white;
}

.post-vergaderefficiëntie-nederlandse-methode .content-section-dark {
  background-color: var(--color-neutral);
}

.post-vergaderefficiëntie-nederlandse-methode .content-section h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.post-vergaderefficiëntie-nederlandse-methode .content-section h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.post-vergaderefficiëntie-nederlandse-methode .content-section p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.post-vergaderefficiëntie-nederlandse-methode .content-wrapper {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-vergaderefficiëntie-nederlandse-methode .content-text {
  flex: 1;
}

.post-vergaderefficiëntie-nederlandse-methode .content-image {
  flex: 1;
}

.post-vergaderefficiëntie-nederlandse-methode .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-vergaderefficiëntie-nederlandse-methode .center-image {
  display: block;
  margin: var(--space-xl) auto;
  max-width: 800px;
}

.post-vergaderefficiëntie-nederlandse-methode .method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

.post-vergaderefficiëntie-nederlandse-methode .method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-vergaderefficiëntie-nederlandse-methode .method-card h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-vergaderefficiëntie-nederlandse-methode .method-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-vergaderefficiëntie-nederlandse-methode .method-card li {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps {
  background-color: var(--color-neutral);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps ol {
  counter-reset: steps;
  list-style: none;
  padding: 0;
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps li {
  position: relative;
  padding-left: var(--space-3xl);
  margin-bottom: var(--space-lg);
  counter-increment: steps;
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-primary);
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps strong {
  display: block;
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.post-vergaderefficiëntie-nederlandse-methode .implementation-steps p {
  margin: 0;
}

.post-vergaderefficiëntie-nederlandse-methode .expert-insight {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-vergaderefficiëntie-nederlandse-methode .expert-image {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.post-vergaderefficiëntie-nederlandse-methode .expert-quote {
  flex: 1;
}

.post-vergaderefficiëntie-nederlandse-methode .expert-quote p {
  font-style: italic;
  font-size: var(--text-md);
  position: relative;
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-accent);
}

.post-vergaderefficiëntie-nederlandse-methode .expert-name {
  font-weight: 600;
  font-style: normal;
  color: var(--color-text-light);
  text-align: right;
}

.post-vergaderefficiëntie-nederlandse-methode .related-posts-section {
  background-color: var(--color-neutral);
  padding: var(--space-4xl) 0;
}

.post-vergaderefficiëntie-nederlandse-methode .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

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

.post-vergaderefficiëntie-nederlandse-methode .related-post-card {
  background-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-vergaderefficiëntie-nederlandse-methode .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-vergaderefficiëntie-nederlandse-methode .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-vergaderefficiëntie-nederlandse-methode .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-vergaderefficiëntie-nederlandse-methode .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.post-vergaderefficiëntie-nederlandse-methode .read-more:hover {
  color: var(--color-secondary);
}

@media (max-width: 1023px) {
  .post-vergaderefficiëntie-nederlandse-methode .method-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-vergaderefficiëntie-nederlandse-methode .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .content-wrapper {
    flex-direction: column;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .method-cards {
    grid-template-columns: 1fr;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .related-posts {
    grid-template-columns: 1fr;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .expert-insight {
    flex-direction: column;
    text-align: center;
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .expert-quote p {
    padding-left: 0;
    border-left: none;
    padding-top: var(--space-md);
    border-top: 4px solid var(--color-accent);
  }
  
  .post-vergaderefficiëntie-nederlandse-methode .expert-name {
    text-align: center;
  }
}

  
  .post-hybride-werken-nederlandse-aanpak {
    background-color: var(--color-neutral);
    color: var(--color-text);
    font-family: var(--font-secondary);
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    background-color: white;
    border-bottom: 1px solid var(--color-neutral-dark);
  }
  
  .post-hybride-werken-nederlandse-aanpak .breadcrumbs a {
    color: var(--color-text-light);
    transition: color var(--transition-normal);
    text-decoration: none;
  }
  
  .post-hybride-werken-nederlandse-aanpak .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .post-hybride-werken-nederlandse-aanpak .post-hero h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }
  
  .post-hybride-werken-nederlandse-aanpak .post-hero .lead {
    font-size: var(--text-xl);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-hybride-werken-nederlandse-aanpak .light-section {
    background-color: white;
  }
  
  .post-hybride-werken-nederlandse-aanpak .dark-section {
    background-color: var(--color-primary);
    color: white;
  }
  
  .post-hybride-werken-nederlandse-aanpak .dark-section h2,
  .post-hybride-werken-nederlandse-aanpak .dark-section h3,
  .post-hybride-werken-nederlandse-aanpak .dark-section h4 {
    color: white;
  }
  
  .post-hybride-werken-nederlandse-aanpak h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-xl);
    font-weight: 700;
    text-align: center;
  }
  
  .post-hybride-werken-nederlandse-aanpak h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    font-weight: 600;
  }
  
  .post-hybride-werken-nederlandse-aanpak h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    font-weight: 600;
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .section-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-hybride-werken-nederlandse-aanpak .text-content {
    padding-right: var(--space-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
  }
  
  .post-hybride-werken-nederlandse-aanpak .image-container:hover img {
    transform: scale(1.02);
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    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-hybride-werken-nederlandse-aanpak .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .implementation-steps {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .implementation-steps h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .implementation-steps ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
  }
  
  .post-hybride-werken-nederlandse-aanpak .implementation-steps li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-sm);
  }
  
  .post-hybride-werken-nederlandse-aanpak .case-study {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow: hidden;
  }
  
  .post-hybride-werken-nederlandse-aanpak .case-study img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .challenges-solutions {
    margin-bottom: var(--space-2xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .challenge {
    background-color: var(--color-neutral);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
  }
  
  .post-hybride-werken-nederlandse-aanpak .challenge h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
  }
  
  .post-hybride-werken-nederlandse-aanpak .challenge-solution-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-neutral-dark);
  }
  
  .post-hybride-werken-nederlandse-aanpak .challenge-solution-pair:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .post-hybride-werken-nederlandse-aanpak .challenge-item {
    padding-right: var(--space-md);
  }
  
  .post-hybride-werken-nederlandse-aanpak .solution-item {
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-accent);
  }
  
  .post-hybride-werken-nederlandse-aanpak .solution-item h4 {
    color: var(--color-accent);
  }
  
  .post-hybride-werken-nederlandse-aanpak .key-takeaways h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
  }
  
  .post-hybride-werken-nederlandse-aanpak .takeaways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .takeaway-card {
    background-color: var(--color-neutral);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-hybride-werken-nederlandse-aanpak .takeaway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .takeaway-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.2;
  }
  
  .post-hybride-werken-nederlandse-aanpak .conclusion {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
    margin-top: var(--space-2xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .conclusion img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  
  .post-hybride-werken-nederlandse-aanpak .related-posts-section {
    background-color: var(--color-neutral);
    padding: var(--space-3xl) 0;
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-post-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .card-content {
    padding: var(--space-lg);
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-post-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-post-card h3 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
  }
  
  .post-hybride-werken-nederlandse-aanpak .related-post-card h3 a:hover {
    color: var(--color-secondary);
  }
  
  .post-hybride-werken-nederlandse-aanpak .read-more {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--color-secondary);
    font-weight: 500;
    transition: color var(--transition-normal);
    text-decoration: none;
  }
  
  .post-hybride-werken-nederlandse-aanpak .read-more:hover {
    color: var(--color-accent);
  }
  
  
  @media (max-width: 1023px) {
    .post-hybride-werken-nederlandse-aanpak .section-content,
    .post-hybride-werken-nederlandse-aanpak .feature-cards,
    .post-hybride-werken-nederlandse-aanpak .case-study,
    .post-hybride-werken-nederlandse-aanpak .challenge-solution-pair,
    .post-hybride-werken-nederlandse-aanpak .takeaways-grid,
    .post-hybride-werken-nederlandse-aanpak .conclusion,
    .post-hybride-werken-nederlandse-aanpak .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-hybride-werken-nederlandse-aanpak .text-content {
      padding-right: 0;
    }
    
    .post-hybride-werken-nederlandse-aanpak .solution-item {
      padding-left: var(--space-md);
      border-left: 3px solid var(--color-accent);
      margin-top: var(--space-md);
    }
    
    .post-hybride-werken-nederlandse-aanpak .takeaways-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-hybride-werken-nederlandse-aanpak .post-hero {
      padding: var(--space-2xl) 0;
    }
    
    .post-hybride-werken-nederlandse-aanpak .post-hero h1 {
      font-size: var(--text-2xl);
    }
    
    .post-hybride-werken-nederlandse-aanpak .post-hero .lead {
      font-size: var(--text-md);
    }
    
    .post-hybride-werken-nederlandse-aanpak .content-section {
      padding: var(--space-xl) 0;
    }
    
    .post-hybride-werken-nederlandse-aanpak h2 {
      font-size: var(--text-2xl);
    }
    
    .post-hybride-werken-nederlandse-aanpak .takeaways-grid {
      grid-template-columns: 1fr;
    }
    
    .post-hybride-werken-nederlandse-aanpak .related-posts-grid {
      grid-template-columns: 1fr;
    }
  }

.post-werkplek-welzijn-prestaties {
  font-family: var(--font-secondary);
  color: var(--color-text);
  line-height: 1.6;
}

.post-werkplek-welzijn-prestaties .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-neutral-dark);
}

.post-werkplek-welzijn-prestaties .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-werkplek-welzijn-prestaties .breadcrumbs a:hover {
  color: var(--color-primary);
}

.post-werkplek-welzijn-prestaties .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-werkplek-welzijn-prestaties .post-hero h1 {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  line-height: 1.2;
}

.post-werkplek-welzijn-prestaties .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.5;
}

.post-werkplek-welzijn-prestaties .content-section {
  padding: var(--space-3xl) 0;
}

.post-werkplek-welzijn-prestaties .light-section {
  background-color: white;
}

.post-werkplek-welzijn-prestaties .dark-section {
  background-color: var(--color-neutral);
}

.post-werkplek-welzijn-prestaties .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  position: relative;
  padding-bottom: var(--space-sm);
}

.post-werkplek-welzijn-prestaties .content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

.post-werkplek-welzijn-prestaties .content-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.post-werkplek-welzijn-prestaties .content-section p {
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
  line-height: 1.7;
}

.post-werkplek-welzijn-prestaties .section-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-werkplek-welzijn-prestaties .text-content {
  flex: 1;
}

.post-werkplek-welzijn-prestaties .image-container {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-werkplek-welzijn-prestaties .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.post-werkplek-welzijn-prestaties .image-container:hover img {
  transform: scale(1.03);
}

.post-werkplek-welzijn-prestaties .strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

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

.post-werkplek-welzijn-prestaties .strategy-list {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
}

.post-werkplek-welzijn-prestaties .strategy-list li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.post-werkplek-welzijn-prestaties .strategy-list li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.post-werkplek-welzijn-prestaties .case-study {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-werkplek-welzijn-prestaties .case-study img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

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

.post-werkplek-welzijn-prestaties .step {
  display: flex;
  margin-bottom: var(--space-xl);
  gap: var(--space-md);
}

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

.post-werkplek-welzijn-prestaties .step-content {
  flex: 1;
}

.post-werkplek-welzijn-prestaties .conclusion {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-neutral);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.post-werkplek-welzijn-prestaties .conclusion img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.post-werkplek-welzijn-prestaties .related-posts-section {
  background-color: var(--color-neutral);
  padding: var(--space-3xl) 0;
}

.post-werkplek-welzijn-prestaties .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-primary);
}

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

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

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

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

.post-werkplek-welzijn-prestaties .related-post-card h3 {
  font-size: var(--text-lg);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  color: var(--color-text);
}

.post-werkplek-welzijn-prestaties .related-post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.post-werkplek-welzijn-prestaties .read-more {
  display: inline-block;
  margin: var(--space-xs) var(--space-md) var(--space-md);
  color: var(--color-primary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.post-werkplek-welzijn-prestaties .read-more:hover {
  color: var(--color-secondary);
}

@media (max-width: 1023px) {
  .post-werkplek-welzijn-prestaties .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-werkplek-welzijn-prestaties .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-werkplek-welzijn-prestaties .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-werkplek-welzijn-prestaties .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-werkplek-welzijn-prestaties .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-werkplek-welzijn-prestaties .section-content {
    flex-direction: column;
  }
  
  .post-werkplek-welzijn-prestaties .strategies-grid {
    grid-template-columns: 1fr;
  }
  
  .post-werkplek-welzijn-prestaties .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-werkplek-welzijn-prestaties .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-werkplek-welzijn-prestaties .content-section {
    padding: var(--space-xl) 0;
  }
}

.privacy-page {
  padding: var(--space-2xl) 0;
  background-color: var(--color-neutral);
}

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

.privacy-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  font-weight: 700;
  text-align: center;
}

.privacy-page__updated {
  text-align: right;
  margin-bottom: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: italic;
}

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

.privacy-page__section-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-neutral-dark);
}

.privacy-page__text {
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
}

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

.privacy-page__list-item {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

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

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

.privacy-page__contact-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-xl) 0;
  }
  
  .privacy-page__container {
    padding: var(--space-lg);
  }
  
  .privacy-page__title {
    font-size: var(--text-2xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

.terms-page {
  padding: var(--space-2xl) 0;
  background-color: var(--color-neutral);
}

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

.terms-page__title {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.terms-page__last-updated {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-style: italic;
}

.terms-page__content {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.terms-page__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-neutral-dark);
}

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

.terms-page__section-title {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.terms-page p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.7;
  font-size: var(--text-base);
}

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

.terms-page__list li {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-xl) 0;
  }
  
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page__title {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-md);
  }
}

.cookie-page {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2xl) var(--space-xl);
  margin: var(--space-2xl) auto;
}

.cookie-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-neutral-dark);
  padding-bottom: var(--space-md);
}

.cookie-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

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

.cookie-page__section-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.cookie-page__subsection {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
}

.cookie-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.cookie-page__intro {
  font-size: var(--text-md);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.cookie-page p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--color-text);
  font-family: var(--font-secondary);
}

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

.cookie-page__list li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  color: var(--color-text);
  font-family: var(--font-secondary);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) var(--space-md);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-base);
  }
  
  .cookie-page__intro {
    font-size: var(--text-base);
  }
}

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

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

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

.thank-page__icon {
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

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

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

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

.thank-page__text {
  color: var(--color-text);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

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

.thank-page__note {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-lg);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__text {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--space-4xl) var(--space-md);
    background-color: var(--color-neutral);
  }
  
  .error-404__container {
    width: 100%;
  }
  
  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .error-404__title {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    line-height: 1;
    position: relative;
    padding-bottom: var(--space-lg);
  }
  
  .error-404__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 80px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
  }
  
  .error-404__message {
    margin-bottom: var(--space-2xl);
  }
  
  .error-404__message h2 {
    font-size: var(--text-2xl);
    color: var(--color-text);
    margin-bottom: var(--space-md);
  }
  
  .error-404__message p {
    font-size: var(--text-md);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
  }
  
  .error-404__button {
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .error-404__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  
  
  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-3xl) var(--space-md);
    }
    
    .error-404__title {
      font-size: var(--text-4xl);
      margin-bottom: var(--space-lg);
    }
    
    .error-404__message h2 {
      font-size: var(--text-xl);
    }
    
    .error-404__message p {
      font-size: var(--text-base);
    }
    
    .error-404__button {
      padding: var(--space-sm) var(--space-lg);
    }
  }
