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

:root {
  /* Colors */
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #818cf8;
  --color-accent: #10b981;
  --color-accent-dark: #059669;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  
  /* Backgrounds */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #0f172a;
  --color-bg-dark: #0a0a0a;
  
  /* Text Colors */
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-light: #94a3b8;
  --color-text-inverse: #ffffff;
  --color-text-inverse-secondary: #e2e8f0;
  
  /* Typography */
  --font-heading: 'Rubik', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing Scale */
  --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 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 1.75rem;
  --icon-lg: 2.5rem;
  --icon-xl: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.35rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.15rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

/* Links */
a {
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-600);
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  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-accent);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-outline-light:hover {
  background-color: var(--color-text-inverse);
  color: var(--color-primary);
}

/* Icon Sizing */
.icon-sm {
  font-size: var(--icon-sm);
}

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

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

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

/* Card Component */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
    gap: var(--space-md);
  }
}

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

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .card-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.card-title {
  font-size: 1.15rem;
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.35rem;
  }
}

.card-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .card-description {
    font-size: 1rem;
  }
}

/* Grid Components */
.grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid {
    gap: var(--space-lg);
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

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

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

/* Flex Components */
.flex {
  display: flex;
  flex-direction: row;
}

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

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

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

.flex-start {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-semibold {
  font-weight: var(--font-weight-medium);
}

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

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

/* Visibility */
.hidden {
  display: none;
}

.visible {
  display: block;
}

/* List Styles */
ul, ol {
  list-style-position: inside;
}

li {
  margin-bottom: 0.5rem;
}

/* Form Styles */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

@media (min-width: 768px) {
  input,
  textarea,
  select {
    padding: 1rem;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

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

.form-submit-btn {
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: var(--font-weight-600);
  font-size: 1rem;
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  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);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-base);
}

.animate-slide-up {
  animation: slideInUp var(--transition-base);
}

.animate-slide-down {
  animation: slideInDown var(--transition-base);
}

.animate-slide-left {
  animation: slideInLeft var(--transition-base);
}

.animate-slide-right {
  animation: slideInRight var(--transition-base);
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Badge Component */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.35rem 0.75rem;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.badge-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--color-danger);
}

/* Border Accents */
.border-left-primary {
  border-left: 4px solid var(--color-primary);
}

.border-top-primary {
  border-top: 4px solid var(--color-primary);
}

.border-accent {
  border: 1px solid #e2e8f0;
}

/* Scroll Smooth */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.header-habit-forge {
    background-color: var(--color-bg-primary);
    box-shadow: var(--shadow-md);
    position: static;
    top: 0;
    z-index: 100;
    width: 100%;
  }

  .header-habit-forge-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .header-habit-forge-logo {
    flex-shrink: 0;
  }

  .header-habit-forge-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    transition: color var(--transition-base);
  }

  .header-habit-forge-brand:hover {
    color: var(--color-primary-dark);
  }

  .header-habit-forge-brand i {
    font-size: 1.75rem;
  }

  .header-habit-forge-desktop-nav {
    display: none;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    flex: 1;
  }

  .header-habit-forge-nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    transition: color var(--transition-base);
    position: relative;
  }

  .header-habit-forge-nav-link:hover {
    color: var(--color-primary);
  }

  .header-habit-forge-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-habit-forge-nav-link:hover::after {
    width: 100%;
  }

  .header-habit-forge-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-accent);
    color: var(--color-text-inverse);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
  }

  .header-habit-forge-cta-button:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .header-habit-forge-cta-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .header-habit-forge-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .header-habit-forge-mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition-base);
    display: block;
    border-radius: 1px;
  }

  .header-habit-forge-mobile-toggle:hover span {
    background-color: var(--color-primary-dark);
  }

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

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

  .header-habit-forge-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-habit-forge-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 99;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

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

  .header-habit-forge-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-habit-forge-mobile-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-base);
  }

  .header-habit-forge-mobile-close:hover {
    color: var(--color-primary-dark);
  }

  .header-habit-forge-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .header-habit-forge-mobile-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
  }

  .header-habit-forge-mobile-link:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
    padding-left: 2rem;
  }

  .header-habit-forge-mobile-cta {
    display: block;
    margin: 1.5rem;
    padding: 1rem 1.75rem;
    background-color: var(--color-accent);
    color: var(--color-text-inverse);
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
  }

  .header-habit-forge-mobile-cta:hover {
    background-color: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .header-habit-forge-container {
      padding: 1rem 2rem;
      gap: 3rem;
    }

    .header-habit-forge-brand {
      font-size: 1.5rem;
    }

    .header-habit-forge-desktop-nav {
      display: flex;
    }

    .header-habit-forge-cta-button {
      display: inline-block;
    }

    .header-habit-forge-mobile-toggle {
      display: none;
    }

    .header-habit-forge-mobile-menu {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .header-habit-forge-container {
      padding: 1.25rem 3rem;
    }

    .header-habit-forge-desktop-nav {
      gap: 2.5rem;
    }

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

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

    /* Main Container Styles */
.productivity-hub {
  width: 100%;
  background-color: var(--color-bg-primary);
}

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

@media (min-width: 768px) {
  .productivity-hub .hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .hero-section {
    padding: 8rem 0;
  }
}

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

@media (min-width: 1024px) {
  .productivity-hub .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.productivity-hub .hero-text h1 {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.productivity-hub .hero-text p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .productivity-hub .hero-text p {
    font-size: 1.1rem;
  }
}

.productivity-hub .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .productivity-hub .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.productivity-hub .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.productivity-hub .hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Featured Posts Section */
.productivity-hub .featured-posts-section {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .featured-posts-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .featured-posts-section {
    padding: 6rem 0;
  }
}

.productivity-hub .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .productivity-hub .section-header {
    margin-bottom: 4rem;
  }
}

.productivity-hub .section-header h2 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.productivity-hub .section-header p {
  color: #666666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.productivity-hub .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .productivity-hub .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

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

.productivity-hub .post-card {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

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

.productivity-hub .post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .productivity-hub .post-body {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.productivity-hub .post-body h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .productivity-hub .post-body h3 {
    font-size: 1.35rem;
  }
}

.productivity-hub .post-body p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

@media (min-width: 768px) {
  .productivity-hub .post-body p {
    font-size: 1rem;
  }
}

.productivity-hub .post-body .btn {
  align-self: flex-start;
}

.productivity-hub .posts-cta {
  display: flex;
  justify-content: center;
}

/* Benefits Section */
.productivity-hub .benefits-section {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .benefits-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .benefits-section {
    padding: 6rem 0;
  }
}

.productivity-hub .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .productivity-hub .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.productivity-hub .benefit-card {
  padding: 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .productivity-hub .benefit-card {
    padding: 2.5rem;
  }
}

.productivity-hub .benefit-card:hover {
  background-color: #f0f4f8;
  transform: translateY(-4px);
}

.productivity-hub .benefit-icon {
  color: var(--color-primary);
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
}

.productivity-hub .benefit-card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .productivity-hub .benefit-card h3 {
    font-size: 1.35rem;
  }
}

.productivity-hub .benefit-card p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How It Works Section */
.productivity-hub .how-it-works-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .how-it-works-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .how-it-works-section {
    padding: 6rem 0;
  }
}

.productivity-hub .steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .productivity-hub .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .steps-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

.productivity-hub .step {
  background-color: var(--color-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .productivity-hub .step {
    padding: 2.5rem;
  }
}

.productivity-hub .step-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.productivity-hub .step h3 {
  color: #1a1a1a;
  font-size: 1.15rem;
}

@media (min-width: 768px) {
  .productivity-hub .step h3 {
    font-size: 1.25rem;
  }
}

.productivity-hub .step p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .productivity-hub .step p {
    font-size: 1rem;
  }
}

.productivity-hub .steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .productivity-hub .steps-cta {
    margin-top: 3rem;
  }
}

/* About Section */
.productivity-hub .about-section {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .about-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .about-section {
    padding: 6rem 0;
  }
}

.productivity-hub .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .productivity-hub .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.productivity-hub .about-text h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.productivity-hub .about-text p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .productivity-hub .about-text p {
    font-size: 1rem;
  }
}

