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

:root {
  /* Colors */
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #e0e7ff;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-danger: #ef4444;
  
  /* Backgrounds */
  --bg-light: #ffffff;
  --bg-light-gray: #f8fafc;
  --bg-medium: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  
  /* Text Colors */
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-white-secondary: #e2e8f0;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-size-h1: 3.75rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.875rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
  
  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Icon Sizes */
  --icon-size-sm: 1.5rem;
  --icon-size-md: 2rem;
  --icon-size-lg: 3rem;
  --icon-size-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--font-size-h4);
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--text-medium);
}

a {
  text-decoration: none;
  transition: color var(--transition-base), 
              background-color var(--transition-base),
              transform var(--transition-base);
}

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

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2rem;
  font-size: var(--font-size-body);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

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

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

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

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

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

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

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

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

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-small);
}

@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-small);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  h5 {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 0.9375rem;
  }
}

/* Sections Base */
section {
  overflow: hidden;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
}

.card-icon i {
  font-size: var(--icon-size-md);
  color: var(--color-primary);
}

.card h4 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

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

@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
  
  .card-icon {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

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

/* Flex Utilities */
.flex {
  display: flex;
}

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

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

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

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

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

/* Text Utilities */
.text-center {
  text-align: center;
}

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

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

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

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

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

.text-small {
  font-size: var(--font-size-small);
}

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

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

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: var(--font-size-small);
  font-weight: 600;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

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

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

/* Icons */
i {
  display: inline-block;
}

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

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

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

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

/* Spacing Utilities */
.mt-sm {
  margin-top: var(--space-sm);
}

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

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

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

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

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

.pt-lg {
  padding-top: var(--space-lg);
}

.pb-lg {
  padding-bottom: var(--space-lg);
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--bg-medium);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--text-dark);
  transition: border-color var(--transition-base);
}

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

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

.form-submit-btn {
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

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

@media (max-width: 768px) {
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px;
  }
}

/* Lists */
.list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.list-item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  margin-top: 2px;
}

.list-item-icon i {
  font-size: 0.875rem;
}

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

.list-item-content h5 {
  color: var(--text-dark);
  margin: 0;
}

.list-item-content p {
  color: var(--text-medium);
  margin: 0;
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--bg-medium);
  margin: var(--space-lg) 0;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* Font Awesome 7.0.0 loaded via CDN */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600;700&display=swap');

  /* ========== Header Navigation ========== */
  .header-cognition-hub {
    background-color: var(--bg-dark);
    position: static;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cognition-hub-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  /* ========== Logo/Brand ========== */
  .header-cognition-hub-logo {
    flex-shrink: 0;
  }

  .header-cognition-hub-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    transition: color var(--transition-base);
  }

  .header-cognition-hub-brand i {
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  .header-cognition-hub-brand:hover {
    color: var(--color-primary);
  }

  .header-cognition-hub-brand:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* ========== Desktop Navigation ========== */
  .header-cognition-hub-desktop-nav {
    display: none;
    flex-direction: row;
    gap: var(--space-lg);
    margin: 0 var(--space-xl);
    flex-grow: 1;
  }

  .header-cognition-hub-nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-white-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
    white-space: nowrap;
  }

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

  .header-cognition-hub-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-cognition-hub-nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
  }

  /* ========== CTA Button (Desktop) ========== */
  .header-cognition-hub-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: #000000;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
  }

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

  .header-cognition-hub-cta-button:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 4px;
  }

  .header-cognition-hub-cta-button:active {
    transform: translateY(0);
  }

  /* ========== Mobile Toggle Button ========== */
  .header-cognition-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--transition-base);
  }

  .header-cognition-hub-mobile-toggle:hover {
    opacity: 0.7;
  }

  .header-cognition-hub-mobile-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .header-cognition-hub-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
  }

  .header-cognition-hub-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .header-cognition-hub-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .header-cognition-hub-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* ========== Mobile Menu ========== */
  .header-cognition-hub-mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-darker);
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
  }

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

  .header-cognition-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--space-lg);
  }

  .header-cognition-hub-mobile-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
  }

  .header-cognition-hub-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-cognition-hub-mobile-close:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .header-cognition-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: auto;
  }

  .header-cognition-hub-mobile-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white-secondary);
    text-decoration: none;
    padding: var(--space-sm);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    display: block;
  }

  .header-cognition-hub-mobile-link:hover {
    color: var(--color-primary);
    background-color: rgba(99, 102, 241, 0.1);
  }

  .header-cognition-hub-mobile-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
  }

  .header-cognition-hub-mobile-cta {
    padding: 1rem;
    background-color: var(--color-primary);
    color: #000000;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
  }

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

  .header-cognition-hub-mobile-cta:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 4px;
  }

  /* ========== Tablet (768px+) ========== */
  @media (min-width: 768px) {
    .header-cognition-hub-container {
      padding: 0 var(--space-lg);
      height: 75px;
    }

    .header-cognition-hub-desktop-nav {
      display: flex;
    }

    .header-cognition-hub-cta-button {
      display: block;
    }

    .header-cognition-hub-mobile-toggle {
      display: none;
    }

    .header-cognition-hub-mobile-menu {
      display: none !important;
    }

    .header-cognition-hub-brand {
      font-size: 1.75rem;
    }

    .header-cognition-hub-brand i {
      font-size: 2rem;
    }

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

    .header-cognition-hub-cta-button {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }
  }

  /* ========== Desktop (1024px+) ========== */
  @media (min-width: 1024px) {
    .header-cognition-hub-container {
      height: 80px;
      gap: var(--space-xl);
    }

    .header-cognition-hub-brand {
      font-size: 1.875rem;
    }

    .header-cognition-hub-brand i {
      font-size: 2.25rem;
    }

    .header-cognition-hub-nav-link {
      font-size: 1.05rem;
    }

    .header-cognition-hub-cta-button {
      padding: 1rem 2.5rem;
      font-size: 1.05rem;
    }
  }

  /* ========== Reduced Motion ========== */
  @media (prefers-reduced-motion: reduce) {
    .header-cognition-hub-brand,
    .header-cognition-hub-nav-link,
    .header-cognition-hub-cta-button,
    .header-cognition-hub-mobile-toggle,
    .header-cognition-hub-mobile-menu,
    .header-cognition-hub-mobile-link,
    .header-cognition-hub-mobile-cta {
      transition: none;
    }

    .header-cognition-hub-mobile-toggle span {
      transition: none;
    }
  }

    /* Cognitive Hub Main Styles */
  .cognitive-hub {
    width: 100%;
  }

  /* ===== Hero Section ===== */
  .cognitive-hub .hero-section {
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0;
    position: relative;
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (max-width: 1024px) {
    .cognitive-hub .hero-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .cognitive-hub .hero-text h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 3.75rem;
    line-height: 1.1;
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-text h1 {
      font-size: 2.25rem;
    }
  }

  .cognitive-hub .hero-subtitle {
    color: #e2e8f0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .cognitive-hub .hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-ctas {
      flex-direction: column;
      gap: 1rem;
    }
  }

  .cognitive-hub .hero-ctas .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cognitive-hub .hero-ctas .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .cognitive-hub .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  .cognitive-hub .stat-item {
    display: flex;
    flex-direction: column;
  }

  .cognitive-hub .stat-number {
    color: #6366f1;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .stat-number {
      font-size: 1.5rem;
    }
  }

  .cognitive-hub .stat-label {
    color: #cbd5e1;
    font-size: 0.875rem;
  }

  .cognitive-hub .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .cognitive-hub .hero-image {
      height: 300px;
    }
  }

  /* ===== Featured Posts Section ===== */
  .cognitive-hub .featured-section {
    overflow: hidden;
    background-color: #ffffff;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .featured-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .featured-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .featured-header {
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .featured-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .cognitive-hub .featured-header p {
    color: #64748b;
    font-size: 1.125rem;
  }

  .cognitive-hub .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .posts-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .post-card {
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .cognitive-hub .post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .cognitive-hub .post-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
  }

  .cognitive-hub .post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cognitive-hub .post-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  @media (max-width: 768px) {
    .cognitive-hub .post-info {
      padding: 1rem;
    }
  }

  .cognitive-hub .post-card h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .post-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
  }

  .cognitive-hub .post-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .cognitive-hub .featured-footer {
    text-align: center;
  }

  /* ===== Benefits Section ===== */
  .cognitive-hub .benefits-section {
    overflow: hidden;
    background-color: #f8fafc;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .benefits-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .benefits-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .benefits-header {
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .benefits-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .cognitive-hub .benefits-header p {
    color: #64748b;
    font-size: 1.125rem;
  }

  .cognitive-hub .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .cognitive-hub .benefit-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #6366f1;
  }

  @media (max-width: 768px) {
    .cognitive-hub .benefit-card {
      padding: 1.5rem;
    }
  }

  .cognitive-hub .benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
  }

  .cognitive-hub .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #e0e7ff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .cognitive-hub .benefit-icon i {
    font-size: 1.5rem;
    color: #6366f1;
  }

  .cognitive-hub .benefit-card h4 {
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .benefit-card h4 {
      font-size: 1.125rem;
    }
  }

  .cognitive-hub .benefit-card p {
    color: #64748b;
    margin: 0;
  }

  /* ===== How It Works Section ===== */
  .cognitive-hub .how-works-section {
    overflow: hidden;
    background-color: #ffffff;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .how-works-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .how-works-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .how-works-header {
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .how-works-header h2 {
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .cognitive-hub .how-works-header p {
    color: #64748b;
    font-size: 1.125rem;
  }

  .cognitive-hub .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .cognitive-hub .steps-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .cognitive-hub .step-item {
    text-align: center;
    padding: 2rem 1.5rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .step-item {
      padding: 1.5rem 1rem;
    }
  }

  .cognitive-hub .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .step-number {
      width: 3rem;
      height: 3rem;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
  }

  .cognitive-hub .step-item h4 {
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .step-item h4 {
      font-size: 1.125rem;
    }
  }

  .cognitive-hub .step-item p {
    color: #64748b;
  }

  .cognitive-hub .step-divider {
    display: none;
  }

  @media (min-width: 1024px) {
    .cognitive-hub .steps-container {
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    }

    .cognitive-hub .step-divider {
      display: block;
      width: 2px;
      height: 60px;
      background: linear-gradient(180deg, transparent, #6366f1, transparent);
    }
  }

  .cognitive-hub .how-works-cta {
    text-align: center;
  }

  /* ===== Science Section ===== */
  .cognitive-hub .science-section {
    overflow: hidden;
    background-color: #0f172a;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .science-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (max-width: 1024px) {
    .cognitive-hub .science-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .cognitive-hub .science-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
  }

  .cognitive-hub .science-text p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
  }

  .cognitive-hub .science-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .cognitive-hub .science-point {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .cognitive-hub .science-point i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .cognitive-hub .science-point p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
  }

  .cognitive-hub .science-point strong {
    color: #ffffff;
  }

  .cognitive-hub .science-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  @media (max-width: 768px) {
    .cognitive-hub .science-image {
      height: 300px;
    }
  }

  /* ===== Testimonials Section ===== */
  .cognitive-hub .testimonials-section {
    overflow: hidden;
    background-color: #ffffff;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .testimonials-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .testimonials-content {
    text-align: center;
  }

  .cognitive-hub .testimonials-content h2 {
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  .cognitive-hub .testimonials-content > p {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .testimonials-content > p {
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .cognitive-hub .testimonial-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 768px) {
    .cognitive-hub .testimonial-card {
      padding: 1.5rem;
    }
  }

  .cognitive-hub .testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }

  .cognitive-hub .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
  }

  .cognitive-hub .testimonial-stars i {
    color: #f59e0b;
    font-size: 1rem;
  }

  .cognitive-hub .testimonial-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .cognitive-hub .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
  }

  .cognitive-hub .author-avatar {
    flex-shrink: 0;
  }

  .cognitive-hub .author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .cognitive-hub .author-info {
    text-align: left;
  }

  .cognitive-hub .author-name {
    color: #0f172a;
    font-weight: 600;
    margin: 0;
    font-size: 0.9375rem;
  }

  .cognitive-hub .author-title {
    color: #64748b;
    margin: 0;
    font-size: 0.8125rem;
  }

  /* ===== FAQ Section ===== */
  .cognitive-hub .faq-section {
    overflow: hidden;
    background-color: #f8fafc;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .faq-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .faq-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .cognitive-hub .faq-content h2 {
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .cognitive-hub .faq-content > p {
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .faq-content > p {
      margin-bottom: 2rem;
    }
  }

  .cognitive-hub .faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cognitive-hub .faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .cognitive-hub .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .cognitive-hub .faq-question {
      padding: 1.25rem;
    }
  }

  .cognitive-hub .faq-question:hover {
    background-color: #f8fafc;
  }

  .cognitive-hub .faq-question h4 {
    color: #0f172a;
    margin: 0;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .faq-question h4 {
      font-size: 1rem;
    }
  }

  .cognitive-hub .faq-question i {
    color: #6366f1;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .cognitive-hub .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .cognitive-hub .faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    background-color: #f8fafc;
  }

  @media (max-width: 768px) {
    .cognitive-hub .faq-answer {
      padding: 0 1.25rem 1.25rem;
    }
  }

  .cognitive-hub .faq-item.active .faq-answer {
    display: block;
  }

  .cognitive-hub .faq-answer p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
  }

  /* ===== CTA Section ===== */
  .cognitive-hub .cta-section {
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .cta-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .cta-content {
    text-align: center;
  }

  .cognitive-hub .cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .cognitive-hub .cta-content > p {
    color: #e2e8f0;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .cta-content > p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .cognitive-hub .cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .cognitive-hub .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  }

  .cognitive-hub .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
  }

  @media (max-width: 768px) {
    .cognitive-hub .btn-large {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .cognitive-hub .cta-section .btn-primary {
    background-color: #ffffff;
    color: #6366f1;
  }

  .cognitive-hub .cta-section .btn-primary:hover {
    background-color: #f8f9fa;
  }

  .cognitive-hub .cta-section .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
  }

  .cognitive-hub .cta-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  /* ===== Contact Section ===== */
  .cognitive-hub .contact-section {
    overflow: hidden;
    background-color: #ffffff;
    padding: 6rem 0;
  }

  @media (max-width: 768px) {
    .cognitive-hub .contact-section {
      padding: 4rem 0;
    }
  }

  .cognitive-hub .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  @media (max-width: 1024px) {
    .cognitive-hub .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .cognitive-hub .contact-info h2 {
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .cognitive-hub .contact-info > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .cognitive-hub .contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cognitive-hub .contact-benefit {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .cognitive-hub .contact-benefit i {
    color: #6366f1;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .cognitive-hub .contact-benefit h5 {
    color: #0f172a;
    margin: 0 0 0.25rem 0;
  }

  .cognitive-hub .contact-benefit p {
    color: #64748b;
    margin: 0;
  }

  .cognitive-hub .contact-form {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  @media (max-width: 768px) {
    .cognitive-hub .contact-form {
      padding: 1.5rem;
    }
  }

  .cognitive-hub .contact-form .form-input,
  .cognitive-hub .contact-form .form-textarea {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
  }

  .cognitive-hub .contact-form .form-input:focus,
  .cognitive-hub .contact-form .form-textarea:focus {
    border-color: #6366f1;
    background-color: #ffffff;
  }

  .cognitive-hub .contact-form .form-label {
    color: #0f172a;
  }

  .cognitive-hub .form-privacy {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .cognitive-hub .form-privacy p {
    color: #64748b;
    margin: 0;
    font-size: 0.875rem;
  }

  .cognitive-hub .form-privacy a {
    color: #6366f1;
    font-weight: 600;
  }

  .cognitive-hub .form-privacy a:hover {
    text-decoration: underline;
  }

  .cognitive-hub .form-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  }

  .cognitive-hub .form-submit-btn:hover {
    background-color: #4f46e5;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
  }

  .cognitive-hub .form-submit-btn:active {
    transform: translateY(0);
  }

  /* ===== Cookie Banner ===== */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f172a;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideUp 0.3s ease;
  }

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

  .cookie-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
  }

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

  .cookie-text h5 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
  }

  .cookie-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.875rem;
  }

  .cookie-actions {
    display: flex;
    gap: 1rem;
  }

  @media (max-width: 768px) {
    .cookie-actions {
      width: 100%;
    }
  }

  .cookie-decline,
  .cookie-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
  }

  @media (max-width: 768px) {
    .cookie-decline,
    .cookie-accept {
      flex: 1;
    }
  }

  .cookie-decline {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #64748b;
  }

  .cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .cookie-accept {
    background-color: #6366f1;
    color: #ffffff;
  }

  .cookie-accept:hover {
    background-color: #4f46e5;
  }

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

    /* Footer Component Styles */
  .footer {
    background-color: var(--bg-darker);
    padding: 3rem 0;
    overflow: hidden;
  }

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

  .footer-content {
    display: block;
  }

  /* About Section */
  .footer-about {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
  }

  .footer-about-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-white-secondary);
    line-height: 1.6;
    max-width: 400px;
  }

  /* Navigation Section */
  .footer-nav {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-white-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    width: fit-content;
  }

  .footer-nav-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
  }

  .footer-nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* Legal Section */
  .footer-legal {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-legal-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-white-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    width: fit-content;
  }

  .footer-legal-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }

  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* Copyright Section */
  .footer-copyright {
    display: block;
    padding-top: 1.5rem;
    text-align: center;
  }

  .footer-copyright-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
  }

  /* Tablet Responsive */
  @media (min-width: 768px) {
    .footer {
      padding: 5rem 0;
    }

    .footer-about {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }

    .footer-about-title {
      font-size: 1.875rem;
      margin-bottom: 1rem;
    }

    .footer-about-text {
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    .footer-nav {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }

    .footer-nav-title {
      font-size: 1.125rem;
      margin-bottom: 1.25rem;
    }

    .footer-nav-list {
      gap: 1rem;
    }

    .footer-nav-link {
      font-size: 0.9375rem;
    }

    .footer-legal {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }

    .footer-legal-title {
      font-size: 1.125rem;
      margin-bottom: 1.25rem;
    }

    .footer-legal-list {
      gap: 1rem;
    }

    .footer-legal-link {
      font-size: 0.9375rem;
    }

    .footer-copyright {
      padding-top: 2rem;
    }

    .footer-copyright-text {
      font-size: 0.8125rem;
    }
  }

  /* Desktop Responsive */
  @media (min-width: 1024px) {
    .footer {
      padding: 6rem 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      align-items: start;
    }

    .footer-about {
      grid-column: 1;
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .footer-about-title {
      font-size: 2rem;
      margin-bottom: 1.25rem;
    }

    .footer-about-text {
      font-size: 1rem;
      line-height: 1.8;
    }

    .footer-nav {
      grid-column: 2;
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .footer-nav-title {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

    .footer-nav-list {
      gap: 1.25rem;
    }

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

    .footer-legal {
      grid-column: 3;
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .footer-legal-title {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

    .footer-legal-list {
      gap: 1.25rem;
    }

    .footer-legal-link {
      font-size: 1rem;
    }

    .footer-copyright {
      grid-column: 4;
      padding-top: 0;
      text-align: right;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .footer-copyright-text {
      font-size: 0.875rem;
    }
  }

  /* Extra Large Screens */
  @media (min-width: 1440px) {
    .footer .container {
      padding: 0 2rem;
    }

    .footer-content {
      gap: 4rem;
    }
  }
    

/* Category Page Styles */
/* Brain Training Memory Category - Complete CSS */

/* Hero Section */
.category-hero-brain-training-memory {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .category-hero-brain-training-memory {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .category-hero-brain-training-memory {
    padding: 8rem 0;
  }
}

.hero-content-brain-training-memory {
  text-align: center;
}

.category-hero-brain-training-memory h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .category-hero-brain-training-memory h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-hero-brain-training-memory h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.category-hero-brain-training-memory p {
  color: #e0e7ff;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .category-hero-brain-training-memory p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .category-hero-brain-training-memory p {
    font-size: 1.1rem;
  }
}

/* Posts Grid Section */
.posts-grid-section-brain-training-memory {
  background-color: #f8fafc;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .posts-grid-section-brain-training-memory {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-brain-training-memory {
    padding: 6rem 0;
  }
}

.posts-grid-brain-training-memory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .posts-grid-brain-training-memory {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-brain-training-memory {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Post Card Styling */
.card-brain-training-memory {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-brain-training-memory {
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .card-brain-training-memory {
    padding: 2rem;
  }
}

.card-brain-training-memory:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.card-brain-training-memory img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  display: block;
}

@media (min-width: 1024px) {
  .card-brain-training-memory img {
    margin-bottom: 1.5rem;
  }
}

.card-brain-training-memory h3 {
  color: #1e293b;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card-brain-training-memory h3 {
    font-size: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .card-brain-training-memory h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.card-brain-training-memory p {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-brain-training-memory p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-brain-training-memory p {
    font-size: 1rem;
  }
}

.card-brain-training-memory a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #667eea;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

@media (min-width: 768px) {
  .card-brain-training-memory a {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .card-brain-training-memory a {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}

.card-brain-training-memory a:hover {
  background-color: #764ba2;
  transform: translateX(2px);
}

/* Tips Section */
.tips-section-brain-training-memory {
  background-color: #ffffff;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .tips-section-brain-training-memory {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .tips-section-brain-training-memory {
    padding: 6rem 0;
  }
}

.tips-content-brain-training-memory {
  width: 100%;
}

.tips-section-brain-training-memory h2 {
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .tips-section-brain-training-memory h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .tips-section-brain-training-memory h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

.tips-list-brain-training-memory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tips-list-brain-training-memory {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .tips-list-brain-training-memory {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.tip-item-brain-training-memory {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-icon-brain-training-memory {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #e0e7ff;
  border-radius: 10px;
  flex-shrink: 0;
}

.tip-icon-brain-training-memory i {
  font-size: 1.5rem;
  color: #667eea;
}

.tip-text-brain-training-memory h4 {
  color: #1e293b;
  font-size: 1.1rem;
  margin: 0;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .tip-text-brain-training-memory h4 {
    font-size: 1.2rem;
  }
}

.tip-text-brain-training-memory p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .tip-text-brain-training-memory p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .tip-text-brain-training-memory p {
    font-size: 1rem;
  }
}

/* Research Section */
.research-section-brain-training-memory {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .research-section-brain-training-memory {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .research-section-brain-training-memory {
    padding: 6rem 0;
  }
}

.research-content-brain-training-memory {
  width: 100%;
}

.research-section-brain-training-memory h2 {
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .research-section-brain-training-memory h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .research-section-brain-training-memory h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

.research-grid-brain-training-memory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .research-grid-brain-training-memory {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .research-grid-brain-training-memory {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.research-item-brain-training-memory {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .research-item-brain-training-memory {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .research-item-brain-training-memory {
    padding: 2.25rem;
  }
}

.research-item-brain-training-memory h4 {
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .research-item-brain-training-memory h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .research-item-brain-training-memory h4 {
    font-size: 1.35rem;
  }
}

.research-item-brain-training-memory p {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .research-item-brain-training-memory p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .research-item-brain-training-memory p {
    font-size: 1rem;
  }
}

/* Container */
.category-page-brain-training-memory .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1440px) {
  .category-page-brain-training-memory .container {
    padding: 0 2rem;
  }
}

/* Post Page 1 Styles */
/* Post: Memory Techniques Guide - Complete Isolation */
    
    .post-memory-techniques-guide {
      width: 100%;
    }

    /* ============================================
       BREADCRUMBS
       ============================================ */
    .memory-techniques-guide-breadcrumbs {
      background-color: var(--bg-light-gray);
      padding: 1rem 0;
      overflow: hidden;
    }

    .memory-techniques-guide-breadcrumbs .container {
      padding: 0 var(--space-lg);
    }

    .memory-techniques-guide-breadcrumbs nav {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      font-size: var(--font-size-small);
      color: var(--text-medium);
    }

    .memory-techniques-guide-breadcrumbs a {
      color: var(--color-primary);
      font-weight: 500;
      transition: color var(--transition-base);
    }

    .memory-techniques-guide-breadcrumbs a:hover {
      color: var(--color-primary-dark);
    }

    .memory-techniques-guide-breadcrumbs span {
      color: var(--text-dark);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-breadcrumbs nav {
        font-size: 0.8125rem;
        gap: 0.5rem;
      }
    }

    /* ============================================
       HERO SECTION
       ============================================ */
    .memory-techniques-guide-hero {
      background-color: var(--bg-dark);
      background-image: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f3a 100%);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .memory-techniques-guide-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background-color: rgba(99, 102, 241, 0.05);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .memory-techniques-guide-hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    .memory-techniques-guide-hero h1 {
      color: var(--text-white);
      font-size: var(--font-size-h1);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .memory-techniques-guide-lead {
      color: var(--text-white-secondary);
      font-size: 1.25rem;
      line-height: 1.7;
      font-weight: 400;
    }

    .memory-techniques-guide-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: var(--font-size-small);
      color: var(--text-white-secondary);
    }

    .memory-techniques-guide-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .memory-techniques-guide-meta-item i {
      color: var(--color-primary);
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-hero {
        padding: 3rem 0;
      }

      .memory-techniques-guide-hero h1 {
        font-size: 2.25rem;
      }

      .memory-techniques-guide-lead {
        font-size: 1.0625rem;
      }

      .memory-techniques-guide-meta {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
      }

      .memory-techniques-guide-hero::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -20%;
      }
    }

    /* ============================================
       CONTENT SECTION 1
       ============================================ */
    .memory-techniques-guide-section-1 {
      background-color: var(--bg-light);
      padding: 6rem 0;
      overflow: hidden;
    }

    .memory-techniques-guide-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .memory-techniques-guide-section-1 h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
      margin-bottom: 1rem;
    }

    .memory-techniques-guide-section-1 p {
      color: var(--text-medium);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .memory-techniques-guide-section-1 strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-section-1 {
        padding: 3rem 0;
      }

      .memory-techniques-guide-section-1 h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-section-1 p {
        font-size: 0.9375rem;
      }
    }

    /* ============================================
       CONTENT SECTION 2
       ============================================ */
    .memory-techniques-guide-section-2 {
      background-color: var(--bg-light-gray);
      padding: 6rem 0;
      overflow: hidden;
    }

    .memory-techniques-guide-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .memory-techniques-guide-section-2 h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
    }

    .memory-techniques-guide-techniques-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .memory-techniques-guide-technique-card {
      background-color: var(--bg-light);
      border-radius: var(--border-radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all var(--transition-base);
      border-left: 4px solid var(--color-primary);
    }

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

    .memory-techniques-guide-technique-card h4 {
      color: var(--text-dark);
      font-size: 1.25rem;
      margin: 0;
    }

    .memory-techniques-guide-technique-card p {
      color: var(--text-medium);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    .memory-techniques-guide-technique-icon {
      width: 48px;
      height: 48px;
      background-color: var(--color-primary-light);
      border-radius: var(--border-radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-section-2 {
        padding: 3rem 0;
      }

      .memory-techniques-guide-section-2 h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-techniques-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .memory-techniques-guide-technique-card {
        padding: 1.5rem;
      }
    }

    /* ============================================
       CONTENT SECTION 3
       ============================================ */
    .memory-techniques-guide-section-3 {
      background-color: var(--bg-light);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .memory-techniques-guide-section-3::before {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -50px;
      width: 400px;
      height: 400px;
      background-color: rgba(16, 185, 129, 0.03);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .memory-techniques-guide-section-3-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .memory-techniques-guide-section-3 h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
      margin-bottom: 1rem;
    }

    .memory-techniques-guide-steps-list {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .memory-techniques-guide-step-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .memory-techniques-guide-step-number {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background-color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-white);
      font-size: 1.5rem;
      font-weight: 700;
    }

    .memory-techniques-guide-step-content {
      flex: 1;
      padding-top: 0.5rem;
    }

    .memory-techniques-guide-step-content h4 {
      color: var(--text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .memory-techniques-guide-step-content p {
      color: var(--text-medium);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-section-3 {
        padding: 3rem 0;
      }

      .memory-techniques-guide-section-3 h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-step-item {
        gap: 1rem;
      }

      .memory-techniques-guide-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
      }

      .memory-techniques-guide-step-content h4 {
        font-size: 1rem;
      }

      .memory-techniques-guide-section-3::before {
        width: 250px;
        height: 250px;
      }
    }

    /* ============================================
       CONTENT SECTION 4
       ============================================ */
    .memory-techniques-guide-section-4 {
      background-color: var(--color-primary-light);
      padding: 6rem 0;
      overflow: hidden;
    }

    .memory-techniques-guide-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .memory-techniques-guide-section-4 h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
    }

    .memory-techniques-guide-tips-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .memory-techniques-guide-tip-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    .memory-techniques-guide-tip-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      background-color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-white);
      font-size: 1rem;
      margin-top: 0.25rem;
    }

    .memory-techniques-guide-tip-content {
      flex: 1;
    }

    .memory-techniques-guide-tip-content h5 {
      color: var(--text-dark);
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .memory-techniques-guide-tip-content p {
      color: var(--text-medium);
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-section-4 {
        padding: 3rem 0;
      }

      .memory-techniques-guide-section-4 h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-tips-list {
        gap: 1.25rem;
      }
    }

    /* ============================================
       CONCLUSION SECTION
       ============================================ */
    .memory-techniques-guide-conclusion {
      background-color: var(--bg-light);
      padding: 6rem 0;
      overflow: hidden;
      border-top: 2px solid var(--bg-medium);
    }

    .memory-techniques-guide-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    .memory-techniques-guide-conclusion h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
    }

    .memory-techniques-guide-conclusion p {
      color: var(--text-medium);
      font-size: 1rem;
      line-height: 1.8;
    }

    .memory-techniques-guide-key-takeaway {
      background-color: var(--bg-light-gray);
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      margin-top: 1rem;
    }

    .memory-techniques-guide-key-takeaway p {
      color: var(--text-dark);
      font-weight: 500;
      margin: 0;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-conclusion {
        padding: 3rem 0;
      }

      .memory-techniques-guide-conclusion h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-conclusion p {
        font-size: 0.9375rem;
      }
    }

    /* ============================================
       RELATED POSTS SECTION
       ============================================ */
    .memory-techniques-guide-related {
      background-color: var(--bg-light-gray);
      padding: 6rem 0;
      overflow: hidden;
    }

    .memory-techniques-guide-related-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .memory-techniques-guide-related h2 {
      color: var(--text-dark);
      font-size: var(--font-size-h2);
      text-align: center;
      margin-bottom: 1rem;
    }

    .memory-techniques-guide-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .memory-techniques-guide-post-card {
      background-color: var(--bg-light);
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all var(--transition-base);
    }

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

    .memory-techniques-guide-post-image {
      width: 100%;
      height: 200px;
      background-color: var(--bg-medium);
      overflow: hidden;
      position: relative;
    }

    .memory-techniques-guide-post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-base);
    }

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

    .memory-techniques-guide-post-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    .memory-techniques-guide-post-card h4 {
      color: var(--text-dark);
      font-size: 1.125rem;
      margin: 0;
      line-height: 1.4;
    }

    .memory-techniques-guide-post-card p {
      color: var(--text-medium);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
      flex: 1;
    }

    .memory-techniques-guide-post-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all var(--transition-base);
      margin-top: auto;
      align-self: flex-start;
    }

    .memory-techniques-guide-post-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

    .memory-techniques-guide-post-link i {
      font-size: 0.75rem;
    }

    @media (max-width: 768px) {
      .memory-techniques-guide-related {
        padding: 3rem 0;
      }

      .memory-techniques-guide-related h2 {
        font-size: 1.875rem;
      }

      .memory-techniques-guide-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .memory-techniques-guide-post-image {
        height: 180px;
      }

      .memory-techniques-guide-post-body {
        padding: 1.25rem;
      }
    }

    /* ============================================
       RESPONSIVE CONTAINER
       ============================================ */
    @media (max-width: 768px) {
      .post-memory-techniques-guide .container {
        padding: 0 var(--space-md);
      }
    }

/* Post Page 2 Styles */
/* ========================================
     POST: Daily Cognitive Exercises
     ======================================== */

  .post-daily-cognitive-exercises {
    width: 100%;
  }

  /* Breadcrumbs Navigation */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumbs {
    background-color: var(--bg-light-gray);
    border-bottom: 1px solid var(--bg-medium);
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    flex-wrap: wrap;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-link {
    color: var(--color-primary);
    font-size: var(--font-size-small);
    font-weight: 500;
    transition: color var(--transition-base);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-link:hover {
    color: var(--color-primary-dark);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-separator {
    color: var(--text-light);
    font-size: var(--font-size-small);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-current {
    color: var(--text-medium);
    font-size: var(--font-size-small);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumbs-content {
      gap: 0.5rem;
      padding: var(--space-sm) 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-link,
    .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-separator,
    .post-daily-cognitive-exercises .daily-cognitive-exercises-breadcrumb-current {
      font-size: 0.75rem;
    }
  }

  /* Hero Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-hero {
    background-color: var(--bg-darker);
    padding: 4rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-title {
    color: var(--text-white);
    font-size: 3.5rem;
    line-height: 1.1;
    max-width: 900px;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-lead {
    color: var(--text-white-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    font-weight: 400;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-meta {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-white-secondary);
    font-size: var(--font-size-small);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-meta-item i {
    color: var(--color-primary);
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-hero {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-title {
      font-size: 2.25rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-lead {
      font-size: 1rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-meta {
      gap: var(--space-md);
    }
  }

  /* Introduction Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro {
    background-color: var(--bg-light);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-text p {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    list-style: none;
    margin-top: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-benefit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--text-dark);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-benefit-icon {
    flex-shrink: 0;
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-top: 2px;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
  }

  @media (max-width: 1024px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-content {
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
    }
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-intro {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-text h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-intro-text p {
      font-size: 0.9375rem;
    }
  }

  /* Core Exercises Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-core {
    background-color: var(--bg-light-gray);
    padding: 6rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-core-content h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-core-intro {
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    font-size: 1.0625rem;
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-card {
    background-color: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-core {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-exercises-grid {
      gap: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-card {
      padding: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-exercise-header h3 {
      font-size: 1.25rem;
    }
  }

  /* Implementation Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation {
    background-color: var(--bg-light);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-impl-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-text h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-text > p {
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-tips-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-tip {
    background-color: var(--bg-light-gray);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border-top: 3px solid var(--color-secondary);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-tip h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-tip p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  @media (max-width: 1024px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-content {
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
    }
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-implementation-text h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-tip {
      padding: var(--space-md);
    }
  }

  /* Advanced Techniques Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-content h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-content > p {
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    font-size: 1.0625rem;
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-2xl);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-item {
    background-color: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    color: var(--color-primary);
    font-size: 1.875rem;
    margin-bottom: var(--space-md);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-item h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-item p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-content h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-grid {
      gap: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-advanced-item {
      padding: var(--space-lg);
    }
  }

  /* Science Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-science {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-science-content h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-science-content > p {
    color: var(--text-medium);
    margin-bottom: var(--space-3xl);
    font-size: 1.0625rem;
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-research-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-research-point {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-2xl);
    align-items: start;
    background-color: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-point-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--text-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-point-content h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    margin-top: 0;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-point-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-science {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-science-content h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-research-point {
      grid-template-columns: 50px 1fr;
      gap: var(--space-lg);
      padding: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-point-number {
      width: 50px;
      height: 50px;
      font-size: 1.25rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-point-content h4 {
      font-size: 1.125rem;
    }
  }

  /* Conclusion Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion {
    background-color: var(--bg-light);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion-content h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion-content > p {
    color: var(--text-medium);
    margin-bottom: var(--space-2xl);
    font-size: 1.0625rem;
    line-height: 1.8;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-key-takeaways {
    background-color: var(--color-primary-light);
    padding: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-2xl);
    border-left: 4px solid var(--color-primary);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-key-takeaways h3 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
    font-size: 1.375rem;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-takeaways-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-takeaways-list li {
    color: var(--text-dark);
    padding-left: var(--space-lg);
    position: relative;
    line-height: 1.6;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-takeaways-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-closing {
    color: var(--text-medium);
    font-size: 1.0625rem;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-conclusion-content h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-key-takeaways {
      padding: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-key-takeaways h3 {
      font-size: 1.25rem;
    }
  }

  /* Related Posts Section */
  .post-daily-cognitive-exercises .daily-cognitive-exercises-related {
    background-color: var(--bg-medium);
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-content h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-3xl);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

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

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light-gray);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-card:hover .daily-cognitive-exercises-related-img {
    transform: scale(1.05);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-body {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-body h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-body p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    text-decoration: none;
    align-self: flex-start;
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-base);
  }

  .post-daily-cognitive-exercises .daily-cognitive-exercises-related-link:hover i {
    transform: translateX(2px);
  }

  @media (max-width: 768px) {
    .post-daily-cognitive-exercises .daily-cognitive-exercises-related {
      padding: 3rem 0;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-related-content h2 {
      font-size: 1.875rem;
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-related-grid {
      gap: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-related-body {
      padding: var(--space-lg);
    }

    .post-daily-cognitive-exercises .daily-cognitive-exercises-related-body h3 {
      font-size: 1.125rem;
    }
  }

/* Post Page 3 Styles */
/* ========================================
   POST: Social Memory Games
   Isolation: .post-social-memory-games
   ======================================== */

.post-social-memory-games {
  overflow: hidden;
}

/* ========================================
   BREADCRUMBS SECTION
   ======================================== */

.post-social-memory-games .social-memory-games-breadcrumbs {
  background-color: var(--bg-light-gray);
  padding: 1.5rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-social-memory-games .social-memory-games-breadcrumb-link {
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: 500;
  transition: color var(--transition-base);
}

.post-social-memory-games .social-memory-games-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-social-memory-games .social-memory-games-breadcrumb-separator {
  color: var(--text-light);
  font-size: var(--font-size-small);
}

.post-social-memory-games .social-memory-games-breadcrumb-current {
  color: var(--text-medium);
  font-size: var(--font-size-small);
  font-weight: 500;
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-breadcrumbs {
    padding: 1rem 0;
  }

  .post-social-memory-games .social-memory-games-breadcrumb-link,
  .post-social-memory-games .social-memory-games-breadcrumb-separator,
  .post-social-memory-games .social-memory-games-breadcrumb-current {
    font-size: 0.75rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.post-social-memory-games .social-memory-games-hero {
  background-color: var(--bg-light);
  padding: 5rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.post-social-memory-games .social-memory-games-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-social-memory-games .social-memory-games-hero-title {
  color: var(--text-dark);
  font-size: var(--font-size-h1);
  line-height: 1.2;
}

.post-social-memory-games .social-memory-games-hero-lead {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.8;
}

.post-social-memory-games .social-memory-games-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.post-social-memory-games .social-memory-games-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: var(--font-size-small);
}

.post-social-memory-games .social-memory-games-meta-item i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.post-social-memory-games .social-memory-games-hero-image {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-social-memory-games .social-memory-games-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-social-memory-games .social-memory-games-hero {
    padding: 4rem 0;
  }

  .post-social-memory-games .social-memory-games-hero-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-hero {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-hero-title {
    font-size: 2.25rem;
  }

  .post-social-memory-games .social-memory-games-hero-lead {
    font-size: 1rem;
  }

  .post-social-memory-games .social-memory-games-hero-meta {
    gap: 1.5rem;
    font-size: 0.75rem;
  }

  .post-social-memory-games .social-memory-games-hero-image {
    height: 250px;
  }
}

/* ========================================
   CONTENT SECTION 1
   ======================================== */

.post-social-memory-games .social-memory-games-content-1 {
  background-color: var(--bg-light-gray);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-content-1-content {
  max-width: 900px;
}

.post-social-memory-games .social-memory-games-section-heading {
  color: var(--text-dark);
  font-size: var(--font-size-h2);
  margin-bottom: 2rem;
}

.post-social-memory-games .social-memory-games-section-paragraph {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-social-memory-games .social-memory-games-highlight-box {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  margin-top: 2rem;
}

.post-social-memory-games .social-memory-games-highlight-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.post-social-memory-games .social-memory-games-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-social-memory-games .social-memory-games-highlight-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.post-social-memory-games .social-memory-games-highlight-content {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-content-1 {
    padding: 5rem 0;
  }

  .post-social-memory-games .social-memory-games-section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-content-1 {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-section-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .post-social-memory-games .social-memory-games-section-paragraph {
    font-size: 0.95rem;
  }

  .post-social-memory-games .social-memory-games-highlight-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .post-social-memory-games .social-memory-games-highlight-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

/* ========================================
   CONTENT SECTION 2: Games Grid
   ======================================== */

.post-social-memory-games .social-memory-games-content-2 {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-content-2-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.post-social-memory-games .social-memory-games-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.post-social-memory-games .social-memory-games-game-card {
  background-color: var(--bg-light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.post-social-memory-games .social-memory-games-game-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-social-memory-games .social-memory-games-game-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.post-social-memory-games .social-memory-games-game-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.post-social-memory-games .social-memory-games-game-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.post-social-memory-games .social-memory-games-game-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-social-memory-games .social-memory-games-game-benefits li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.post-social-memory-games .social-memory-games-game-benefits i {
  color: var(--color-secondary);
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-content-2 {
    padding: 5rem 0;
  }

  .post-social-memory-games .social-memory-games-games-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-content-2 {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-social-memory-games .social-memory-games-game-card {
    padding: 1.5rem;
  }

  .post-social-memory-games .social-memory-games-game-title {
    font-size: 1.125rem;
  }

  .post-social-memory-games .social-memory-games-game-description {
    font-size: 0.875rem;
  }
}

/* ========================================
   CONTENT SECTION 3: Exercises
   ======================================== */

.post-social-memory-games .social-memory-games-content-3 {
  background-color: var(--bg-light-gray);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-content-3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.post-social-memory-games .social-memory-games-content-3-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-social-memory-games .social-memory-games-exercises-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-social-memory-games .social-memory-games-exercise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-accent);
}

.post-social-memory-games .social-memory-games-exercise-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.post-social-memory-games .social-memory-games-exercise-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-social-memory-games .social-memory-games-exercise-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.post-social-memory-games .social-memory-games-exercise-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.post-social-memory-games .social-memory-games-exercise-frequency {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.post-social-memory-games .social-memory-games-content-3-image {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-social-memory-games .social-memory-games-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-content-3 {
    padding: 5rem 0;
  }

  .post-social-memory-games .social-memory-games-content-3-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-social-memory-games .social-memory-games-content-3-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-content-3 {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-exercise-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .post-social-memory-games .social-memory-games-exercise-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .post-social-memory-games .social-memory-games-exercise-title {
    font-size: 1rem;
  }

  .post-social-memory-games .social-memory-games-exercise-description {
    font-size: 0.85rem;
  }

  .post-social-memory-games .social-memory-games-content-3-image {
    height: 250px;
  }
}

/* ========================================
   CONTENT SECTION 4: Benefits
   ======================================== */

.post-social-memory-games .social-memory-games-content-4 {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-content-4-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-social-memory-games .social-memory-games-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-social-memory-games .social-memory-games-benefit-card {
  background-color: var(--bg-light-gray);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.post-social-memory-games .social-memory-games-benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-social-memory-games .social-memory-games-benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 1.75rem;
}

.post-social-memory-games .social-memory-games-benefit-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.post-social-memory-games .social-memory-games-benefit-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-content-4 {
    padding: 5rem 0;
  }

  .post-social-memory-games .social-memory-games-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-content-4 {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-social-memory-games .social-memory-games-benefit-card {
    padding: 1.5rem;
  }

  .post-social-memory-games .social-memory-games-benefit-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .post-social-memory-games .social-memory-games-benefit-title {
    font-size: 1rem;
  }

  .post-social-memory-games .social-memory-games-benefit-text {
    font-size: 0.85rem;
  }
}

/* ========================================
   CONTENT SECTION 5: Tips
   ======================================== */

.post-social-memory-games .social-memory-games-content-5 {
  background-color: var(--bg-light-gray);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-content-5-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-social-memory-games .social-memory-games-tips-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.post-social-memory-games .social-memory-games-tips-left,
.post-social-memory-games .social-memory-games-tips-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-social-memory-games .social-memory-games-tip {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.post-social-memory-games .social-memory-games-tip-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.post-social-memory-games .social-memory-games-tip-header i {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.post-social-memory-games .social-memory-games-tip-title {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.post-social-memory-games .social-memory-games-tip-text {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-content-5 {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-content-5 {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-tips-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-social-memory-games .social-memory-games-tip {
    padding: 1rem;
  }

  .post-social-memory-games .social-memory-games-tip-title {
    font-size: 0.95rem;
  }

  .post-social-memory-games .social-memory-games-tip-text {
    font-size: 0.85rem;
  }
}

/* ========================================
   CONCLUSION SECTION
   ======================================== */

.post-social-memory-games .social-memory-games-conclusion {
  background-color: var(--bg-dark);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-conclusion-content {
  max-width: 900px;
}

.post-social-memory-games .social-memory-games-conclusion-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-social-memory-games .social-memory-games-conclusion-title {
  color: var(--text-white);
  font-size: var(--font-size-h2);
  line-height: 1.3;
}

.post-social-memory-games .social-memory-games-conclusion-text {
  color: var(--text-white-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.post-social-memory-games .social-memory-games-conclusion-highlight {
  background-color: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
}

.post-social-memory-games .social-memory-games-conclusion-highlight-text {
  color: var(--text-white);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.post-social-memory-games .social-memory-games-conclusion-final {
  color: var(--text-white-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-conclusion {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-conclusion {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-conclusion-title {
    font-size: 1.75rem;
  }

  .post-social-memory-games .social-memory-games-conclusion-text {
    font-size: 0.95rem;
  }

  .post-social-memory-games .social-memory-games-conclusion-highlight {
    padding: 1rem;
  }

  .post-social-memory-games .social-memory-games-conclusion-highlight-text {
    font-size: 0.85rem;
  }
}

/* ========================================
   RELATED POSTS SECTION
   ======================================== */

.post-social-memory-games .social-memory-games-related {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-related-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-social-memory-games .social-memory-games-related-title {
  color: var(--text-dark);
  font-size: var(--font-size-h2);
  text-align: center;
}

.post-social-memory-games .social-memory-games-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-social-memory-games .social-memory-games-related-card {
  background-color: var(--bg-light-gray);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-social-memory-games .social-memory-games-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-social-memory-games .social-memory-games-related-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.post-social-memory-games .social-memory-games-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-social-memory-games .social-memory-games-related-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-social-memory-games .social-memory-games-related-card-title {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.post-social-memory-games .social-memory-games-related-card-description {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.post-social-memory-games .social-memory-games-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.post-social-memory-games .social-memory-games-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.post-social-memory-games .social-memory-games-related-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.post-social-memory-games .social-memory-games-related-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .post-social-memory-games .social-memory-games-related {
    padding: 5rem 0;
  }

  .post-social-memory-games .social-memory-games-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-social-memory-games .social-memory-games-related {
    padding: 3rem 0;
  }

  .post-social-memory-games .social-memory-games-related-title {
    font-size: 1.75rem;
  }

  .post-social-memory-games .social-memory-games-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-social-memory-games .social-memory-games-related-image {
    height: 200px;
  }

  .post-social-memory-games .social-memory-games-related-body {
    padding: 1rem;
  }

  .post-social-memory-games .social-memory-games-related-card-title {
    font-size: 0.95rem;
  }

  .post-social-memory-games .social-memory-games-related-card-description {
    font-size: 0.85rem;
  }
}

/* Post Page 4 Styles */
/* ============================================================================
   POST PAGE: MEDITATION AND MINDFULNESS FOR MEMORY
   Complete CSS isolation with meditation-memory-focus- prefix
   ============================================================================ */

/* BREADCRUMBS NAVIGATION */
.post-meditation-memory-focus .meditation-memory-focus-breadcrumbs {
  background-color: var(--bg-light-gray);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-meditation-memory-focus .meditation-memory-focus-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-base);
}

.post-meditation-memory-focus .meditation-memory-focus-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-meditation-memory-focus .meditation-memory-focus-breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.875rem;
}

.post-meditation-memory-focus .meditation-memory-focus-breadcrumb-current {
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-breadcrumbs {
    padding: 1rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-breadcrumb-link,
  .post-meditation-memory-focus .meditation-memory-focus-breadcrumb-current {
    font-size: 0.875rem;
  }
}

/* HERO SECTION */
.post-meditation-memory-focus .meditation-memory-focus-hero {
  background-color: #f0f4f8;
  padding: 5rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-meditation-memory-focus .meditation-memory-focus-hero-title {
  color: var(--text-dark);
  font-size: 3.5rem;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.post-meditation-memory-focus .meditation-memory-focus-lead {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

.post-meditation-memory-focus .meditation-memory-focus-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.post-meditation-memory-focus .meditation-memory-focus-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.9375rem;
  font-weight: 500;
}

.post-meditation-memory-focus .meditation-memory-focus-meta-item i {
  color: var(--color-primary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-hero {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-hero-title {
    font-size: 2.25rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-lead {
    font-size: 1rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-hero-meta {
    gap: 1rem;
  }
}

/* CONTENT SECTION 1: UNDERSTANDING MEDITATION */
.post-meditation-memory-focus .meditation-memory-focus-content-1 {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-content-1-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.post-meditation-memory-focus .meditation-memory-focus-content-1-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-content-1-paragraph {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.post-meditation-memory-focus .meditation-memory-focus-content-1-paragraph:last-child {
  margin-bottom: 0;
}

.post-meditation-memory-focus .meditation-memory-focus-content-1-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-1-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-1-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-1 {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-1-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-1-paragraph {
    font-size: 0.9375rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-1-image {
    height: 300px;
  }
}

/* CONTENT SECTION 2: MINDFULNESS PRACTICES */
.post-meditation-memory-focus .meditation-memory-focus-content-2 {
  background-color: #f8f9fa;
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-content-2-content {
  display: flex;
  flex-direction: column;
}

.post-meditation-memory-focus .meditation-memory-focus-content-2-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-content-2-intro {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2.5rem 0;
  max-width: 800px;
}

.post-meditation-memory-focus .meditation-memory-focus-practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.post-meditation-memory-focus .meditation-memory-focus-practice-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.post-meditation-memory-focus .meditation-memory-focus-practice-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-meditation-memory-focus .meditation-memory-focus-practice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius-md);
}

.post-meditation-memory-focus .meditation-memory-focus-practice-icon i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.post-meditation-memory-focus .meditation-memory-focus-practice-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.post-meditation-memory-focus .meditation-memory-focus-practice-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .post-meditation-memory-focus .meditation-memory-focus-practices-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-2 {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-2-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-2-intro {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-practice-card {
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-practice-title {
    font-size: 1.125rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-practice-text {
    font-size: 0.875rem;
  }
}

/* CONTENT SECTION 3: MEMORY ENHANCEMENT TECHNIQUES */
.post-meditation-memory-focus .meditation-memory-focus-content-3 {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-content-3-content {
  display: flex;
  flex-direction: column;
}

.post-meditation-memory-focus .meditation-memory-focus-content-3-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-content-3-intro {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2.5rem 0;
}

.post-meditation-memory-focus .meditation-memory-focus-techniques-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-meditation-memory-focus .meditation-memory-focus-technique-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  align-items: start;
}

.post-meditation-memory-focus .meditation-memory-focus-technique-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.post-meditation-memory-focus .meditation-memory-focus-technique-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.post-meditation-memory-focus .meditation-memory-focus-technique-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-3 {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-3-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-3-intro {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-technique-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-technique-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-technique-title {
    font-size: 1.125rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-technique-text {
    font-size: 0.875rem;
  }
}

/* CONTENT SECTION 4: SCIENTIFIC RESEARCH */
.post-meditation-memory-focus .meditation-memory-focus-content-4 {
  background-color: #f0f4f8;
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-content-4-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.post-meditation-memory-focus .meditation-memory-focus-content-4-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-meditation-memory-focus .meditation-memory-focus-content-4-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-content-4-paragraph {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.post-meditation-memory-focus .meditation-memory-focus-evidence-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.post-meditation-memory-focus .meditation-memory-focus-evidence-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-meditation-memory-focus .meditation-memory-focus-evidence-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.post-meditation-memory-focus .meditation-memory-focus-content-4-conclusion {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-4-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-4-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-4 {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-4-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-4-paragraph {
    font-size: 0.9375rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-4-image {
    height: 300px;
  }

  .post-meditation-memory-focus .meditation-memory-focus-evidence-item {
    font-size: 0.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-4-conclusion {
    font-size: 0.9375rem;
  }
}

/* CONTENT SECTION 5: GETTING STARTED */
.post-meditation-memory-focus .meditation-memory-focus-content-5 {
  background-color: #f8f9fa;
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-content-5-content {
  display: flex;
  flex-direction: column;
}

.post-meditation-memory-focus .meditation-memory-focus-content-5-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-content-5-intro {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2.5rem 0;
}

.post-meditation-memory-focus .meditation-memory-focus-getting-started-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-meditation-memory-focus .meditation-memory-focus-step {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-meditation-memory-focus .meditation-memory-focus-step-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-meditation-memory-focus .meditation-memory-focus-step-number {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  width: fit-content;
}

.post-meditation-memory-focus .meditation-memory-focus-step-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.post-meditation-memory-focus .meditation-memory-focus-step-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.post-meditation-memory-focus .meditation-memory-focus-content-5-tips {
  background-color: #e0e7ff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-primary);
}

.post-meditation-memory-focus .meditation-memory-focus-tips-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.post-meditation-memory-focus .meditation-memory-focus-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-meditation-memory-focus .meditation-memory-focus-tip {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.post-meditation-memory-focus .meditation-memory-focus-tip::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .post-meditation-memory-focus .meditation-memory-focus-getting-started-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-content-5 {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-5-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-5-intro {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-step {
    padding: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-step-title {
    font-size: 1.125rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-step-text {
    font-size: 0.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-content-5-tips {
    padding: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-tips-title {
    font-size: 1.125rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-tip {
    font-size: 0.875rem;
  }
}

/* CONCLUSION SECTION */
.post-meditation-memory-focus .meditation-memory-focus-conclusion {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.post-meditation-memory-focus .meditation-memory-focus-conclusion-title {
  color: var(--text-white);
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-conclusion-text {
  color: var(--text-white-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.post-meditation-memory-focus .meditation-memory-focus-conclusion-highlight {
  background-color: rgba(99, 102, 241, 0.15);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
}

.post-meditation-memory-focus .meditation-memory-focus-conclusion-highlight-text {
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-conclusion {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-conclusion-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-conclusion-text,
  .post-meditation-memory-focus .meditation-memory-focus-conclusion-highlight-text {
    font-size: 0.9375rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-conclusion-highlight {
    padding: 1rem;
  }
}

/* RELATED POSTS SECTION */
.post-meditation-memory-focus .meditation-memory-focus-related {
  background-color: var(--bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-related-content {
  display: flex;
  flex-direction: column;
}

.post-meditation-memory-focus .meditation-memory-focus-related-title {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.post-meditation-memory-focus .meditation-memory-focus-related-subtitle {
  color: var(--text-medium);
  font-size: 1rem;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

.post-meditation-memory-focus .meditation-memory-focus-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-meditation-memory-focus .meditation-memory-focus-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-meditation-memory-focus .meditation-memory-focus-related-card:hover .meditation-memory-focus-related-card-image {
  transform: scale(1.05);
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-description {
  color: var(--text-medium);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-link {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-meditation-memory-focus .meditation-memory-focus-related-card-link i {
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .post-meditation-memory-focus .meditation-memory-focus-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .post-meditation-memory-focus .meditation-memory-focus-related {
    padding: 3rem 0;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-title {
    font-size: 1.875rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-card-image-wrapper {
    height: 200px;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-card-content {
    padding: 1rem;
    gap: 0.75rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-card-title {
    font-size: 1rem;
  }

  .post-meditation-memory-focus .meditation-memory-focus-related-card-description {
    font-size: 0.8125rem;
  }
}

/* Post Page 5 Styles */
/* Post: Personalized Memory Program - Complete Isolation */
  
  .post-personalized-memory-program {
    width: 100%;
    overflow: hidden;
  }

  /* ==================== BREADCRUMBS ==================== */
  .post-personalized-memory-program .personalized-memory-program-breadcrumbs {
    background-color: #f8fafc;
    padding: 1.5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
  }

  .post-personalized-memory-program .personalized-memory-program-breadcrumb-link {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition-base);
  }

  .post-personalized-memory-program .personalized-memory-program-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .post-personalized-memory-program .personalized-memory-program-breadcrumb-separator {
    color: var(--text-light);
  }

  .post-personalized-memory-program .personalized-memory-program-breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-breadcrumbs {
      padding: 1rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-breadcrumbs-content {
      font-size: 0.75rem;
      gap: 0.25rem;
    }
  }

  /* ==================== HERO SECTION ==================== */
  .post-personalized-memory-program .personalized-memory-program-hero {
    background-color: #ffffff;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .post-personalized-memory-program .personalized-memory-program-hero-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .post-personalized-memory-program .personalized-memory-program-hero-lead {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-hero-meta {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .post-personalized-memory-program .personalized-memory-program-meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
  }

  .post-personalized-memory-program .personalized-memory-program-meta-item i {
    color: var(--color-primary);
    font-size: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-hero-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .post-personalized-memory-program .personalized-memory-program-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-hero {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-content {
      gap: 3rem;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-image {
      height: 350px;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-hero {
      padding: 2.5rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-lead {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-meta {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-hero-image {
      height: 280px;
    }
  }

  /* ==================== CONTENT SECTION 1: Memory Types ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-1 {
    background-color: #f1f5f9;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-1-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-section-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-memory-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-memory-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-memory-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .post-personalized-memory-program .personalized-memory-program-memory-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  .post-personalized-memory-program .personalized-memory-program-memory-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
  }

  .post-personalized-memory-program .personalized-memory-program-memory-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-1 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-memory-types {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-memory-card {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-1 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-memory-types {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-memory-card {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-section-title {
      font-size: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-section-text {
      font-size: 0.875rem;
    }
  }

  /* ==================== CONTENT SECTION 2: Assessment ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-2 {
    background-color: #ffffff;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
  }

  .post-personalized-memory-program .personalized-memory-program-assessment-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-assessment-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .post-personalized-memory-program .personalized-memory-program-assessment-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .post-personalized-memory-program .personalized-memory-program-assessment-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-assessment-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .post-personalized-memory-program .personalized-memory-program-content-2-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .post-personalized-memory-program .personalized-memory-program-content-2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-2 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-content-2-inner {
      gap: 3rem;
    }

    .post-personalized-memory-program .personalized-memory-program-content-2-image {
      height: 350px;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-2 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-content-2-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .post-personalized-memory-program .personalized-memory-program-assessment-item {
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-assessment-number {
      width: 50px;
      height: 50px;
      font-size: 1.25rem;
    }

    .post-personalized-memory-program .personalized-memory-program-content-2-image {
      height: 280px;
    }
  }

  /* ==================== CONTENT SECTION 3: Methods ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-3 {
    background-color: #f8fafc;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-3-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-method-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-method-level {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    width: fit-content;
  }

  .post-personalized-memory-program .personalized-memory-program-method-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
  }

  .post-personalized-memory-program .personalized-memory-program-method-text {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .post-personalized-memory-program .personalized-memory-program-method-examples {
    padding-top: 1rem;
    border-top: 1px solid var(--bg-medium);
  }

  .post-personalized-memory-program .personalized-memory-program-method-examples strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
  }

  .post-personalized-memory-program .personalized-memory-program-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-examples-list li {
    color: var(--text-medium);
    font-size: 0.875rem;
    padding-left: 1.25rem;
    position: relative;
  }

  .post-personalized-memory-program .personalized-memory-program-examples-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-3 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-methods-grid {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-method-block {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-3 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-methods-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-method-block {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-method-title {
      font-size: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-method-text {
      font-size: 0.875rem;
    }
  }

  /* ==================== CONTENT SECTION 4: Schedule ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-4 {
    background-color: #ffffff;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-4-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule-item {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(99, 102, 241, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule-time {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule-activity strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule-activity p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
  }

  .post-personalized-memory-program .personalized-memory-program-schedule-tips {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tips-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tips-list li {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
  }

  .post-personalized-memory-program .personalized-memory-program-tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.125rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tips-list li strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-4 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-schedule {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-schedule-item {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-4 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-schedule {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-schedule-item {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-schedule-tips {
      padding: 1.5rem;
    }
  }

  /* ==================== CONTENT SECTION 5: Lifestyle ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-5 {
    background-color: #f1f5f9;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-5-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-factors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-factor {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .post-personalized-memory-program .personalized-memory-program-factor i {
    font-size: 2.5rem;
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
  }

  .post-personalized-memory-program .personalized-memory-program-factor-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
  }

  .post-personalized-memory-program .personalized-memory-program-factor-text {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-5 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-factors {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-factor {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-5 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-factors {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-factor {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-factor-title {
      font-size: 1rem;
    }
  }

  /* ==================== CONTENT SECTION 6: Tracking ==================== */
  .post-personalized-memory-program .personalized-memory-program-content-6 {
    background-color: #ffffff;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-content-6-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tracking-framework {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tracking-box {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-top: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tracking-header {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-tracking-content {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-guide {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    align-items: flex-start;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-marker {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-marker i {
    color: var(--color-secondary);
    font-size: 1.25rem;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-item p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
  }

  .post-personalized-memory-program .personalized-memory-program-adjustment-item strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-content-6 {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-tracking-framework {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-tracking-box {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-content-6 {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-tracking-framework {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-tracking-box {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-adjustment-guide {
      padding: 1.5rem;
    }
  }

  /* ==================== CONCLUSION SECTION ==================== */
  .post-personalized-memory-program .personalized-memory-program-conclusion {
    background-color: #0f172a;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-conclusion-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-conclusion-title {
    color: #ffffff;
    margin-bottom: 0.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-conclusion-text {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.8;
  }

  .post-personalized-memory-program .personalized-memory-program-key-takeaways {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .post-personalized-memory-program .personalized-memory-program-takeaways-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-takeaways-list li {
    color: #e2e8f0;
    font-size: 0.9375rem;
    line-height: 1.7;
    padding-left: 1.75rem;
    position: relative;
  }

  .post-personalized-memory-program .personalized-memory-program-takeaways-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.125rem;
  }

  .post-personalized-memory-program .personalized-memory-program-conclusion-final {
    color: #e2e8f0;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 1rem;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-conclusion {
      padding: 4rem 0;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-conclusion {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-conclusion-title {
      font-size: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-conclusion-text {
      font-size: 0.875rem;
    }

    .post-personalized-memory-program .personalized-memory-program-key-takeaways {
      padding: 1.5rem;
    }
  }

  /* ==================== RELATED POSTS SECTION ==================== */
  .post-personalized-memory-program .personalized-memory-program-related {
    background-color: #f8fafc;
    padding: 5rem 0;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-related-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .post-personalized-memory-program .personalized-memory-program-related-title {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .post-personalized-memory-program .personalized-memory-program-related-subtitle {
    color: var(--text-medium);
    text-align: center;
    font-size: 1rem;
  }

  .post-personalized-memory-program .personalized-memory-program-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .post-personalized-memory-program .personalized-memory-program-related-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
  }

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

  .post-personalized-memory-program .personalized-memory-program-related-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .post-personalized-memory-program .personalized-memory-program-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
  }

  .post-personalized-memory-program .personalized-memory-program-related-card:hover .personalized-memory-program-related-img {
    transform: scale(1.05);
  }

  .post-personalized-memory-program .personalized-memory-program-related-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }

  .post-personalized-memory-program .personalized-memory-program-related-card-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .post-personalized-memory-program .personalized-memory-program-related-card-desc {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
  }

  .post-personalized-memory-program .personalized-memory-program-related-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    width: fit-content;
  }

  .post-personalized-memory-program .personalized-memory-program-related-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
  }

  .post-personalized-memory-program .personalized-memory-program-related-link i {
    font-size: 0.875rem;
  }

  @media (max-width: 1024px) {
    .post-personalized-memory-program .personalized-memory-program-related {
      padding: 4rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-related-grid {
      gap: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-related-image {
      height: 220px;
    }
  }

  @media (max-width: 768px) {
    .post-personalized-memory-program .personalized-memory-program-related {
      padding: 3rem 0;
    }

    .post-personalized-memory-program .personalized-memory-program-related-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-related-title {
      font-size: 1.5rem;
    }

    .post-personalized-memory-program .personalized-memory-program-related-image {
      height: 200px;
    }

    .post-personalized-memory-program .personalized-memory-program-related-content {
      padding: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-related-card-title {
      font-size: 1rem;
    }

    .post-personalized-memory-program .personalized-memory-program-related-card-desc {
      font-size: 0.875rem;
    }
  }

/* Privacy Page Styles */
.cognitive-hub {
  overflow: hidden;
}

.cognitive-hub-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Section spacing - mobile first */
.cognitive-hub section {
  padding: var(--space-xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cognitive-hub section {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .cognitive-hub section {
    padding: 6rem 0;
  }
}

/* Hero section */
.cognitive-hub .hero-section {
  background-color: var(--bg-dark);
}

.cognitive-hub .hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .cognitive-hub .hero-content {
    padding: var(--space-xl);
  }
}

.cognitive-hub .hero-section h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--text-white);
  margin: 0;
}

@media (min-width: 768px) {
  .cognitive-hub .hero-section h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .cognitive-hub .hero-section h1 {
    font-size: 3.25rem;
  }
}

.cognitive-hub .hero-section .updated {
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  color: var(--text-white-secondary);
}

/* Content section */
.cognitive-hub .content-section {
  background-color: var(--bg-light);
}

.cognitive-hub .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cognitive-hub .content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin: var(--space-lg) 0 var(--space-md) 0;
}

@media (min-width: 768px) {
  .cognitive-hub .content-wrapper h2 {
    font-size: 2.25rem;
    margin: var(--space-xl) 0 var(--space-md) 0;
  }
}

@media (min-width: 1024px) {
  .cognitive-hub .content-wrapper h2 {
    font-size: 2.5rem;
  }
}

.cognitive-hub .content-wrapper p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0 0 var(--space-md) 0;
}

@media (min-width: 768px) {
  .cognitive-hub .content-wrapper p {
    font-size: 1rem;
  }
}

.cognitive-hub .content-wrapper ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.cognitive-hub .content-wrapper li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .cognitive-hub .content-wrapper li {
    font-size: 1rem;
  }
}

.cognitive-hub .content-wrapper li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Contact section */
.cognitive-hub .contact-section {
  background-color: var(--bg-light-gray);
}

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

.cognitive-hub .contact-content h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .cognitive-hub .contact-content h2 {
    font-size: 2.25rem;
  }
}

.cognitive-hub .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .cognitive-hub .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .cognitive-hub .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cognitive-hub .contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cognitive-hub .contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.cognitive-hub .contact-item p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
  word-break: break-word;
}

@media (min-width: 768px) {
  .cognitive-hub .contact-item p {
    font-size: 1rem;
  }
}

.cognitive-hub .contact-item .icon {
  font-size: var(--icon-size-md);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Container padding */
.cognitive-hub .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .cognitive-hub .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .cognitive-hub .container {
    padding: 0 var(--space-xl);
  }
}

/* Thank You Page Styles */
:root {
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-primary-light: #e0e7ff;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-danger: #ef4444;
    --bg-light: #ffffff;
    --bg-light-gray: #f8fafc;
    --bg-medium: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-white-secondary: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-size-h1: 3.75rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.25rem;
    --font-size-h4: 1.875rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --icon-size-sm: 1.5rem;
    --icon-size-md: 2rem;
    --icon-size-lg: 3rem;
    --icon-size-xl: 4rem;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    line-height: 1.6;
  }

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

  /* ===== THANK YOU HERO SECTION ===== */
  .thank-hero-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 6rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 8rem 0;
    }
  }

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

  .thank-icon {
    font-size: 5rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    animation: bounce-in 0.8s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      font-size: 6rem;
    }
  }

  @keyframes bounce-in {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: var(--space-sm);
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: var(--font-size-h1);
    }
  }

  .thank-lead {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.5rem;
    }
  }

  .thank-subtitle {
    color: var(--text-white-secondary);
    font-size: var(--font-size-body);
    max-width: 600px;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .thank-subtitle {
      font-size: 1.0625rem;
    }
  }

  /* ===== THANK YOU NEXT SECTION ===== */
  .thank-next-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-next-section {
      padding: 6rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-next-section {
      padding: 8rem 0;
    }
  }

  .thank-next-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
  }

  .thank-next-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-next-section h2 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-next-section h2 {
      font-size: var(--font-size-h2);
    }
  }

  /* ===== STEPS ===== */
  .thank-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
    max-width: 900px;
    margin-bottom: var(--space-2xl);
  }

  @media (min-width: 768px) {
    .thank-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
      margin-bottom: var(--space-3xl);
    }
  }

  .thank-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--bg-light-gray);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  @media (min-width: 768px) {
    .thank-step {
      padding: var(--space-xl);
    }
  }

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

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
  }

  @media (min-width: 768px) {
    .step-number {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }
  }

  .thank-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .thank-step h3 {
      font-size: 1.5rem;
    }
  }

  .thank-step p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .thank-step p {
      font-size: var(--font-size-body);
    }
  }

  /* ===== BENEFITS ===== */
  .thank-benefits {
    width: 100%;
    max-width: 900px;
    padding: var(--space-lg);
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-2xl);
  }

  @media (min-width: 768px) {
    .thank-benefits {
      padding: var(--space-xl);
      margin-bottom: var(--space-3xl);
    }
  }

  .thank-benefits h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-benefits h3 {
      font-size: 1.75rem;
    }
  }

  .thank-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .thank-benefits-list {
      gap: var(--space-lg);
    }
  }

  .thank-benefits-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-dark);
    font-size: 0.9375rem;
  }

  @media (min-width: 768px) {
    .thank-benefits-list li {
      font-size: var(--font-size-body);
      gap: var(--space-lg);
    }
  }

  .thank-benefits-list i {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .thank-benefits-list i {
      font-size: 1.75rem;
    }
  }

  /* ===== BUTTON ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2rem;
      font-size: var(--font-size-body);
    }
  }

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

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

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

  /* ===== RESPONSIVE MOBILE ===== */
  @media (max-width: 767px) {
    .thank-hero-section {
      padding: 3rem 0;
    }

    .thank-next-section {
      padding: 3rem 0;
    }

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

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

    .thank-benefits {
      padding: var(--space-md);
    }

    .step-number {
      width: 2.75rem;
      height: 2.75rem;
      font-size: 1.25rem;
    }

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

  /* ===== ACCESSIBILITY ===== */
  .btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
  }

  .thank-step:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* ===== ANIMATION ===== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }

  /* ===== PRINT STYLES ===== */
  @media print {
    .btn {
      display: none;
    }
  }

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

  /* ============================================
     ERROR PAGE STYLES
     ============================================ */

  .error-page {
    background-color: var(--bg-light);
    overflow: hidden;
  }

  /* ============================================
     HERO SECTION
     ============================================ */

  .error-hero {
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, var(--bg-light) 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-hero {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-hero {
      padding: 6rem 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-hero-content {
      gap: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      gap: 4rem;
      align-items: center;
    }
  }

  /* ============================================
     ERROR ILLUSTRATION
     ============================================ */

  .error-illustration {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 1024px) {
    .error-illustration {
      max-width: 400px;
      flex-shrink: 0;
    }
  }

  .brain-icon {
    position: absolute;
    font-size: 6rem;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
  }

  @media (min-width: 768px) {
    .brain-icon {
      font-size: 8rem;
    }
  }

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

  .error-code {
    position: absolute;
    font-size: 10rem;
    font-weight: 800;
    color: var(--color-primary-light);
    font-family: var(--font-heading);
    z-index: 1;
    opacity: 0.6;
    line-height: 1;
  }

  @media (min-width: 768px) {
    .error-code {
      font-size: 12rem;
    }
  }

  /* ============================================
     PUZZLE PIECES ANIMATION
     ============================================ */

  .puzzle-pieces {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .puzzle-piece {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary-light);
    border-radius: var(--border-radius-md);
    background-color: rgba(99, 102, 241, 0.05);
    animation: float-piece 4s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .puzzle-piece {
      width: 80px;
      height: 80px;
    }
  }

  .piece-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }

  .piece-2 {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
  }

  .piece-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
  }

  .piece-4 {
    top: 30%;
    right: 5%;
    animation-delay: 1.5s;
  }

  @keyframes float-piece {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.3;
    }
    50% {
      transform: translateY(-30px) rotate(10deg);
      opacity: 0.6;
    }
  }

  /* ============================================
     ERROR CONTENT
     ============================================ */

  .error-content {
    text-align: center;
    flex: 1;
  }

  @media (min-width: 1024px) {
    .error-content {
      text-align: left;
    }
  }

  .error-content h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-content h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .error-content h1 {
      font-size: 3.5rem;
    }
  }

  .error-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.5rem;
    }
  }

  .error-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1rem;
      margin: 0 0 2.5rem 0;
    }
  }

  /* ============================================
     SUGGESTIONS
     ============================================ */

  .error-suggestions {
    background-color: var(--bg-light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    margin: 0 0 2rem 0;
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .error-suggestions {
      padding: 2rem;
      margin: 0 0 2.5rem 0;
    }
  }

  .error-suggestions h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-family: var(--font-heading);
  }

  @media (min-width: 768px) {
    .error-suggestions h3 {
      font-size: 1.25rem;
    }
  }

  .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .suggestions-list {
      gap: 1rem;
    }
  }

  .suggestions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .suggestions-list li {
      font-size: 1rem;
      gap: 1rem;
    }
  }

  .suggestions-list i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  /* ============================================
     BUTTONS
     ============================================ */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    font-family: var(--font-body);
    border: 2px solid transparent;
    cursor: pointer;
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2.25rem;
      font-size: 1rem;
      gap: 0.875rem;
    }
  }

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

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

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .btn-large {
      padding: 1.125rem 2.75rem;
      font-size: 1.125rem;
    }
  }

  .btn i {
    font-size: 1.2rem;
  }

  /* ============================================
     ENCOURAGEMENT SECTION
     ============================================ */

  .error-encouragement {
    background-color: var(--bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-encouragement {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-encouragement {
      padding: 6rem 0;
    }
  }

  .error-encouragement-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .error-encouragement-content {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  /* ============================================
     ENCOURAGEMENT CARDS
     ============================================ */

  .encouragement-card {
    background-color: var(--bg-darker);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .encouragement-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .encouragement-card:hover {
    border-color: var(--color-primary);
    background-color: rgba(99, 102, 241, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .card-icon {
      font-size: 3rem;
    }
  }

  .encouragement-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .encouragement-card h3 {
      font-size: 1.5rem;
    }
  }

  .encouragement-card p {
    font-size: 0.9rem;
    color: var(--text-white-secondary);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .encouragement-card p {
      font-size: 1rem;
    }
  }

  /* ============================================
     CONTAINER
     ============================================ */

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

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 3rem;
    }
  }

  /* ============================================
     RESPONSIVE ADJUSTMENTS
     ============================================ */

  @media (max-width: 767px) {
    .error-illustration {
      max-width: 250px;
    }

    .brain-icon {
      font-size: 5rem;
    }

    .error-code {
      font-size: 8rem;
    }

    .puzzle-piece {
      width: 50px;
      height: 50px;
    }
  }

  /* ============================================
     ACCESSIBILITY
     ============================================ */

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

  .error-encouragement-content a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* ============================================
     PRINT STYLES
     ============================================ */

  @media print {
    .error-illustration {
      display: none;
    }

    .error-encouragement {
      display: none;
    }
  }
  html,body{
    overflow-x: hidden;
  }
  .contact-info{
    display: flex !important;
    flex-direction: column !important;
  }