.productivity-hub .about-text .btn {
  margin-top: 1rem;
}

.productivity-hub .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Statistics Section */
.productivity-hub .statistics-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .statistics-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .statistics-section {
    padding: 6rem 0;
  }
}

.productivity-hub .statistics-section .section-header h2 {
  color: #ffffff;
}

.productivity-hub .statistics-section .section-header p {
  color: #e0e0e0;
}

.productivity-hub .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .productivity-hub .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

.productivity-hub .stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .productivity-hub .stat-card {
    padding: 2.5rem;
  }
}

.productivity-hub .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-light);
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .productivity-hub .stat-number {
    font-size: 3rem;
  }
}

.productivity-hub .stat-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .productivity-hub .stat-card p {
    font-size: 1rem;
  }
}

/* CTA Section */
.productivity-hub .cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .cta-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .cta-section {
    padding: 6rem 0;
  }
}

.productivity-hub .cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

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

.productivity-hub .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .productivity-hub .cta-content p {
    font-size: 1.1rem;
  }
}

.productivity-hub .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .productivity-hub .cta-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.productivity-hub .cta-section .btn-primary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.productivity-hub .cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.productivity-hub .contact-section {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .productivity-hub .contact-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .productivity-hub .contact-section {
    padding: 6rem 0;
  }
}

.productivity-hub .contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .productivity-hub .contact-header {
    margin-bottom: 4rem;
  }
}

.productivity-hub .contact-header h2 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.productivity-hub .contact-header p {
  color: #666666;
  font-size: 1rem;
}

.productivity-hub .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .productivity-hub .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.productivity-hub .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.productivity-hub .info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .productivity-hub .info-item {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.productivity-hub .info-item i {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .productivity-hub .info-item i {
    min-width: 2rem;
  }
}

.productivity-hub .info-item h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
}

.productivity-hub .info-item p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.productivity-hub .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .productivity-hub .contact-form {
    padding: 2.5rem;
  }
}

.productivity-hub .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.productivity-hub .form-group label {
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
}

.productivity-hub .form-group input,
.productivity-hub .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--color-bg-primary);
  color: #1a1a1a;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .productivity-hub .form-group input,
  .productivity-hub .form-group textarea {
    padding: 1rem;
    font-size: 1rem;
  }
}

.productivity-hub .form-group input:focus,
.productivity-hub .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.productivity-hub .form-agreement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.productivity-hub .form-agreement input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
}

.productivity-hub .form-agreement label {
  color: #555555;
  font-size: 0.9rem;
  cursor: pointer;
  margin: 0;
}

.productivity-hub .form-agreement a {
  color: var(--color-primary);
  text-decoration: underline;
}

.productivity-hub .form-submit-btn {
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.cookie-text {
  flex: 1;
}

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

.cookie-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #e0e0e0;
}

.cookie-text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-buttons {
    width: 100%;
    gap: 0.75rem;
  }
}

.cookie-accept,
.cookie-decline {
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.cookie-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

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

/* Responsive Adjustments */
@media (max-width: 640px) {
  .productivity-hub .hero-text h1 {
    font-size: 1.75rem;
  }

  .productivity-hub .section-header h2 {
    font-size: 1.5rem;
  }

  .productivity-hub .stat-number {
    font-size: 2rem;
  }
}

    /* ============================================
     FOOTER COMPONENT STYLES
     ============================================ */

  .footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  /* Footer Content Container */
  .footer-content {
    display: block;
  }

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

  @media (min-width: 768px) {
    .footer-about {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about {
      margin-bottom: 3.5rem;
      padding-bottom: 3.5rem;
    }
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  @media (min-width: 768px) {
    .footer-about-title {
      font-size: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-title {
      font-size: 2rem;
    }
  }

  .footer-about-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-inverse-secondary);
    line-height: 1.7;
    max-width: 90%;
  }

  @media (min-width: 768px) {
    .footer-about-text {
      font-size: 0.95rem;
      max-width: 100%;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-text {
      font-size: 1rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer-nav {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav {
      margin-bottom: 3.5rem;
      padding-bottom: 3.5rem;
    }
  }

  .footer-nav-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
  }

  @media (min-width: 768px) {
    .footer-nav-title {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-title {
      font-size: 1.375rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer-nav-list {
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-list {
      gap: 1.125rem;
    }
  }

  .footer-nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-inverse-secondary);
    text-decoration: none;
    transition: color var(--transition-base), text-decoration var(--transition-base);
    display: inline-block;
    position: relative;
  }

  @media (min-width: 768px) {
    .footer-nav-link {
      font-size: 0.925rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-link {
      font-size: 1rem;
    }
  }

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

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

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

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

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

  @media (min-width: 768px) {
    .footer-legal {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal {
      margin-bottom: 3.5rem;
      padding-bottom: 3.5rem;
    }
  }

  .footer-legal-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
  }

  @media (min-width: 768px) {
    .footer-legal-title {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-title {
      font-size: 1.375rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer-legal-list {
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-list {
      gap: 1.125rem;
    }
  }

  .footer-legal-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-inverse-secondary);
    text-decoration: none;
    transition: color var(--transition-base), text-decoration var(--transition-base);
    display: inline-block;
    position: relative;
  }

  @media (min-width: 768px) {
    .footer-legal-link {
      font-size: 0.925rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-link {
      font-size: 1rem;
    }
  }

  .footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-base);
  }

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

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

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

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

  @media (min-width: 768px) {
    .footer-copyright {
      padding-top: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright {
      padding-top: 2.5rem;
    }
  }

  .footer-copyright-text {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-copyright-text {
      font-size: 0.875rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright-text {
      font-size: 0.925rem;
    }
  }

  /* Accessibility - Focus Visible States */
  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 4px;
  }

  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
    .footer-nav-link,
    .footer-legal-link {
      transition: none;
    }

    .footer-nav-link::after,
    .footer-legal-link::after {
      transition: none;
    }
  }

  /* Container */
  .container {
    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;
    }
  }
    

/* Category Page Styles */
/* Category Page: Productive Habits & Procrastination */

  /* ============================================
     HERO SECTION
     ============================================ */
  .category-hero-productive-habits-procrastination {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .category-hero-productive-habits-procrastination {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .category-hero-productive-habits-procrastination {
      padding: 6rem 0;
    }
  }

  .hero-content-productive-habits-procrastination {
    text-align: center;
  }

  .category-hero-productive-habits-procrastination h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
  }

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

  @media (min-width: 1024px) {
    .category-hero-productive-habits-procrastination h1 {
      font-size: 3.75rem;
      margin-bottom: 2rem;
    }
  }

  .category-hero-productive-habits-procrastination p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .category-hero-productive-habits-procrastination p {
      font-size: 1rem;
    }
  }

  /* ============================================
     POSTS GRID SECTION
     ============================================ */
  .posts-grid-section-productive-habits-procrastination {
    background-color: #f8fafc;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .posts-grid-section-productive-habits-procrastination {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .posts-grid-section-productive-habits-procrastination {
      padding: 6rem 0;
    }
  }

  .posts-grid-productive-habits-procrastination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .posts-grid-productive-habits-procrastination {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

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

  /* ============================================
     CARD STYLING
     ============================================ */
  .card-productive-habits-procrastination {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease-in-out;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .card-productive-habits-procrastination {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .card-productive-habits-procrastination {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .card-productive-habits-procrastination:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
  }

  .card-productive-habits-procrastination img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  @media (min-width: 768px) {
    .card-productive-habits-procrastination img {
      height: 240px;
    }
  }

  @media (min-width: 1024px) {
    .card-productive-habits-procrastination img {
      height: 260px;
    }
  }

  .card-productive-habits-procrastination h3 {
    color: #1a1a1a;
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0;
  }

  @media (min-width: 768px) {
    .card-productive-habits-procrastination h3 {
      font-size: 1.35rem;
    }
  }

  @media (min-width: 1024px) {
    .card-productive-habits-procrastination h3 {
      font-size: 1.5rem;
    }
  }

  .card-productive-habits-procrastination p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .card-productive-habits-procrastination p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .card-productive-habits-procrastination p {
      font-size: 1rem;
    }
  }

  .card-productive-habits-procrastination a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 300ms ease-in-out;
    align-self: flex-start;
  }

  @media (min-width: 768px) {
    .card-productive-habits-procrastination a {
      padding: 0.85rem 1.75rem;
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .card-productive-habits-procrastination a {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .card-productive-habits-procrastination a:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
  }

  /* ============================================
     ADDITIONAL SECTION 1: STRATEGIES
     ============================================ */
  .additional-section-1-productive-habits-procrastination {
    background-color: #ffffff;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .additional-section-1-productive-habits-procrastination {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .additional-section-1-productive-habits-procrastination {
      padding: 6rem 0;
    }
  }

  .additional-content-1-productive-habits-procrastination h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }

  @media (min-width: 768px) {
    .additional-content-1-productive-habits-procrastination h2 {
      margin-bottom: 3rem;
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .additional-content-1-productive-habits-procrastination h2 {
      margin-bottom: 4rem;
      font-size: 3rem;
    }
  }

  .strategies-list-productive-habits-procrastination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .strategies-list-productive-habits-procrastination {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .strategies-list-productive-habits-procrastination {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }

  .strategy-item-productive-habits-procrastination {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 100%);
    border-left: 4px solid #667eea;
    border-radius: 8px;
  }

  @media (min-width: 768px) {
    .strategy-item-productive-habits-procrastination {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .strategy-item-productive-habits-procrastination {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .strategy-icon-productive-habits-procrastination {
    font-size: 2rem;
    color: #667eea;
  }

  @media (min-width: 1024px) {
    .strategy-icon-productive-habits-procrastination {
      font-size: 2.5rem;
    }
  }

  .strategy-item-productive-habits-procrastination h3 {
    color: #1a1a1a;
    font-size: 1.15rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .strategy-item-productive-habits-procrastination h3 {
      font-size: 1.35rem;
    }
  }

  @media (min-width: 1024px) {
    .strategy-item-productive-habits-procrastination h3 {
      font-size: 1.5rem;
    }
  }

  .strategy-text-productive-habits-procrastination {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .strategy-item-productive-habits-procrastination p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .strategy-item-productive-habits-procrastination p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .strategy-item-productive-habits-procrastination p {
      font-size: 1rem;
    }
  }

  /* ============================================
     ADDITIONAL SECTION 2: OBSTACLES
     ============================================ */
  .additional-section-2-productive-habits-procrastination {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f5ff 100%);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .additional-section-2-productive-habits-procrastination {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .additional-section-2-productive-habits-procrastination {
      padding: 6rem 0;
    }
  }

  .additional-content-2-productive-habits-procrastination h2 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }

  @media (min-width: 768px) {
    .additional-content-2-productive-habits-procrastination h2 {
      margin-bottom: 3rem;
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .additional-content-2-productive-habits-procrastination h2 {
      margin-bottom: 4rem;
      font-size: 3rem;
    }
  }

  .obstacles-grid-productive-habits-procrastination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .obstacles-grid-productive-habits-procrastination {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .obstacles-grid-productive-habits-procrastination {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  .obstacle-item-productive-habits-procrastination {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 3px solid #764ba2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  @media (min-width: 768px) {
    .obstacle-item-productive-habits-procrastination {
      padding: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .obstacle-item-productive-habits-procrastination {
      padding: 2rem;
    }
  }

  .obstacle-item-productive-habits-procrastination h3 {
    color: #1a1a1a;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .obstacle-item-productive-habits-procrastination h3 {
      font-size: 1.35rem;
      margin-bottom: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .obstacle-item-productive-habits-procrastination h3 {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
  }

  .obstacle-item-productive-habits-procrastination p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (min-width: 768px) {
    .obstacle-item-productive-habits-procrastination p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .obstacle-item-productive-habits-procrastination p {
      font-size: 1rem;
    }
  }

  /* ============================================
     RESPONSIVE ADJUSTMENTS
     ============================================ */
  @media (max-width: 767px) {
    .category-page-productive-habits-procrastination .container {
      padding: 0 1rem;
    }
  }

  /* ============================================
     ACCESSIBILITY
     ============================================ */
  .card-productive-habits-procrastination a:focus,
  .strategy-item-productive-habits-procrastination:focus-within,
  .obstacle-item-productive-habits-procrastination:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
  }

  /* ============================================
     SMOOTH TRANSITIONS
     ============================================ */
  .card-productive-habits-procrastination,
  .strategy-item-productive-habits-procrastination,
  .obstacle-item-productive-habits-procrastination {
    transition: all 300ms ease-in-out;
  }

  .card-productive-habits-procrastination:hover,
  .strategy-item-productive-habits-procrastination:hover,
  .obstacle-item-productive-habits-procrastination:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

/* Post Page 1 Styles */
/* CSS Isolation for Morning Routine Article */
    .post-morning-routine-thirty-days {
      width: 100%;
    }

    /* Breadcrumbs Navigation */
    .morning-routine-thirty-days-breadcrumbs {
      background-color: var(--color-bg-secondary);
      overflow: hidden;
    }

    .morning-routine-thirty-days-breadcrumbs .container {
      padding: var(--space-sm) 0;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-breadcrumbs .container {
        padding: var(--space-md) 0;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-xs);
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs-content {
        font-size: 1rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs a {
      color: var(--color-primary);
      transition: color var(--transition-fast);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs span {
      color: var(--color-text-secondary);
      font-weight: var(--font-weight-medium);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-breadcrumbs-separator {
      color: var(--color-text-light);
      margin: 0 var(--space-xs);
    }

    /* Hero Section */
    .morning-routine-thirty-days-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      overflow: hidden;
      padding: 4rem 0 5rem;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-hero {
        padding: 6rem 0 7rem;
      }
    }

    @media (min-width: 1024px) {
      .morning-routine-thirty-days-hero {
        padding: 8rem 0 9rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      align-items: center;
      text-align: center;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-hero-meta {
      display: flex;
      flex-direction: row;
      gap: var(--space-md);
      justify-content: center;
      flex-wrap: wrap;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-hero-meta {
        font-size: 1rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-hero-meta span {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* Lead Paragraph */
    .morning-routine-thirty-days-lead {
      background-color: var(--color-bg-primary);
      overflow: hidden;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-lead {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .morning-routine-thirty-days-lead {
        padding: 5rem 0;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-lead-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      max-width: 800px;
      margin: 0 auto;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-lead-text {
      color: var(--color-text-primary);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-lead-text {
        font-size: 1.25rem;
      }
    }

    /* Content Sections */
    .morning-routine-thirty-days-content-section {
      overflow: hidden;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .morning-routine-thirty-days-content-section {
        padding: 5rem 0;
      }
    }

    .morning-routine-thirty-days-content-1 {
      background-color: var(--color-bg-secondary);
    }

    .morning-routine-thirty-days-content-2 {
      background-color: var(--color-bg-primary);
    }

    .morning-routine-thirty-days-content-3 {
      background-color: #f0f4ff;
    }

    .morning-routine-thirty-days-content-4 {
      background-color: var(--color-bg-primary);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-wrapper {
        gap: var(--space-xl);
      }
    }

    /* Section Headings */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section h2 {
      font-size: 1.75rem;
      line-height: 1.3;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section h2 {
        font-size: 2.25rem;
        margin-bottom: var(--space-lg);
      }
    }

    @media (min-width: 1024px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section h2 {
        font-size: 2.75rem;
      }
    }

    .morning-routine-thirty-days-content-1 h2 {
      color: #1a1a1a;
    }

    .morning-routine-thirty-days-content-2 h2 {
      color: #1a1a1a;
    }

    .morning-routine-thirty-days-content-3 h2 {
      color: #2d3748;
    }

    .morning-routine-thirty-days-content-4 h2 {
      color: #1a1a1a;
    }

    /* Paragraphs in Content Sections */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section p {
      color: #333333;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section p {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
      }
    }

    /* Highlight Box */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box {
      background-color: #ffffff;
      border-left: 4px solid var(--color-primary);
      padding: var(--space-md);
      border-radius: var(--radius-md);
      margin: var(--space-lg) 0;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box {
        padding: var(--space-lg);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box h3 {
      color: var(--color-primary);
      font-size: 1.25rem;
      margin-bottom: var(--space-sm);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box h3 {
        font-size: 1.5rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box p {
      color: #333333;
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-highlight-box p {
        font-size: 1rem;
      }
    }

    /* List Styles */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section ul,
    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section ol {
      color: #333333;
      margin: var(--space-md) 0 var(--space-lg) var(--space-md);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section ul,
      .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section ol {
        font-size: 1rem;
        margin-left: var(--space-lg);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section li {
      margin-bottom: var(--space-sm);
      color: #333333;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-content-section li strong {
      color: var(--color-primary);
      font-weight: var(--font-weight-bold);
    }

    /* Step Cards */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-md);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
      }
    }

    @media (min-width: 1024px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      padding: var(--space-md);
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card {
        padding: var(--space-lg);
        gap: var(--space-md);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      font-size: 1.25rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card h3 {
      color: #1a1a1a;
      font-size: 1.1rem;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card p {
      color: #333333;
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-step-card p {
        font-size: 0.95rem;
      }
    }

    /* Image Styling */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-image {
        max-height: 450px;
      }
    }

    /* Related Posts Section */
    .morning-routine-thirty-days-related {
      background-color: #f8f9fa;
      overflow: hidden;
      padding: 4rem 0 5rem;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-related {
        padding: 5rem 0 6rem;
      }
    }

    @media (min-width: 1024px) {
      .morning-routine-thirty-days-related {
        padding: 6rem 0 7rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related h2 {
      color: #1a1a1a;
      font-size: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related h2 {
        font-size: 2.5rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
      }
    }

    @media (min-width: 1024px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card {
        gap: var(--space-lg);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card-body {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      padding: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card-body {
        padding: var(--space-lg);
        gap: var(--space-md);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card h3 {
      color: #1a1a1a;
      font-size: 1.15rem;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card h3 {
        font-size: 1.35rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card p {
      color: #333333;
      font-size: 0.9rem;
      margin-bottom: var(--space-sm);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-related-card p {
        font-size: 0.95rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-link {
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      text-decoration: none;
      transition: color var(--transition-fast);
      align-self: flex-start;
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-related-link:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    /* Conclusion Section */
    .morning-routine-thirty-days-conclusion {
      background-color: #ffffff;
      overflow: hidden;
      padding: 3rem 0 4rem;
    }

    @media (min-width: 768px) {
      .morning-routine-thirty-days-conclusion {
        padding: 4rem 0 5rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      max-width: 800px;
      margin: 0 auto;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion h2 {
      color: #1a1a1a;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion p {
      color: #333333;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion p {
        font-size: 1rem;
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion ul {
      color: #333333;
      margin: var(--space-md) 0 var(--space-lg) var(--space-md);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion ul {
        font-size: 1rem;
        margin-left: var(--space-lg);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-conclusion li {
      color: #333333;
      margin-bottom: var(--space-sm);
    }

    /* Two Column Layout for Content */
    .post-morning-routine-thirty-days .morning-routine-thirty-days-two-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      align-items: center;
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-morning-routine-thirty-days .morning-routine-thirty-days-two-col {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
      }
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-two-col-text {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-two-col-text p {
      margin-bottom: 0;
    }

    .post-morning-routine-thirty-days .morning-routine-thirty-days-two-col-image {
      width: 100%;
      height: auto;
      max-height: 350px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

/* Post Page 2 Styles */
.post-pomodoro-technique-focus {
      background-color: var(--color-bg-primary);
    }

    /* Breadcrumbs Navigation */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs {
      background-color: var(--color-bg-secondary);
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs-content {
        font-size: 1rem;
        gap: 1rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs a {
      color: var(--color-primary);
      transition: color var(--transition-fast);
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-breadcrumbs span {
      color: var(--color-text-secondary);
    }

    /* Hero Section */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero {
      background-color: #0f172a;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-content {
        gap: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-lead {
      color: #e2e8f0;
      font-size: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-lead {
        font-size: 1.125rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
      color: #cbd5e1;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-meta {
        font-size: 1rem;
        gap: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* Content Section 1 */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 h2 {
        font-size: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-image {
        height: 400px;
        order: 2;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-text {
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1-text {
        order: 1;
      }
    }

    /* Content Section 2 - Benefits */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-2 h2 {
        font-size: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-icon {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(99, 102, 241, 0.1);
      border-radius: var(--radius-md);
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-title {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-title {
        font-size: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-description {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-benefit-description {
        font-size: 0.95rem;
      }
    }

    /* Content Section 3 - How to Use */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-3 h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-steps-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-steps-container {
        gap: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-step {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      padding: 1.5rem;
      background-color: #f8fafc;
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-step {
        gap: 2rem;
        padding: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      min-width: 2.5rem;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      font-weight: var(--font-weight-bold);
      font-size: 1.1rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-step-number {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        font-size: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-step-content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-step-title {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-step-title {
        font-size: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-step-description {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-step-description {
        font-size: 0.95rem;
      }
    }

    /* Content Section 4 - Tips */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 {
      background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 h2 {
      color: #ffffff;
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-4 h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-tips-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-tips-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-box {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: var(--radius-lg);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-box {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-title {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-title {
        font-size: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-text {
      color: #475569;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-tip-text {
        font-size: 0.95rem;
      }
    }

    /* Conclusion Section */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion-content {
        gap: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion h2 {
      color: #0f172a;
      font-size: 1.75rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion h2 {
        font-size: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-conclusion p {
        font-size: 1rem;
      }
    }

    /* Related Posts Section */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-related {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related {
        padding: 6rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-header {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-header {
        margin-bottom: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related h2 {
      color: #0f172a;
      font-size: 1.75rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related h2 {
        font-size: 3rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-description {
      color: #64748b;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-description {
        font-size: 1rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background-color: #f8fafc;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
      height: 100%;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card {
        gap: 1.25rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-content {
        padding: 1.75rem;
        gap: 1rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-title {
      color: #0f172a;
      font-size: 1rem;
      font-weight: var(--font-weight-bold);
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-title {
        font-size: 1.1rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-description {
      color: #64748b;
      font-size: 0.875rem;
      line-height: 1.6;
      flex: 1;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-description {
        font-size: 0.9rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-link {
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      font-size: 0.9rem;
      transition: color var(--transition-fast);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-related-card-link:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    /* List Styles */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 ul,
    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 ol {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 ul,
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 ol {
        margin-left: 2rem;
        margin-bottom: 2rem;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 li {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-content-1 li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    /* Highlight Box */
    .post-pomodoro-technique-focus .pomodoro-technique-focus-highlight {
      background-color: #eff6ff;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-highlight {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .post-pomodoro-technique-focus .pomodoro-technique-focus-highlight p {
      color: #1e3a8a;
      font-size: 0.95rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-pomodoro-technique-focus .pomodoro-technique-focus-highlight p {
        font-size: 1rem;
      }
    }

/* Post Page 3 Styles */
.post-physical-activity-productivity-boost {
      width: 100%;
    }

    /* ============ BREADCRUMBS ============ */
    .physical-activity-productivity-boost-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs a,
    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs span {
      font-size: 0.875rem;
      color: #64748b;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs a,
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs span {
        font-size: 1rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs a {
      color: #6366f1;
      transition: color 300ms ease-in-out;
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-breadcrumbs a:hover {
      color: #4f46e5;
    }

    /* ============ HERO SECTION ============ */
    .physical-activity-productivity-boost-hero {
      background-color: #0f172a;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-hero {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-content {
        gap: 2rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-lead {
      color: #e2e8f0;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-lead {
        font-size: 1.1rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
      color: #94a3b8;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-hero-meta {
        font-size: 1rem;
        gap: 2rem;
      }
    }

    /* ============ CONTENT SECTION 1 ============ */
    .physical-activity-productivity-boost-content-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-content-1 {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-text {
        gap: 1.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1 h2 {
        font-size: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1 p {
        font-size: 1rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-image {
      flex: 1;
      min-height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-image {
        min-height: 400px;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-1-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ============ CONTENT SECTION 2 ============ */
    .physical-activity-productivity-boost-content-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-content-2 {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2-content {
        gap: 2.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2 h2 {
        font-size: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-2 p {
        font-size: 1rem;
      }
    }

    .physical-activity-productivity-boost-benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .physical-activity-productivity-boost-benefit-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border-left: 4px solid #6366f1;
      transition: all 300ms ease-in-out;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-benefit-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .physical-activity-productivity-boost-benefit-card:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .physical-activity-productivity-boost-benefit-icon {
      font-size: 2rem;
      color: #6366f1;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-benefit-icon {
        font-size: 2.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-benefit-card h3 {
      color: #1e293b;
      font-size: 1.15rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-benefit-card h3 {
        font-size: 1.35rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-benefit-card h3 {
        font-size: 1.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-benefit-card p {
      color: #64748b;
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-benefit-card p {
        font-size: 0.95rem;
      }
    }

    /* ============ CONTENT SECTION 3 ============ */
    .physical-activity-productivity-boost-content-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-content-3 {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3-wrapper {
        flex-direction: row-reverse;
        align-items: center;
        gap: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3-text {
        gap: 1.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3 h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3 h2 {
        font-size: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-3 p {
        font-size: 1rem;
      }
    }

    .physical-activity-productivity-boost-tips-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-tips-list {
        gap: 1.25rem;
      }
    }

    .physical-activity-productivity-boost-tip-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      padding: 1rem;
      background-color: #f8fafc;
      border-radius: 8px;
      border-left: 3px solid #10b981;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-tip-item {
        gap: 1.25rem;
        padding: 1.25rem;
      }
    }

    .physical-activity-productivity-boost-tip-number {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #10b981;
      color: #ffffff;
      border-radius: 50%;
      font-weight: 700;
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-tip-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-tip-item h3 {
      color: #1e293b;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-tip-item h3 {
        font-size: 1.1rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-tip-item p {
      color: #64748b;
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-tip-item p {
        font-size: 0.95rem;
      }
    }

    .physical-activity-productivity-boost-content-3-image {
      flex: 1;
      min-height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-content-3-image {
        min-height: 400px;
      }
    }

    .physical-activity-productivity-boost-content-3-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ============ CONTENT SECTION 4 ============ */
    .physical-activity-productivity-boost-content-4 {
      background-color: #0f172a;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-content-4 {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4-content {
        gap: 2.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4 h2 {
      color: #ffffff;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4 h2 {
        font-size: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4 p {
      color: #e2e8f0;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-content-4 p {
        font-size: 1rem;
      }
    }

    .physical-activity-productivity-boost-highlight-box {
      padding: 2rem;
      background-color: rgba(99, 102, 241, 0.1);
      border-left: 4px solid #6366f1;
      border-radius: 8px;
      backdrop-filter: blur(10px);
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-highlight-box {
        padding: 2.5rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-highlight-box h3 {
      color: #818cf8;
      font-size: 1.15rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-highlight-box h3 {
        font-size: 1.35rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-highlight-box p {
      color: #e2e8f0;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-highlight-box p {
        font-size: 1rem;
      }
    }

    /* ============ RELATED POSTS SECTION ============ */
    .physical-activity-productivity-boost-related {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-related {
        padding: 6rem 0;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-content {
        gap: 3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related h2 {
      color: #1e293b;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related h2 {
        font-size: 3rem;
      }
    }

    .physical-activity-productivity-boost-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .physical-activity-productivity-boost-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .physical-activity-productivity-boost-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: all 300ms ease-in-out;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-related-card {
        gap: 1.25rem;
      }
    }

    .physical-activity-productivity-boost-related-card:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .physical-activity-productivity-boost-related-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background-color: #e2e8f0;
    }

    .physical-activity-productivity-boost-related-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .physical-activity-productivity-boost-related-text {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-related-text {
        gap: 1rem;
        padding: 1.75rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-card h3 {
      color: #1e293b;
      font-size: 1.15rem;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-card h3 {
        font-size: 1.3rem;
      }
    }

    .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-card p {
      color: #64748b;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-physical-activity-productivity-boost .physical-activity-productivity-boost-related-card p {
        font-size: 0.95rem;
      }
    }

    .physical-activity-productivity-boost-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #6366f1;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 300ms ease-in-out;
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .physical-activity-productivity-boost-related-link {
        font-size: 1rem;
      }
    }

    .physical-activity-productivity-boost-related-link:hover {
      color: #4f46e5;
      gap: 0.75rem;
    }

    .physical-activity-productivity-boost-related-link i {
      font-size: 0.85rem;
    }

/* Post Page 4 Styles */
/* Smart Goals Achievement System - Complete CSS Isolation */
    
    .post-smart-goals-achievement-system {
      width: 100%;
    }

    /* Breadcrumbs Navigation */
    .smart-goals-achievement-system-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-breadcrumbs {
        padding: 1.25rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-breadcrumbs-content {
        font-size: 0.95rem;
        gap: 1rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-breadcrumbs-content a {
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      transition: color var(--transition-fast);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-breadcrumbs-content a:hover {
      color: var(--color-primary-dark);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-breadcrumbs-content span {
      color: var(--color-text-primary);
      font-weight: var(--font-weight-medium);
    }

    /* Hero Section */
    .smart-goals-achievement-system-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-hero {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-hero-content {
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-lead {
      font-size: 1rem;
      line-height: 1.7;
      color: #e2e8f0;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-lead {
        font-size: 1.1rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: #cbd5e1;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-hero-meta {
        gap: 2rem;
        font-size: 0.95rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* Content Section 1 - Introduction */
    .smart-goals-achievement-system-content-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-content-1 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-content-1 {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1 p {
        font-size: 1rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-text {
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-1-image {
        height: 400px;
      }
    }

    /* Content Section 2 - SMART Framework */
    .smart-goals-achievement-system-content-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-content-2 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-content-2 {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-2-content {
        gap: 3rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-2 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-2 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card {
      background-color: #ffffff;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all var(--transition-base);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-letter {
      font-size: 1.75rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-letter {
        font-size: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card h3 {
      color: #0f172a;
      font-size: 1.15rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card h3 {
        font-size: 1.35rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-smart-card p {
        font-size: 0.95rem;
      }
    }

    /* Content Section 3 - Benefits */
    .smart-goals-achievement-system-content-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-content-3 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-content-3 {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefits-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-benefits-list {
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-item {
        gap: 1.5rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-icon {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.35rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-text h3 {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-text h3 {
        font-size: 1.25rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-text p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-benefit-text p {
        font-size: 0.95rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-image {
        height: 400px;
        order: 2;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-text {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-3-text {
        order: 1;
      }
    }

    /* Content Section 4 - Implementation Steps */
    .smart-goals-achievement-system-content-4 {
      background-color: #f0f9ff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-content-4 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-content-4 {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-4-content {
        gap: 3rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-4 h2 {
      color: #0f172a;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-4 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-4 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-steps-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-steps-list {
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-step-item {
      background-color: #ffffff;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
      border-top: 4px solid var(--color-accent);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-step-item {
        padding: 2rem;
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-step-number {
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      background-color: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.25rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.35rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-step-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-step-content h3 {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-step-content h3 {
        font-size: 1.25rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-step-content p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-step-content p {
        font-size: 0.95rem;
      }
    }

    /* Content Section 5 - Conclusion */
    .smart-goals-achievement-system-content-5 {
      background-color: #1e293b;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-content-5 {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-content-5 {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5-content {
        gap: 2rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5 h2 {
      color: #ffffff;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5 p {
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-content-5 p {
        font-size: 1rem;
      }
    }

    /* Related Posts Section */
    .smart-goals-achievement-system-related {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-goals-achievement-system-related {
        padding: 4.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-goals-achievement-system-related {
        padding: 6rem 0;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-content {
        gap: 3rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related h2 {
      color: #0f172a;
      font-size: 1.75rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card {
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      transition: all var(--transition-base);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-body {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card h3 {
      color: #0f172a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card p {
      color: #64748b;
      font-size: 0.85rem;
      line-height: 1.6;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card p {
        font-size: 0.9rem;
      }
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      font-size: 0.9rem;
      transition: color var(--transition-fast);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-link:hover {
      color: var(--color-primary-dark);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-link i {
      font-size: 0.8rem;
      transition: transform var(--transition-fast);
    }

    .post-smart-goals-achievement-system .smart-goals-achievement-system-related-card-link:hover i {
      transform: translateX(4px);
    }

/* Post Page 5 Styles */
.post-habit-tracking-metrics-success {
      width: 100%;
    }

    /* Breadcrumbs */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs {
      background-color: #f8fafc;
      padding: 1rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs .container {
        font-size: 1rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color var(--transition-fast);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-breadcrumbs span {
      color: var(--color-text-secondary);
      font-weight: var(--font-weight-medium);
    }

    /* Hero Section */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero {
      background-color: #0a0a0a;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero-content {
        gap: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-lead {
      color: #e2e8f0;
      font-size: 1rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-lead {
        font-size: 1.1rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: #94a3b8;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-meta {
        gap: 2rem;
        font-size: 0.95rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-meta span {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    /* Section 1: Introduction */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 h2 {
      color: #0a0a0a;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-1-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    /* Section 2: Key Metrics */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 h2 {
      color: #0a0a0a;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2 h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-2-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background-color: rgba(99, 102, 241, 0.1);
      border-radius: var(--radius-md);
      color: var(--color-primary);
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card h3 {
      color: #0a0a0a;
      font-size: 1.15rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card h3 {
        font-size: 1.35rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card p {
      color: #475569;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-metric-card p {
        font-size: 0.95rem;
      }
    }

    /* Section 3: Tracking Methods */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 h2 {
      color: #0a0a0a;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-item {
        gap: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-number {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      font-weight: var(--font-weight-bold);
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-text h3 {
      color: #0a0a0a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-text h3 {
        font-size: 1.25rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-text p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-method-text p {
        font-size: 0.95rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-3-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    /* Section 4: Advanced Analytics */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 h2 {
      color: #ffffff;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 p {
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-4 p {
        font-size: 1rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tips-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tips-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box:hover {
      background-color: rgba(255, 255, 255, 0.12);
      border-color: rgba(99, 102, 241, 0.3);
      transform: translateY(-4px);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: rgba(99, 102, 241, 0.2);
      border-radius: var(--radius-md);
      color: #818cf8;
      font-size: 1.35rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box h3 {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box h3 {
        font-size: 1.25rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box p {
      color: #cbd5e1;
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-tip-box p {
        font-size: 0.95rem;
      }
    }

    /* Section 5: Conclusion */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 h2 {
      color: #0a0a0a;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 p {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-section-5 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-highlight-box {
      background-color: #ffffff;
      border-left: 4px solid var(--color-accent);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-highlight-box {
        padding: 2rem;
        margin-top: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-highlight-box p {
      color: #1e293b;
      font-weight: var(--font-weight-medium);
      margin: 0;
    }

    /* Related Posts Section */
    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related {
        padding: 6rem 0;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related h2 {
      color: #0a0a0a;
      font-size: 1.75rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related h2 {
        font-size: 2.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card {
        gap: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-content {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card h3 {
      color: #0a0a0a;
      font-size: 1.1rem;
      font-weight: var(--font-weight-bold);
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card p {
      color: #64748b;
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-card p {
        font-size: 0.95rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      font-size: 0.9rem;
      text-decoration: none;
      transition: color var(--transition-fast);
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-link {
        font-size: 0.95rem;
      }
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-link:hover {
      color: var(--color-primary-dark);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-link i {
      transition: transform var(--transition-fast);
    }

    .post-habit-tracking-metrics-success .habit-tracking-metrics-success-related-link:hover i {
      transform: translateX(4px);
    }

/* Privacy Page Styles */
.docs-center {
    overflow: hidden;
  }

  .docs-center h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .docs-center h1 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .docs-center h1 {
      font-size: 3rem;
    }
  }

  .docs-center h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .docs-center h2 {
      font-size: 1.875rem;
    }
  }

  @media (min-width: 1024px) {
    .docs-center h2 {
      font-size: 2.25rem;
    }
  }

  .docs-center p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center p {
      font-size: 1rem;
      margin-bottom: var(--space-lg);
    }
  }

  .docs-center-hero {
    background-color: var(--color-bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .docs-center-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .docs-center-hero {
      padding: 6rem 0;
    }
  }

  .docs-center-hero .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center-hero .container {
      padding: 0 var(--space-lg);
    }
  }

  .docs-center-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  @media (min-width: 768px) {
    .docs-center-hero-content {
      gap: var(--space-md);
    }
  }

  .docs-center-hero-content h1 {
    color: var(--color-text-primary);
  }

  .docs-center-hero-meta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-regular);
  }

  .docs-center-content-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .docs-center-content-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .docs-center-content-section {
      padding: 6rem 0;
    }
  }

  .docs-center-content-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center-content-section .container {
      padding: 0 var(--space-lg);
    }
  }

  .docs-center-body-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center-body-content {
      gap: var(--space-lg);
    }
  }

  .docs-center-body-content h2 {
    color: var(--color-text-primary);
    padding-top: var(--space-md);
  }

  .docs-center-body-content p {
    color: var(--color-text-secondary);
  }

  .docs-center-body-content strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
  }

  .docs-center-contact-section {
    background-color: var(--color-bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .docs-center-contact-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .docs-center-contact-section {
      padding: 6rem 0;
    }
  }

  .docs-center-contact-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center-contact-section .container {
      padding: 0 var(--space-lg);
    }
  }

  .docs-center-contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .docs-center-contact-content {
      gap: var(--space-lg);
    }
  }

  .docs-center-contact-content h2 {
    color: var(--color-text-primary);
  }

  .docs-center-contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .docs-center-contact-item {
      padding: var(--space-lg);
    }
  }

  .docs-center-contact-item-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .docs-center-contact-item-label {
      font-size: 1rem;
    }
  }

  .docs-center-contact-item-value {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    word-break: break-word;
  }

  @media (min-width: 768px) {
    .docs-center-contact-item-value {
      font-size: 1rem;
    }
  }

  .docs-center-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
  }

  @media (min-width: 768px) {
    .docs-center-list {
      gap: var(--space-md);
      margin: var(--space-lg) 0;
    }
  }

  .docs-center-list-item {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .docs-center-list-item {
      font-size: 1rem;
      gap: var(--space-md);
    }
  }

  .docs-center-list-item::before {
    content: '•';
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
  }

/* Thank You Page Styles */
/* =====================================================
     THANK YOU PAGE STYLES
     ===================================================== */

  /* Root Container */
  .main {
    background-color: var(--color-bg-primary);
  }

  /* =====================================================
     HERO SECTION
     ===================================================== */
  .thank-hero-section {
    background-color: var(--color-bg-tertiary);
    padding: 4rem 1.5rem;
    overflow: hidden;
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .thank-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: icon-bounce 0.8s ease-out;
  }

  .thank-icon i {
    font-size: 2.5rem;
    color: var(--color-text-inverse);
  }

  .thank-hero-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin: 0;
    letter-spacing: -0.5px;
  }

  .thank-lead {
    font-size: 1.125rem;
    color: var(--color-text-inverse-secondary);
    margin: 0;
    font-weight: var(--font-weight-regular);
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 6rem 2rem;
    }

    .thank-hero-content {
      gap: 2rem;
    }

    .thank-icon {
      width: 6rem;
      height: 6rem;
    }

    .thank-icon i {
      font-size: 3rem;
    }

    .thank-hero-section h1 {
      font-size: 3.5rem;
    }

    .thank-lead {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 8rem 2rem;
    }

    .thank-hero-content {
      gap: 2.5rem;
    }

    .thank-icon {
      width: 7rem;
      height: 7rem;
    }

    .thank-icon i {
      font-size: 3.5rem;
    }

    .thank-hero-section h1 {
      font-size: 4rem;
    }
  }

  /* =====================================================
     CONFIRMATION SECTION
     ===================================================== */
  .thank-confirmation-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 1.5rem;
    overflow: hidden;
  }

  .thank-confirmation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .thank-message h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 1rem 0;
  }

  .thank-message > p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 0 2rem 0;
  }

  /* Benefits List */
  .thank-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .benefit-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-md);
  }

  .benefit-item i {
    color: var(--color-accent);
    font-size: var(--icon-md);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .benefit-item span {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Next Steps */
  .thank-next-steps h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 1.5rem 0;
  }

  .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .steps-list li {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    flex-shrink: 0;
  }

  .step-content {
    flex: 1;
  }

  .step-content strong {
    display: block;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .step-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-confirmation-section {
      padding: 5rem 2rem;
    }

    .thank-confirmation-content {
      gap: 4rem;
      grid-template-columns: 1fr 1fr;
    }

    .thank-message h2 {
      font-size: 2rem;
    }

    .thank-message > p {
      font-size: 1.05rem;
    }

    .benefit-item {
      padding: 1.25rem;
    }

    .thank-next-steps h3 {
      font-size: 1.75rem;
    }

    .steps-list {
      gap: 2rem;
    }

    .steps-list li {
      gap: 2rem;
    }

    .step-number {
      width: 3rem;
      height: 3rem;
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-confirmation-section {
      padding: 6rem 2rem;
    }

    .thank-confirmation-content {
      gap: 5rem;
    }

    .thank-message h2 {
      font-size: 2.25rem;
    }

    .thank-next-steps h3 {
      font-size: 2rem;
    }
  }

  /* =====================================================
     CTA SECTION
     ===================================================== */
  .thank-cta-section {
    background-color: var(--color-bg-secondary);
    padding: 3rem 1.5rem;
    overflow: hidden;
  }

  .thank-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .thank-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0;
  }

  .thank-cta-section p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-cta-section {
      padding: 4rem 2rem;
    }

    .thank-cta-content {
      gap: 2rem;
    }

    .thank-cta-section h2 {
      font-size: 2rem;
    }

    .thank-cta-section p {
      font-size: 1.05rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section {
      padding: 5rem 2rem;
    }

    .thank-cta-section h2 {
      font-size: 2.25rem;
    }
  }

  /* =====================================================
     BUTTON STYLES
     ===================================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    gap: 0.5rem;
  }

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

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

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

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

  /* =====================================================
     ANIMATIONS
     ===================================================== */
  @keyframes icon-bounce {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* =====================================================
     CONTAINER
     ===================================================== */
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

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

/* 404 Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Rubik:wght@500;700&display=swap');

  :root {
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-primary-light: #818cf8;
    --color-accent: #10b981;
    --color-accent-dark: #059669;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #0f172a;
    --color-bg-dark: #0a0a0a;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-light: #94a3b8;
    --color-text-inverse: #ffffff;
    --color-text-inverse-secondary: #e2e8f0;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --icon-sm: 1.25rem;
    --icon-md: 1.75rem;
    --icon-lg: 2.5rem;
    --icon-xl: 3.5rem;
  }

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

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

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  /* ===== Error Hero Section ===== */
  .error-hero-section {
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, #1a2a4a 100%);
    padding: var(--space-xl) 0;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-hero-section {
      padding: var(--space-3xl) 0;
      min-height: 90vh;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: var(--space-3xl) 0;
      min-height: 100vh;
    }
  }

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

  @media (min-width: 768px) {
    .error-hero-content {
      flex-direction: row;
      gap: var(--space-2xl);
      align-items: center;
      justify-content: space-between;
    }
  }

  /* ===== Error Illustration ===== */
  .error-illustration {
    width: 100%;
    max-width: 350px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      max-width: 400px;
      flex: 1;
    }
  }

  .illustration-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Lost Character */
  .lost-character {
    position: relative;
    width: 120px;
    height: 180px;
    animation: sway 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .lost-character {
      width: 150px;
      height: 220px;
    }
  }

  @keyframes sway {
    0%, 100% {
      transform: translateX(0) rotate(0deg);
    }
    50% {
      transform: translateX(10px) rotate(-2deg);
    }
  }

  .character-head {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .character-head {
      width: 50px;
      height: 50px;
    }
  }

  .character-head::before,
  .character-head::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color-bg-dark);
    border-radius: 50%;
    top: 18px;
  }

  @media (min-width: 768px) {
    .character-head::before,
    .character-head::after {
      width: 8px;
      height: 8px;
      top: 22px;
    }
  }

  .character-head::before {
    left: 12px;
  }

  .character-head::after {
    right: 12px;
  }

  .character-body {
    width: 30px;
    height: 50px;
    background-color: var(--color-accent);
    margin: 8px auto 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .character-body {
      width: 38px;
      height: 60px;
      margin: 10px auto 0;
    }
  }

  .character-arms {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    display: flex;
    justify-content: space-between;
  }

  @media (min-width: 768px) {
    .character-arms {
      top: 65px;
      width: 100px;
    }
  }

  .arm {
    width: 12px;
    height: 40px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-sm);
    transform-origin: top center;
  }

  @media (min-width: 768px) {
    .arm {
      width: 14px;
      height: 50px;
    }
  }

  .arm-left {
    animation: armSwing 2s ease-in-out infinite;
  }

  .arm-right {
    animation: armSwing 2s ease-in-out infinite reverse;
  }

  @keyframes armSwing {
    0%, 100% {
      transform: rotate(-20deg);
    }
    50% {
      transform: rotate(20deg);
    }
  }

  .character-legs {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    display: flex;
    gap: 6px;
  }

  @media (min-width: 768px) {
    .character-legs {
      top: 125px;
      width: 40px;
      gap: 8px;
    }
  }

  .leg {
    width: 10px;
    height: 40px;
    background-color: var(--color-text-primary);
    border-radius: var(--radius-sm);
    transform-origin: top center;
  }

  @media (min-width: 768px) {
    .leg {
      width: 12px;
      height: 50px;
    }
  }

  .leg-left {
    animation: legStep 1.5s ease-in-out infinite;
  }

  .leg-right {
    animation: legStep 1.5s ease-in-out infinite reverse;
  }

  @keyframes legStep {
    0%, 100% {
      transform: rotate(-15deg);
    }
    50% {
      transform: rotate(15deg);
    }
  }

  /* Floating Elements */
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .element {
    position: absolute;
    background-color: var(--color-primary);
    opacity: 0.6;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
  }

  .element-1 {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .element-2 {
    width: 15px;
    height: 15px;
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
  }

  .element-3 {
    width: 18px;
    height: 18px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
  }

  .element-4 {
    width: 12px;
    height: 12px;
    bottom: 30%;
    right: 10%;
    animation-delay: 1.5s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-20px) scale(1.2);
      opacity: 0.3;
    }
  }

  .question-mark {
    position: absolute;
    font-size: 120px;
    font-weight: var(--font-weight-bold);
    color: var(--color-warning);
    opacity: 0.15;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: pulse 2s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .question-mark {
      font-size: 160px;
      right: 10%;
    }
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 0.15;
      transform: translateY(-50%) scale(1);
    }
    50% {
      opacity: 0.25;
      transform: translateY(-50%) scale(1.1);
    }
  }

  /* ===== Error Content ===== */
  .error-content {
    flex: 1;
    color: var(--color-text-inverse);
    text-align: center;
  }

  @media (min-width: 768px) {
    .error-content {
      text-align: left;
    }
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-light);
    margin-bottom: var(--space-sm);
    animation: slideInDown 0.6s ease-out;
  }

  @media (min-width: 768px) {
    .error-code {
      font-size: 5.5rem;
      margin-bottom: var(--space-md);
    }
  }

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

  .error-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-md);
    animation: slideInUp 0.6s ease-out 0.1s both;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.25rem;
      margin-bottom: var(--space-lg);
    }
  }

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

  .error-description {
    font-size: 1rem;
    color: var(--color-text-inverse-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    animation: slideInUp 0.6s ease-out 0.2s both;
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1.0625rem;
      margin-bottom: var(--space-xl);
      max-width: 500px;
    }
  }

  /* ===== Error Suggestions ===== */
  .error-suggestions {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--color-accent);
    animation: slideInUp 0.6s ease-out 0.3s both;
  }

  @media (min-width: 768px) {
    .error-suggestions {
      padding: var(--space-lg);
      margin-bottom: var(--space-xl);
      text-align: left;
    }
  }

  .suggestions-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    font-size: 1rem;
  }

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

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

  .suggestions-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--color-text-inverse-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .suggestions-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  @media (min-width: 768px) {
    .suggestions-list li {
      font-size: 1rem;
    }
  }

  /* ===== Button Styles ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
  }

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

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

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

  .btn-large {
    animation: slideInUp 0.6s ease-out 0.4s both;
  }

  .btn i {
    font-size: 1.1em;
  }

  /* ===== Motivation Section ===== */
  .error-motivation-section {
    background-color: var(--color-bg-secondary);
    padding: var(--space-xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-motivation-section {
      padding: var(--space-2xl) 0;
    }
  }

  @media (min-width: 1024px) {
    .error-motivation-section {
      padding: var(--space-3xl) 0;
    }
  }

  .error-motivation-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .error-motivation-content {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .error-motivation-content {
      gap: var(--space-xl);
    }
  }

  .motivation-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .motivation-card {
      padding: var(--space-xl);
      gap: var(--space-md);
      align-items: center;
    }
  }

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

  .card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
  }

  @media (min-width: 768px) {
    .card-icon {
      font-size: 3rem;
      margin-bottom: 0;
    }
  }

  .motivation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0;
  }

  @media (min-width: 768px) {
    .motivation-card h3 {
      font-size: 1.375rem;
    }
  }

  .motivation-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }

  @media (min-width: 768px) {
    .motivation-card p {
      font-size: 0.9375rem;
    }
  }

  /* ===== Accessibility ===== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  html,body{
    overflow-x: hidden;
  }
  .step-number{
    color: #fff !important;
    margin: 0 auto;
  }