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

:root {
  /* Primary Colors - Financial/Security Theme */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-warning: #ef4444;
  
  /* Backgrounds */
  --color-bg-dark: #0f172a;
  --color-bg-light: #ffffff;
  --color-bg-light-alt: #f8fafc;
  --color-bg-medium: #1e293b;
  
  /* Text Colors */
  --color-text-dark: #0f172a;
  --color-text-light: #ffffff;
  --color-text-gray: #64748b;
  --color-text-gray-light: #cbd5e1;
  
  /* Borders & Accents */
  --color-border: #e2e8f0;
  --color-border-dark: #334155;
  
  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Font Sizes - Mobile First */
  --size-h1: 2rem;
  --size-h2: 1.5rem;
  --size-h3: 1.25rem;
  --size-h4: 1.125rem;
  --size-body: 0.875rem;
  --size-small: 0.75rem;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 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: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --size-h1: 2.5rem;
    --size-h2: 2rem;
    --size-h3: 1.5rem;
    --size-h4: 1.25rem;
    --size-body: 1rem;
    --size-small: 0.875rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --size-h1: 3.5rem;
    --size-h2: 2.75rem;
    --size-h3: 1.875rem;
    --size-h4: 1.5rem;
    --size-body: 1rem;
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: var(--size-h1);
}

h2 {
  font-size: var(--size-h2);
}

h3 {
  font-size: var(--size-h3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Icon Styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.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 Styles */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 1.5rem;
  background-color: var(--color-text-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

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

.card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

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

.card-title {
  font-size: var(--size-h4);
  font-weight: 700;
  color: var(--color-text-dark);
}

.card-text {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.7;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-md);
  width: 100%;
}

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

@media (min-width: 1024px) {
  .grid {
    gap: var(--space-2xl);
  }
}

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

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

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

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

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

.flex-row {
  flex-direction: row;
}

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

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

/* Spacing Utilities */
.p-md {
  padding: var(--space-md);
}

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

.p-xl {
  padding: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* List Styles */
ul, ol {
  margin-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  font-size: var(--size-body);
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--size-small);
  font-weight: 600;
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-success {
  background-color: #dcfce7;
  color: var(--color-secondary);
}

.badge-warning {
  background-color: #fef3c7;
  color: #d97706;
}

/* Separator */
.separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.separator-dark {
  background-color: var(--color-border-dark);
}

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

.visible {
  display: block;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}

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

/* Focus States */
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  body {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
  }
}
/* Header Wrapper - CSS Isolation */
  .header {
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    position: static;
    width: 100%;
    box-shadow: var(--shadow-sm);
  }

  /* Header Container */
  .header .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  @media (min-width: 768px) {
    .header .header-container {
      height: 80px;
      padding: 0 var(--space-lg);
    }
  }

  /* Logo */
  .header .header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
  }

  .header .header-logo:hover {
    transform: scale(1.05);
  }

  .header .header-logo-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header .header-logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }

  @media (min-width: 768px) {
    .header .header-logo-text {
      font-size: 1.5rem;
    }
  }

  /* Desktop Navigation */
  .header .header-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
    flex: 1;
    margin-left: var(--space-2xl);
  }

  @media (min-width: 768px) {
    .header .header-nav {
      display: flex;
    }
  }

  .header .header-nav-item {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
  }

  .header .header-nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
  }

  .header .header-nav-item:hover {
    color: var(--color-primary);
  }

  .header .header-nav-item:hover::after {
    width: 100%;
  }

  @media (min-width: 1024px) {
    .header .header-nav-item {
      font-size: 0.9375rem;
    }
  }

  /* Desktop Contact Button */
  .header .header-contact-btn {
    display: none;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .header .header-contact-btn {
      display: block;
    }
  }

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

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

  /* Mobile Menu Toggle Button */
  .header .header-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    transition: var(--transition);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .header .header-mobile-toggle {
      display: none;
    }
  }

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

  .header .header-toggle-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition);
  }

  .header .header-mobile-toggle.active .header-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

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

  /* Mobile Menu Container */
  .header .header-mobile-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-bg-light-alt);
    border-top: 1px solid var(--color-border);
    transition: max-height 0.3s ease-in-out;
  }

  .header .header-mobile-menu.active {
    max-height: 500px;
  }

  @media (min-width: 768px) {
    .header .header-mobile-menu {
      display: none;
    }
  }

  /* Mobile Navigation */
  .header .header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .header .header-mobile-nav-item {
    display: block;
    padding: var(--space-md) var(--space-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
  }

  .header .header-mobile-nav-item:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
  }

  /* Mobile Contact Button */
  .header .header-mobile-contact-btn {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 1rem var(--space-md);
    margin: var(--space-md);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .header .header-mobile-contact-btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-lg);
  }

  .header .header-mobile-contact-btn:active {
    transform: scale(0.98);
  }

  /* Responsive adjustments */
  @media (max-width: 480px) {
    .header .header-container {
      padding: 0 var(--space-sm);
      height: 64px;
    }

    .header .header-logo-text {
      font-size: 1.125rem;
    }

    .header .header-logo-icon {
      font-size: 1.5rem;
    }
  }

    /* Main Page Styles */
  .main-page {
    width: 100%;
    overflow: hidden;
  }

  /* Hero Section */
  .page .hero-section {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

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

  .hero-text h1 {
    font-size: var(--size-h1);
    color: #ffffff;
    margin-bottom: 1rem;
  }

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

  @media (min-width: 1024px) {
    .hero-text h1 {
      font-size: 3.5rem;
    }
  }

  .hero-text p {
    font-size: var(--size-body);
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

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

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Importance Section */
  .page .importance-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .importance-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .section-header h2 {
    font-size: var(--size-h2);
    color: #0f172a;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .section-header h2 {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .section-header h2 {
      font-size: 2.75rem;
    }
  }

  .section-header p {
    font-size: var(--size-body);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .importance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .importance-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
  }

  @media (min-width: 768px) {
    .importance-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

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

  .importance-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    border-radius: var(--radius-md);
    color: #2563eb;
    font-size: 1.5rem;
  }

  .importance-card h3 {
    font-size: var(--size-h4);
    color: #0f172a;
  }

  .importance-card p {
    font-size: var(--size-body);
    color: #64748b;
  }

  /* Facts Section */
  .page .facts-section {
    background-color: #1e293b;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .facts-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .facts-header h2 {
    font-size: var(--size-h2);
    color: #ffffff;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .facts-header h2 {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .facts-header h2 {
      font-size: 2.75rem;
    }
  }

  .facts-header p {
    font-size: var(--size-body);
    color: #cbd5e1;
  }

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

  .facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .fact-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid #2563eb;
    text-align: center;
  }

  @media (min-width: 768px) {
    .fact-item {
      padding: 2rem;
    }
  }

  .fact-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    font-family: var(--font-display);
  }

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

  .fact-item p {
    font-size: var(--size-body);
    color: #cbd5e1;
  }

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

  /* Featured Posts Section */
  .page .featured-posts-section {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .featured-posts-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

  .post-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
  }

  @media (min-width: 768px) {
    .post-card {
      gap: 1.5rem;
    }
  }

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

  .post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

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

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

  @media (min-width: 768px) {
    .post-info {
      padding: 1.5rem;
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .post-info {
      padding: 1.5rem;
    }
  }

  .post-card h3 {
    font-size: var(--size-h4);
    color: #0f172a;
  }

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

  .post-card p {
    font-size: var(--size-body);
    color: #64748b;
  }

  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    font-size: var(--size-body);
    margin-top: auto;
    transition: var(--transition);
  }

  .read-more:hover {
    color: #1e40af;
    transform: translateX(4px);
  }

  .posts-cta {
    text-align: center;
    margin-top: 1rem;
  }

  /* Building Section */
  .page .building-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .building-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .step {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
  }

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

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .step-number {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.5rem;
    }
  }

  .step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-details h3 {
    font-size: var(--size-h4);
    color: #0f172a;
  }

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

  .step-details p {
    font-size: var(--size-body);
    color: #64748b;
  }

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

  .building-image {
    margin-top: 1rem;
  }

  .building-image img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  /* FAQ Section */
  .page .faq-section {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  @media (min-width: 1024px) {
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  .faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #f8fafc;
    transition: var(--transition);
  }

  .faq-item:hover {
    box-shadow: var(--shadow-sm);
  }

  .faq-question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    background-color: #ffffff;
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .faq-question {
      padding: 1.5rem;
    }
  }

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

  .faq-question h3 {
    font-size: var(--size-h4);
    color: #0f172a;
    text-align: left;
  }

  @media (min-width: 768px) {
    .faq-question h3 {
      font-size: 1.125rem;
    }
  }

  .faq-question i {
    color: #2563eb;
    transition: var(--transition);
  }

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

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: var(--size-body);
    color: #64748b;
    line-height: 1.7;
  }

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

  /* Stats Section */
  .page .stats-section {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .stats-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .stat-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid #334155;
    text-align: center;
  }

  @media (min-width: 768px) {
    .stat-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    color: #60a5fa;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    font-family: var(--font-display);
  }

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

  .stat-card p {
    font-size: var(--size-body);
    color: #cbd5e1;
  }

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

  .stats-insight {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .stats-insight {
      padding: 2.5rem;
    }
  }

  .stats-insight h3 {
    font-size: var(--size-h4);
    color: #10b981;
    margin-bottom: 0.5rem;
  }

  .stats-insight p {
    font-size: var(--size-body);
    color: #cbd5e1;
  }

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

  /* Contact Section */
  .page .contact-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

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

  .contact-header h2 {
    font-size: var(--size-h2);
    color: #0f172a;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .contact-header h2 {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .contact-header h2 {
      font-size: 2.75rem;
    }
  }

  .contact-header p {
    font-size: var(--size-body);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
  }

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

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

  .form-group label {
    font-size: var(--size-body);
    font-weight: 600;
    color: #0f172a;
  }

  @media (min-width: 768px) {
    .form-group label {
      font-size: 1rem;
    }
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: var(--size-body);
    font-family: var(--font-body);
    transition: var(--transition);
    color: #0f172a;
    background-color: #ffffff;
  }

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

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

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

  .form-group select {
    cursor: pointer;
  }

  .form-agreement {
    font-size: var(--size-small);
    color: #64748b;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .form-agreement {
      font-size: 0.875rem;
    }
  }

  .form-agreement a {
    color: #2563eb;
    text-decoration: underline;
  }

  .form-agreement a:hover {
    color: #1e40af;
  }

  .form-submit {
    width: 100%;
    margin-top: 0.5rem;
  }

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

  @media (min-width: 768px) {
    .contact-benefits {
      gap: 2rem;
    }
  }

  .contact-benefits h3 {
    font-size: var(--size-h4);
    color: #0f172a;
  }

  @media (min-width: 768px) {
    .contact-benefits h3 {
      font-size: 1.25rem;
    }
  }

  .contact-benefits ul {
    list-style: none;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-benefits li {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0;
    font-size: var(--size-body);
    color: #64748b;
  }

  @media (min-width: 768px) {
    .contact-benefits li {
      font-size: 1rem;
    }
  }

  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    background-color: #10b981;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.75rem;
  }

  /* CTA Final Section */
  .page .cta-section {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .cta-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .cta-section {
      padding: 5rem 0;
    }
  }

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

  .cta-text h2 {
    font-size: var(--size-h2);
    color: #ffffff;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .cta-text h2 {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .cta-text h2 {
      font-size: 2.5rem;
    }
  }

  .cta-text p {
    font-size: var(--size-body);
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 1.5rem;
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
  }

  @media (min-width: 768px) {
    .cookie-banner {
      padding: 2rem;
    }
  }

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

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

  .cookie-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .cookie-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }
  }

  .cookie-content p {
    font-size: var(--size-body);
    color: #cbd5e1;
    text-align: center;
  }

  @media (min-width: 768px) {
    .cookie-content p {
      font-size: 1rem;
      text-align: left;
    }
  }

  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  @media (min-width: 768px) {
    .cookie-actions {
      flex-direction: row;
      gap: 1rem;
      width: auto;
    }
  }

  .btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

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

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

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

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

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

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

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

  .footer-content {
    display: block;
    width: 100%;
  }

  /* ============================================
     ABOUT SECTION
     ============================================ */

  .footer-about {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-about-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .footer-about-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-gray-light);
    line-height: 1.6;
    margin: 0;
  }

  /* ============================================
     NAVIGATION SECTION
     ============================================ */

  .footer-nav-section {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-section-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin: 0 0 1rem 0;
    line-height: 1.3;
  }

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

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

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

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

  /* ============================================
     LEGAL SECTION
     ============================================ */

  .footer-legal-section {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

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

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

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

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

  /* ============================================
     COPYRIGHT SECTION
     ============================================ */

  .footer-copyright {
    display: block;
    padding-top: 1.5rem;
  }

  .footer-copyright-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    margin: 0;
  }

  /* ============================================
     RESPONSIVE DESIGN
     ============================================ */

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

    .footer-about-title {
      font-size: 1.5rem;
    }

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

    .footer-section-title {
      font-size: 1.25rem;
    }

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

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

    .footer-nav,
    .footer-legal {
      gap: 1rem;
    }

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

    .footer-nav-section,
    .footer-legal-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }

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

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .footer-about {
      grid-column: 1;
      border-bottom: none;
      border-right: 1px solid var(--color-border-dark);
      padding-right: 2rem;
      padding-bottom: 0;
      margin-bottom: 0;
    }

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

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

    .footer-copyright {
      grid-column: 1 / -1;
      padding-top: 2rem;
      border-top: 1px solid var(--color-border-dark);
      margin-top: 2rem;
    }

    .footer-about-title {
      font-size: 1.375rem;
    }

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

    .footer-section-title {
      font-size: 1.125rem;
    }

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

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

    .footer-nav,
    .footer-legal {
      gap: 1.25rem;
    }
  }

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

    .footer-content {
      grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem;
    }

    .footer-about {
      padding-right: 3rem;
    }

    .footer-about-title {
      font-size: 1.5rem;
    }

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

    .footer-section-title {
      font-size: 1.25rem;
    }

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

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

  /* ============================================
     ACCESSIBILITY & INTERACTIONS
     ============================================ */

  @media (prefers-reduced-motion: reduce) {
    .footer-link,
    .footer-legal-link {
      transition: none;
    }

    .footer-link:hover {
      transform: none;
    }
  }

  /* Focus visible for better keyboard navigation */
  .footer-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
  }
    

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

    :root {
      /* Primary Colors - Financial/Security Theme */
      --color-primary: #2563eb;
      --color-primary-dark: #1e40af;
      --color-primary-light: #dbeafe;
      --color-secondary: #10b981;
      --color-accent: #f59e0b;
      --color-warning: #ef4444;
      
      /* Backgrounds */
      --color-bg-dark: #0f172a;
      --color-bg-light: #ffffff;
      --color-bg-light-alt: #f8fafc;
      --color-bg-medium: #1e293b;
      
      /* Text Colors */
      --color-text-dark: #0f172a;
      --color-text-light: #ffffff;
      --color-text-gray: #64748b;
      --color-text-gray-light: #cbd5e1;
      
      /* Borders & Accents */
      --color-border: #e2e8f0;
      --color-border-dark: #334155;
      
      /* Typography */
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      
      /* Font Sizes - Mobile First */
      --size-h1: 2rem;
      --size-h2: 1.5rem;
      --size-h3: 1.25rem;
      --size-h4: 1.125rem;
      --size-body: 0.875rem;
      --size-small: 0.75rem;
      
      /* Spacing Scale */
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;
      --space-4xl: 5rem;
      --space-5xl: 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: 0.375rem;
      --radius-md: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-2xl: 1.5rem;
      
      /* Icon Sizes */
      --icon-sm: 1.25rem;
      --icon-md: 2rem;
      --icon-lg: 3rem;
      --icon-xl: 4rem;
      
      /* Transitions */
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (min-width: 768px) {
      :root {
        --size-h1: 2.5rem;
        --size-h2: 2rem;
        --size-h3: 1.5rem;
        --size-h4: 1.25rem;
        --size-body: 1rem;
        --size-small: 0.875rem;
      }
    }

    @media (min-width: 1024px) {
      :root {
        --size-h1: 3.5rem;
        --size-h2: 2.75rem;
        --size-h3: 1.875rem;
        --size-h4: 1.5rem;
        --size-body: 1rem;
      }
    }

    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.2;
    }

    h1 { font-size: var(--size-h1); }
    h2 { font-size: var(--size-h2); }
    h3 { font-size: var(--size-h3); }
    h4 { font-size: var(--size-h4); }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Icon Styles */
    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

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

    /* Grid System */
    .grid {
      display: grid;
      gap: var(--space-md);
      width: 100%;
    }

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

    @media (min-width: 1024px) {
      .grid {
        gap: var(--space-2xl);
      }
    }

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

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

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

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

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

    .flex-row {
      flex-direction: row;
    }

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

    .items-start {
      align-items: flex-start;
    }

    .justify-center {
      justify-content: center;
    }

    .justify-between {
      justify-content: space-between;
    }

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

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

    /* ============================================
       CATEGORY PAGE: EMERGENCY FUND CANADA
       ============================================ */

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

    @media (min-width: 768px) {
      .category-hero-emergency-fund-canada {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .category-hero-emergency-fund-canada {
        padding: 6rem 0;
      }
    }

    .hero-content-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .hero-content-emergency-fund-canada {
        gap: var(--space-lg);
      }
    }

    .hero-icon-emergency-fund-canada {
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      border-radius: var(--radius-xl);
      color: var(--color-text-light);
      font-size: var(--icon-lg);
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .hero-icon-emergency-fund-canada {
        width: 5rem;
        height: 5rem;
        font-size: var(--icon-xl);
        margin-bottom: var(--space-lg);
      }
    }

    .category-hero-emergency-fund-canada h1 {
      color: var(--color-text-light);
      font-size: var(--size-h1);
      margin-bottom: var(--space-sm);
    }

    @media (min-width: 768px) {
      .category-hero-emergency-fund-canada h1 {
        font-size: var(--size-h2);
        margin-bottom: var(--space-md);
      }
    }

    @media (min-width: 1024px) {
      .category-hero-emergency-fund-canada h1 {
        font-size: 3rem;
        margin-bottom: var(--space-lg);
      }
    }

    .category-hero-emergency-fund-canada p {
      color: var(--color-text-gray-light);
      font-size: var(--size-body);
      max-width: 600px;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .category-hero-emergency-fund-canada p {
        font-size: 1rem;
      }
    }

    /* Posts Grid Section */
    .posts-grid-section-emergency-fund-canada {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .posts-grid-section-emergency-fund-canada {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .posts-grid-section-emergency-fund-canada {
        padding: 6rem 0;
      }
    }

    .posts-grid-section-title-emergency-fund-canada {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }

    .posts-grid-section-title-emergency-fund-canada h2 {
      color: var(--color-text-dark);
      font-size: var(--size-h2);
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .posts-grid-section-title-emergency-fund-canada h2 {
        font-size: var(--size-h1);
        margin-bottom: var(--space-lg);
      }
    }

    .posts-grid-section-title-emergency-fund-canada p {
      color: var(--color-text-gray);
      font-size: var(--size-body);
      max-width: 500px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .posts-grid-section-title-emergency-fund-canada p {
        font-size: 1rem;
      }
    }

    .posts-grid-emergency-fund-canada {
      display: grid;
      gap: var(--space-md);
      width: 100%;
    }

    @media (min-width: 768px) {
      .posts-grid-emergency-fund-canada {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
      }
    }

    @media (min-width: 1024px) {
      .posts-grid-emergency-fund-canada {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
      }
    }

    /* Card Styles */
    .card-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: 1.5rem;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      border: 1px solid var(--color-border);
      overflow: hidden;
    }

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

    .card-emergency-fund-canada:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);
    }

    .card-image-emergency-fund-canada {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      display: block;
    }

    .card-content-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .card-title-emergency-fund-canada {
      font-size: var(--size-h4);
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .card-title-emergency-fund-canada {
        font-size: var(--size-h3);
      }
    }

    .card-description-emergency-fund-canada {
      font-size: var(--size-body);
      color: var(--color-text-gray);
      line-height: 1.7;
      flex-grow: 1;
    }

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

    .card-link-emergency-fund-canada {
      color: var(--color-primary);
      font-weight: 600;
      font-size: var(--size-body);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .card-link-emergency-fund-canada:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    /* Additional Sections */
    .additional-section-emergency-fund-canada {
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .additional-section-emergency-fund-canada {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .additional-section-emergency-fund-canada {
        padding: 6rem 0;
      }
    }

    .additional-section-1-emergency-fund-canada {
      background-color: var(--color-bg-light-alt);
    }

    .additional-section-2-emergency-fund-canada {
      background-color: var(--color-bg-light);
    }

    .additional-content-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .additional-content-emergency-fund-canada {
        gap: var(--space-2xl);
      }
    }

    .additional-title-emergency-fund-canada {
      font-size: var(--size-h2);
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .additional-title-emergency-fund-canada {
        font-size: var(--size-h1);
        margin-bottom: var(--space-lg);
      }
    }

    .additional-list-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    @media (min-width: 768px) {
      .additional-list-emergency-fund-canada {
        gap: var(--space-lg);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .additional-list-emergency-fund-canada {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .list-item-emergency-fund-canada {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .list-item-title-emergency-fund-canada {
      font-size: var(--size-h4);
      font-weight: 700;
      color: var(--color-text-dark);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    @media (min-width: 768px) {
      .list-item-title-emergency-fund-canada {
        font-size: var(--size-h3);
      }
    }

    .list-item-icon-emergency-fund-canada {
      color: var(--color-primary);
      font-size: var(--icon-md);
    }

    .list-item-text-emergency-fund-canada {
      font-size: var(--size-body);
      color: var(--color-text-gray);
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .list-item-text-emergency-fund-canada {
        font-size: 1rem;
      }
    }

    .tips-grid-emergency-fund-canada {
      display: grid;
      gap: var(--space-md);
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .tips-grid-emergency-fund-canada {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
      }
    }

    @media (min-width: 1024px) {
      .tips-grid-emergency-fund-canada {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
      }
    }

    .tip-box-emergency-fund-canada {
      background-color: var(--color-primary-light);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .tip-box-emergency-fund-canada {
        padding: 2rem;
      }
    }

    .tip-box-title-emergency-fund-canada {
      font-size: var(--size-h4);
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: var(--space-sm);
    }

    @media (min-width: 768px) {
      .tip-box-title-emergency-fund-canada {
        font-size: var(--size-h3);
        margin-bottom: var(--space-md);
      }
    }

    .tip-box-text-emergency-fund-canada {
      font-size: var(--size-body);
      color: var(--color-text-dark);
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .tip-box-text-emergency-fund-canada {
        font-size: 1rem;
      }
    }

    /* Accessibility */
    a:focus-visible,
    .btn:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 2px;
    }

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

/* Post Page 1 Styles */
/* Post-Specific Styles - Complete CSS Isolation */
  
  .post-best-high-interest-savings-accounts {
    overflow: hidden;
  }

  /* ===== BREADCRUMBS SECTION ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumbs {
    background-color: var(--color-bg-light-alt);
    overflow: hidden;
    padding: 1rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumbs {
      padding: 1.5rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumb-link {
    color: var(--color-primary);
    font-size: var(--size-body);
    font-weight: 500;
    transition: var(--transition);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumb-separator {
    color: var(--color-text-gray);
    font-size: var(--size-body);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-breadcrumb-current {
    color: var(--color-text-gray);
    font-size: var(--size-body);
    font-weight: 500;
  }

  /* ===== HERO SECTION ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero {
    background-color: #1e3a5f;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero-title {
    font-size: var(--size-h1);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero-title {
      font-size: 3.5rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-lead {
      font-size: 1.125rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-read-time,
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-updated {
    font-size: var(--size-body);
    color: #cbd5e1;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-meta-separator {
    color: #cbd5e1;
  }

  /* ===== CONTENT SECTION 1 ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-1 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-1 {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-1-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-section-title {
    font-size: var(--size-h2);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-section-title {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-section-title {
      font-size: 2.75rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-text {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-text {
      font-size: 1rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-box {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    padding: 1.5rem;
    background-color: #f0f9ff;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-box {
      padding: 2rem;
      gap: var(--space-xl);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    font-size: var(--icon-md);
    flex-shrink: 0;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-title {
    font-size: var(--size-h4);
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-highlight-content {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.7;
  }

  /* ===== CONTENT SECTION 2 ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-2 {
    background-color: #f8fafc;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-2 {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-2-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-card {
      padding: 2rem;
      gap: var(--space-lg);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-primary);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    font-size: var(--icon-md);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-title {
    font-size: var(--size-h4);
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-feature-text {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.7;
  }

  /* ===== CONTENT SECTION 3 ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-3 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-3 {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-3-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-types-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
    background-color: #f8fafc;
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-item {
      padding: 2rem;
      gap: var(--space-lg);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--size-h4);
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-secondary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-description {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-left: 3rem;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-type-description {
      font-size: 1rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-comparison-note {
    padding: 1.5rem;
    background-color: #fef3c7;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    margin-top: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-comparison-note {
      padding: 2rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-comparison-text {
    font-size: var(--size-body);
    color: #78350f;
    line-height: 1.7;
  }

  /* ===== CONTENT SECTION 4 ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-4 {
    background-color: #f0f9ff;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-4 {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-4-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-strategy-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-left: 0;
    list-style: none;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-strategy-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-strategy-item {
      padding: 1.25rem;
      gap: 0.75rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-strategy-label {
    font-size: var(--size-body);
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-strategy-item p {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.6;
    margin: 0;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-lg);
  }

  /* ===== CONTENT SECTION 5 ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-5 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-5 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-5 {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-content-5-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistakes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistakes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistakes-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-2xl);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
    background-color: #fee2e2;
    border-radius: var(--radius-xl);
    border: 1px solid #fca5a5;
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-card {
      padding: 2rem;
      gap: var(--space-lg);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-header i {
    font-size: var(--icon-md);
    color: var(--color-warning);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-title {
    font-size: var(--size-h4);
    font-weight: 700;
    color: #7f1d1d;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-mistake-text {
    font-size: var(--size-body);
    color: #7f1d1d;
    line-height: 1.7;
  }

  /* ===== CONCLUSION SECTION ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    background: #1e3a5f;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion .best-high-interest-savings-accounts-section-title {
    color: #ffffff;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-conclusion .best-high-interest-savings-accounts-text {
    color: #e0e0e0;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-box {
      padding: 2rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-title {
    font-size: var(--size-h4);
    font-weight: 700;
    color: #ffffff;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-left: 0;
    list-style: none;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-list li {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    font-size: var(--size-body);
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-takeaway-list li::before {
    content: "✓";
    color: var(--color-secondary);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.25rem;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-closing {
    font-size: var(--size-body);
    color: #e0e0e0;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-closing {
      font-size: 1rem;
    }
  }

  /* ===== RELATED POSTS SECTION ===== */
  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related {
    background-color: #f8fafc;
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related {
      padding: 6rem 0;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-title {
    font-size: var(--size-h2);
    font-weight: 700;
    color: var(--color-text-dark);
    text-align: center;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-title {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-title {
      font-size: 2.5rem;
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-2xl);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-card {
      gap: var(--space-lg);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-bg-light-alt);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-card:hover .best-high-interest-savings-accounts-related-image {
    transform: scale(1.05);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-body {
      padding: 2rem;
      gap: var(--space-lg);
    }
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-post-title {
    font-size: var(--size-h4);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-description {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    line-height: 1.6;
    flex-grow: 1;
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-footer {
    display: flex;
    align-items: center;
    margin-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-md);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-link-arrow {
    font-size: var(--size-body);
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
  }

  .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-related-card:hover .best-high-interest-savings-accounts-related-link-arrow {
    color: var(--color-primary-dark);
    transform: translateX(4px);
  }

  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 767px) {
    .post-best-high-interest-savings-accounts .best-high-interest-savings-accounts-hero-title {
      word-break: break-word;
    }
  }

/* Post Page 2 Styles */
/* ============================================
   POST: Emergency Fund Target Amount
   Comprehensive article on emergency fund sizing
   ============================================ */

/* Breadcrumbs Navigation */
.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs {
  background-color: var(--color-bg-light-alt);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs a {
  font-size: var(--size-body);
  color: var(--color-primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs a {
    font-size: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--color-primary-dark);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumb-separator {
  color: var(--color-text-gray);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-breadcrumbs span:last-child {
  color: var(--color-text-gray);
  font-weight: 500;
}

/* Hero Section */
.post-emergency-fund-target-amount .emergency-fund-target-amount-hero {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero-content {
    gap: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-hero-title {
  font-size: var(--size-h1);
  color: var(--color-text-light);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero-title {
    font-size: 3.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-hero-lead {
  font-size: var(--size-body);
  color: var(--color-text-gray-light);
  line-height: 1.8;
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-hero-lead {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-gray-light);
  font-size: var(--size-body);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-meta-item i {
  color: var(--color-accent);
}

/* Content Section 1 */
.post-emergency-fund-target-amount .emergency-fund-target-amount-content-1 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1 {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-content {
    gap: 3rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-paragraph {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-paragraph {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-calculation-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-calculation-box {
    padding: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-calculation-title {
  font-size: var(--size-h4);
  color: var(--color-primary-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-calculation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-step {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-step-number {
  min-width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-step-content {
  display: flex;
  flex-direction: column;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-step-label {
  font-size: var(--size-body);
  color: var(--color-text-dark);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-step-label {
    font-size: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-1-image {
    height: 350px;
  }
}

/* Content Section 2 */
.post-emergency-fund-target-amount .emergency-fund-target-amount-content-2 {
  background-color: var(--color-bg-light-alt);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-2 {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-content {
  display: flex;
  flex-direction: column;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-intro {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-2-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-title {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-title {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-text {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-recommendation-text {
    font-size: 1rem;
  }
}

/* Content Section 3 */
.post-emergency-fund-target-amount .emergency-fund-target-amount-content-3 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-3 {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-3-content {
  display: flex;
  flex-direction: column;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-3-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-3-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-3-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-mistakes-list {
    gap: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-item {
  background-color: var(--color-bg-light-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-item {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-header i {
  color: var(--color-warning);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-title {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-title {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-description {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-mistake-description {
    font-size: 1rem;
  }
}

/* Content Section 4 */
.post-emergency-fund-target-amount .emergency-fund-target-amount-content-4 {
  background-color: var(--color-bg-light-alt);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-4 {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-content {
  display: flex;
  flex-direction: column;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-intro {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-4-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-timeline {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-timeline-phase {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  padding-left: 4rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-timeline-phase {
    padding: 2rem;
    padding-left: 4.5rem;
    gap: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-phase-marker {
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-phase-marker {
    left: 1.25rem;
    top: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-phase-title {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-phase-title {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-phase-text {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-phase-text {
    font-size: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-box {
  background-color: var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-box {
    padding: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-title {
  font-size: var(--size-h4);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-item {
  font-size: var(--size-body);
  color: var(--color-text-light);
  line-height: 1.7;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-item {
    font-size: 1rem;
    gap: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-acceleration-item::before {
  content: '✓';
  flex-shrink: 0;
  font-weight: 700;
}

/* Content Section 5 */
.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5 {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-content {
    gap: 3rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-image {
    order: 2;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-text {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-text {
    order: 1;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-paragraph {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-content-5-paragraph {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-where-to-keep-box {
  background-color: var(--color-bg-light-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-where-to-keep-box {
    padding: 2rem;
    margin-top: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-where-title {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-option {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-option:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-option-name {
  font-size: var(--size-h4);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-option-name {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-option-details {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-option-details {
    font-size: 1rem;
  }
}

/* Conclusion Section */
.post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion {
  background-color: var(--color-bg-light-alt);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-content {
    gap: 2rem;
    max-width: 900px;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-text {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-conclusion-text {
    font-size: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-key-takeaways {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-key-takeaways {
    padding: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-takeaways-title {
  font-size: var(--size-h4);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-takeaway-item {
  font-size: var(--size-body);
  color: var(--color-text-light);
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-takeaway-item {
    font-size: 1rem;
    gap: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-takeaway-item::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
}

/* Related Posts Section */
.post-emergency-fund-target-amount .emergency-fund-target-amount-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related {
    padding: 5rem 0;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-content {
  display: flex;
  flex-direction: column;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-title {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-title {
    font-size: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-subtitle {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--color-bg-light-alt);
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-card {
    gap: 1.25rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card:hover .emergency-fund-target-amount-related-card-image img {
  transform: scale(1.05);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-content {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-title {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-title {
    font-size: 1.125rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-description {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-description {
    font-size: 0.95rem;
  }
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card-arrow {
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: var(--transition);
}

.post-emergency-fund-target-amount .emergency-fund-target-amount-related-card:hover .emergency-fund-target-amount-related-card-arrow {
  transform: translateX(4px);
}

/* Accessibility */
.post-emergency-fund-target-amount a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (max-width: 767px) {
  .post-emergency-fund-target-amount .emergency-fund-target-amount-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Post Page 3 Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

    :root {
      --color-primary: #2563eb;
      --color-primary-dark: #1e40af;
      --color-primary-light: #dbeafe;
      --color-secondary: #10b981;
      --color-accent: #f59e0b;
      --color-warning: #ef4444;
      
      --color-bg-dark: #0f172a;
      --color-bg-light: #ffffff;
      --color-bg-light-alt: #f8fafc;
      --color-bg-medium: #1e293b;
      
      --color-text-dark: #0f172a;
      --color-text-light: #ffffff;
      --color-text-gray: #64748b;
      --color-text-gray-light: #cbd5e1;
      
      --color-border: #e2e8f0;
      --color-border-dark: #334155;
      
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      
      --size-h1: 2rem;
      --size-h2: 1.5rem;
      --size-h3: 1.25rem;
      --size-body: 0.875rem;
      --size-small: 0.75rem;
      
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;
      --space-4xl: 5rem;
      
      --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-md: 0.5rem;
      --radius-lg: 0.75rem;
      --radius-xl: 1rem;
      --radius-2xl: 1.5rem;
      
      --icon-md: 2rem;
      --icon-lg: 3rem;
      
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (min-width: 768px) {
      :root {
        --size-h1: 2.5rem;
        --size-h2: 2rem;
        --size-h3: 1.5rem;
        --size-body: 1rem;
        --size-small: 0.875rem;
      }
    }

    @media (min-width: 1024px) {
      :root {
        --size-h1: 3.5rem;
        --size-h2: 2.75rem;
        --size-h3: 1.875rem;
        --size-body: 1rem;
      }
    }

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

    html {
      scroll-behavior: smooth;
    }

    .post-automate-emergency-fund-savings {
      width: 100%;
    }

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

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

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

    /* Breadcrumbs */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs {
      background-color: var(--color-bg-light-alt);
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
      padding: 1rem 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-md);
      flex-wrap: wrap;
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs a {
      font-size: var(--size-small);
      color: var(--color-primary);
      text-decoration: none;
      transition: var(--transition);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs a {
        font-size: var(--size-body);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs span {
      font-size: var(--size-small);
      color: var(--color-text-gray);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-breadcrumbs span {
        font-size: var(--size-body);
      }
    }

    /* Hero Section */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-content {
        gap: var(--space-2xl);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero h1 {
      font-size: var(--size-h1);
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text-light);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero h1 {
        font-size: var(--size-h1);
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-lead {
      font-size: var(--size-body);
      line-height: 1.7;
      color: var(--color-text-light);
      max-width: 600px;
      opacity: 0.95;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-lead {
        font-size: 1.125rem;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-meta {
      display: flex;
      flex-direction: row;
      gap: var(--space-lg);
      flex-wrap: wrap;
      font-size: var(--size-small);
      color: rgba(255, 255, 255, 0.8);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-hero-meta {
        font-size: var(--size-body);
      }
    }

    /* Content Sections */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 {
      overflow: hidden;
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 {
      background-color: var(--color-bg-light-alt);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 {
      background-color: var(--color-bg-light-alt);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1-inner,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2-inner,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3-inner,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4-inner {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1-inner,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2-inner,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3-inner,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4-inner {
        gap: var(--space-2xl);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 h2,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 h2,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 h2,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 h2 {
      font-size: var(--size-h2);
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text-dark);
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 p,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 p,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 p,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 p {
      font-size: var(--size-body);
      color: var(--color-text-gray);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 p,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 p,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 p,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 p {
        font-size: var(--size-body);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 ul,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 ul,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 ul,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 ul,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 ol,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 ol,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 ol,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 ol {
      margin-left: var(--space-lg);
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 ul,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 ul,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 ul,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 ul,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 ol,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 ol,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 ol,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 ol {
        margin-left: var(--space-xl);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 li,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 li,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 li,
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 li {
      font-size: var(--size-body);
      color: var(--color-text-gray);
      line-height: 1.7;
      margin-bottom: var(--space-sm);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-1 li,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-2 li,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-3 li,
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-content-4 li {
        font-size: var(--size-body);
      }
    }

    /* Highlight Box */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-highlight {
      background-color: var(--color-primary-light);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-highlight {
        padding: 2rem;
        margin: var(--space-2xl) 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-highlight p {
      color: var(--color-primary-dark);
      margin-bottom: 0;
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-highlight strong {
      color: var(--color-primary-dark);
      font-weight: 700;
    }

    /* Image Styles */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-image {
        margin: var(--space-2xl) 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-image-side {
      width: 100%;
      max-width: 100%;
      height: auto;
      max-height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-image-side {
        max-width: 45%;
      }
    }

    /* Related Posts Section */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related {
        padding: 6rem 0;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-header {
      margin-bottom: var(--space-2xl);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-header {
        margin-bottom: var(--space-3xl);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-header h2 {
      font-size: var(--size-h2);
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text-dark);
      text-align: center;
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      width: 100%;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      background-color: var(--color-bg-light-alt);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card {
        gap: var(--space-lg);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background-color: var(--color-bg-medium);
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-content {
        padding: 2rem;
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-title {
      font-size: var(--size-h4);
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.3;
      color: var(--color-text-dark);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-title {
        font-size: var(--size-h3);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-desc {
      font-size: var(--size-small);
      color: var(--color-text-gray);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-desc {
        font-size: var(--size-body);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      color: var(--color-primary);
      font-weight: 600;
      font-size: var(--size-small);
      text-decoration: none;
      transition: var(--transition);
      margin-top: auto;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-link {
        font-size: var(--size-body);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-related-card-link:hover {
      color: var(--color-primary-dark);
      gap: var(--space-md);
    }

    /* Content Grid Layout */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-two-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      align-items: start;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-two-col {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
      }
    }

    @media (min-width: 1024px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-two-col {
        gap: var(--space-3xl);
      }
    }

    /* Step Box */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: 1.5rem;
      background-color: var(--color-bg-light);
      border: 2px solid var(--color-border);
      border-radius: var(--radius-lg);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step {
        padding: 2rem;
        gap: var(--space-lg);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: var(--color-primary);
      color: var(--color-text-light);
      border-radius: 50%;
      font-weight: 700;
      font-size: var(--size-body);
      font-family: var(--font-display);
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step h3 {
      font-size: var(--size-h4);
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--color-text-dark);
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step h3 {
        font-size: var(--size-h3);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-step p {
      font-size: var(--size-body);
      color: var(--color-text-gray);
      line-height: 1.7;
    }

    /* Button Styles */
    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      padding: 0.75rem 1.5rem;
      background-color: var(--color-primary);
      color: var(--color-text-light);
      border: 2px solid var(--color-primary);
      border-radius: var(--radius-lg);
      font-size: var(--size-body);
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
    }

    @media (min-width: 768px) {
      .post-automate-emergency-fund-savings .automate-emergency-fund-savings-btn {
        padding: 1rem 2rem;
        font-size: var(--size-body);
      }
    }

    .post-automate-emergency-fund-savings .automate-emergency-fund-savings-btn:hover {
      background-color: var(--color-primary-dark);
      border-color: var(--color-primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Focus Styles */
    .post-automate-emergency-fund-savings a:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 2px;
    }

/* Post Page 4 Styles */
/* Post-Specific Emergency Fund Life Stage Article Styles */

.post-emergency-fund-by-life-stage {
  width: 100%;
}

/* ============================================
   BREADCRUMBS NAVIGATION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs {
  background-color: var(--color-bg-light-alt);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs {
    padding: 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs a {
  font-size: var(--size-body);
  color: var(--color-primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs a {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumb-separator {
  color: var(--color-text-gray);
  margin: 0 0.25rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs span:last-child {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-breadcrumbs span:last-child {
    font-size: 1rem;
  }
}

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

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero {
    padding: 6rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero-content {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero h1 {
  font-size: var(--size-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero h1 {
    font-size: var(--size-h1);
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-hero h1 {
    font-size: 3.75rem;
    max-width: 90%;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 85%;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-lead {
    font-size: 1.25rem;
    max-width: 75%;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-read-time {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-read-time {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-read-time i {
  font-size: 1rem;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro-content {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-intro p {
    font-size: 1rem;
  }
}

/* ============================================
   STUDENTS SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students {
  background-color: var(--color-bg-light-alt);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students-content {
    gap: 3rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students-text {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students h3 {
  font-size: var(--size-h3);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-students p {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-list li {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-list li {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.25rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-list li strong {
  color: var(--color-text-dark);
}

/* ============================================
   FAMILIES SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families-content {
    gap: 3rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families-text {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families h3 {
  font-size: var(--size-h3);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-families p {
    font-size: 1rem;
  }
}

/* ============================================
   MID-CAREER SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer {
  background-color: var(--color-bg-light-alt);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer-content {
    gap: 3rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer-text {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer h3 {
  font-size: var(--size-h3);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-midcareer p {
    font-size: 1rem;
  }
}

/* ============================================
   PRE-RETIREMENT SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement-content {
    gap: 3rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement-text {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement h3 {
  font-size: var(--size-h3);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-preretirement p {
    font-size: 1rem;
  }
}

/* ============================================
   RETIREES SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees {
  background-color: var(--color-bg-light-alt);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees-content {
    gap: 3rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees-text {
    gap: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees h3 {
  font-size: var(--size-h3);
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  margin-top: 1rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-retirees p {
    font-size: 1rem;
  }
}

/* ============================================
   UNIVERSAL PRINCIPLES SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles {
  background-color: var(--color-bg-medium);
  color: var(--color-text-light);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles-content {
    gap: 3rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles h2 {
  font-size: var(--size-h2);
  color: var(--color-text-light);
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card {
    gap: 1.5rem;
    padding: 2.5rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  color: var(--color-text-light);
  font-size: 1.75rem;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card h3 {
  font-size: var(--size-h4);
  color: var(--color-text-light);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card p {
  font-size: var(--size-body);
  color: var(--color-text-gray-light);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-principle-card p {
    font-size: 1rem;
  }
}

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

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion-content {
    gap: 2.5rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion p {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-conclusion strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related {
  background-color: var(--color-bg-light-alt);
  color: var(--color-text-dark);
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related {
    padding: 5rem 0;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-content {
    gap: 3rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related h2 {
  font-size: var(--size-h2);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-text-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-card {
    gap: 1.5rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-card:hover .emergency-fund-by-life-stage-related-image img {
  transform: scale(1.05);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-body {
    gap: 1.25rem;
    padding: 2rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-card h3 {
  font-size: var(--size-h4);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-body p {
  font-size: var(--size-body);
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-body p {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--size-body);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-link {
    font-size: 1rem;
  }
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-link:hover {
  color: var(--color-primary-dark);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.post-emergency-fund-by-life-stage .emergency-fund-by-life-stage-related-link:hover i {
  transform: translateX(4px);
}

/* Post Page 5 Styles */
/* ========================================
     POST: When to Tap Into Your Emergency Fund
     Unique Isolation with using-and-replenishing-emergency-fund- prefix
     ======================================== */

  .post-using-and-replenishing-emergency-fund {
    overflow: hidden;
  }

  /* ========================================
     BREADCRUMBS
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-breadcrumbs {
    background-color: var(--color-bg-light-alt);
    padding: 1rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-breadcrumbs {
      padding: 1.5rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-breadcrumbs .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-breadcrumb-link {
    font-size: var(--size-body);
    color: var(--color-primary);
    font-weight: 500;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-separator {
    color: var(--color-text-gray);
    font-size: var(--size-body);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-current {
    font-size: var(--size-body);
    color: var(--color-text-gray);
    font-weight: 500;
  }

  /* ========================================
     HERO SECTION
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero-title {
    font-size: var(--size-h1);
    color: #ffffff;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-hero-title {
      font-size: 3rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-lead {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
    max-width: 700px;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-lead {
      font-size: 1.125rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-meta {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    margin-top: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-read-time {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--size-body);
    color: #94a3b8;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-read-time i {
    font-size: var(--icon-md);
  }

  /* ========================================
     CONTENT SECTION 1: True Emergencies
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-1 {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-1 {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-1-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-title {
    font-size: var(--size-h2);
    color: #0f172a;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-title {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-title {
      font-size: 2.5rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-intro {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-section-intro {
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-grid-2col {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-grid-2col {
      gap: var(--space-2xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-emergency-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: 1.5rem;
    background-color: var(--color-bg-light-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-emergency-card {
      padding: 2rem;
      gap: var(--space-xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: var(--icon-lg);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-card-icon.emergency {
    background-color: #dcfce7;
    color: var(--color-secondary);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-card-icon.warning {
    background-color: #fee2e2;
    color: var(--color-warning);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-card-title {
    font-size: var(--size-h4);
    color: #0f172a;
    font-weight: 700;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
    margin-left: 0;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-list li {
    font-size: var(--size-body);
    color: #475569;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-list li {
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-text {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-text {
      font-size: 1rem;
    }
  }

  /* ========================================
     CONTENT SECTION 2: Withdrawal Guidelines
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-2 {
    background-color: var(--color-bg-light-alt);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-2 {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-2-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step {
      padding: 2rem;
      gap: var(--space-xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--size-h3);
    color: var(--color-primary);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step-title {
    font-size: var(--size-h4);
    color: #0f172a;
    font-weight: 700;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step-text {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-step-text {
      font-size: 1rem;
    }
  }

  /* ========================================
     CONTENT SECTION 3: Replenishment Strategies
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-3 {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-3 {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-3-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategies {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategies {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategies {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-2xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 1.5rem;
    background-color: var(--color-bg-light-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-card {
      padding: 2rem;
      gap: var(--space-lg);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    font-size: var(--icon-lg);
    color: var(--color-primary);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-title {
    font-size: var(--size-h4);
    color: #0f172a;
    font-weight: 700;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-text {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-strategy-text {
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight {
    background-color: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight {
      padding: 2rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight-title {
    font-size: var(--size-h4);
    color: var(--color-primary-dark);
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight-title i {
    font-size: var(--icon-lg);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight-text {
    font-size: var(--size-body);
    color: var(--color-primary-dark);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-highlight-text {
      font-size: 1rem;
    }
  }

  /* ========================================
     CONTENT SECTION 4: Prevention
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-4 {
    background-color: var(--color-bg-light-alt);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-4 {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-content-4-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention {
      gap: var(--space-2xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-item {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--color-secondary);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-item {
      padding: 2rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-number {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-title {
    font-size: var(--size-h4);
    color: #0f172a;
    font-weight: 700;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-desc {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-prevention-desc {
      font-size: 1rem;
    }
  }

  /* ========================================
     CONCLUSION SECTION
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion {
    background-color: #1e293b;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 800px;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion-content h2 {
    color: #ffffff;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion-text {
    font-size: var(--size-body);
    color: #cbd5e1;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion-text {
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-conclusion-action {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--size-body);
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-btn-secondary {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-btn-secondary:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  /* ========================================
     RELATED POSTS SECTION
     ======================================== */
  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related {
      padding: 6rem 0;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-title {
    font-size: var(--size-h2);
    color: #0f172a;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-title {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-title {
      font-size: 2.5rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-intro {
    font-size: var(--size-body);
    color: #475569;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-intro {
      font-size: 1rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-2xl);
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: 0;
    background-color: var(--color-bg-light-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e0e7ff;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-title {
    font-size: var(--size-h4);
    color: #0f172a;
    font-weight: 700;
    padding: 0 1.5rem;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-title {
      padding: 0 2rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-desc {
    font-size: var(--size-body);
    color: #475569;
    line-height: 1.6;
    padding: 0 1.5rem;
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-desc {
      font-size: 0.9375rem;
      padding: 0 2rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-primary);
    font-size: var(--icon-md);
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card-arrow {
      padding: 0 2rem 2rem 2rem;
    }
  }

  .post-using-and-replenishing-emergency-fund .using-and-replenishing-emergency-fund-related-card:hover .using-and-replenishing-emergency-fund-related-card-arrow {
    transform: translateX(4px);
  }

/* Privacy Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

    .privacy-page {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      font-family: var(--font-body);
    }

    .privacy-page .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    /* Hero Section */
    .privacy-hero-section {
      background-color: var(--color-bg-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .privacy-hero-section {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .privacy-hero-section {
        padding: var(--space-5xl) 0;
      }
    }

    .privacy-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      text-align: center;
    }

    .privacy-hero-content h1 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--color-text-light);
      margin: 0;
    }

    @media (min-width: 768px) {
      .privacy-hero-content h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .privacy-hero-content h1 {
        font-size: 3rem;
      }
    }

    .privacy-hero-content p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: var(--color-text-gray-light);
      margin: 0;
    }

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

    /* Content Section */
    .privacy-content-section {
      background-color: var(--color-bg-light);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .privacy-content-section {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .privacy-content-section {
        padding: var(--space-5xl) 0;
      }
    }

    .privacy-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    @media (min-width: 768px) {
      .privacy-content-wrapper {
        gap: var(--space-3xl);
      }
    }

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

    .privacy-section-block h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--color-text-dark);
      margin: 0;
      padding-bottom: var(--space-sm);
      border-bottom: 2px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .privacy-section-block h2 {
        font-size: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .privacy-section-block h2 {
        font-size: 2.25rem;
      }
    }

    .privacy-section-block p {
      font-size: 0.875rem;
      line-height: 1.8;
      color: var(--color-text-gray);
      margin: 0;
    }

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

    .privacy-section-block ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .privacy-section-block li {
      font-size: 0.875rem;
      line-height: 1.8;
      color: var(--color-text-gray);
      padding-left: var(--space-lg);
      position: relative;
    }

    @media (min-width: 768px) {
      .privacy-section-block li {
        font-size: 1rem;
      }
    }

    .privacy-section-block li::before {
      content: '\2022';
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
    }

    /* Last Updated */
    .privacy-last-updated {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      padding: var(--space-lg);
      background-color: var(--color-bg-light-alt);
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-md);
    }

    .privacy-last-updated p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: var(--color-text-gray);
      margin: 0;
    }

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

    /* Contact Section */
    .privacy-contact-section {
      background-color: var(--color-bg-light-alt);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .privacy-contact-section {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .privacy-contact-section {
        padding: var(--space-5xl) 0;
      }
    }

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

    .privacy-contact-content h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--color-text-dark);
      margin: 0;
      padding-bottom: var(--space-sm);
      border-bottom: 2px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .privacy-contact-content h2 {
        font-size: 2rem;
      }
    }

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

    .privacy-contact-item {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .privacy-contact-item strong {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--color-text-dark);
    }

    @media (min-width: 768px) {
      .privacy-contact-item strong {
        font-size: 1rem;
      }
    }

    .privacy-contact-item p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: var(--color-text-gray);
      margin: 0;
    }

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

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

    @media (min-width: 768px) {
      .privacy-divider {
        margin: var(--space-2xl) 0;
      }
    }

/* Thank You Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

  /* ========== THANK YOU PAGE STYLES ========== */

  .thank-page {
    width: 100%;
    overflow: hidden;
  }

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

  .thank-hero-section {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: 2rem;
    }
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--color-secondary);
    border-radius: 50%;
    animation: pulse-scale 0.6s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      width: 5rem;
      height: 5rem;
    }
  }

  .thank-icon i {
    font-size: 2rem;
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .thank-icon i {
      font-size: 2.5rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-light);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  .thank-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-gray-light);
    margin: 0;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  /* ========== MESSAGE SECTION ========== */

  .thank-message-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-message-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .thank-message-content {
      gap: 2.5rem;
    }
  }

  .thank-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-light-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
  }

  @media (min-width: 768px) {
    .thank-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-card {
      padding: 2.5rem;
      gap: 1.5rem;
    }
  }

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

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

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

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

  @media (min-width: 768px) {
    .thank-card-icon i {
      font-size: 1.75rem;
    }
  }

  .thank-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-card h2 {
      font-size: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-card h2 {
      font-size: 1.75rem;
    }
  }

  .thank-card p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin: 0;
  }

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

  /* ========== CTA SECTION ========== */

  .thank-cta-section {
    background-color: var(--color-bg-medium);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-cta-content {
      gap: 2rem;
    }
  }

  .thank-cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-light);
    margin: 0;
  }

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

  @media (min-width: 1024px) {
    .thank-cta-section h2 {
      font-size: 2.75rem;
    }
  }

  .thank-cta-section p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-gray-light);
    margin: 0;
    max-width: 600px;
  }

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

  /* ========== 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: 600;
    line-height: 1.5;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
  }

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

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

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    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);
  }

  /* ========== ANIMATIONS ========== */

  @keyframes pulse-scale {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* ========== CONTAINER ========== */

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

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

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

/* 404 Page Styles */
/* ===== ERROR PAGE STYLES ===== */

  .error-page {
    overflow: hidden;
  }

  /* ===== ERROR HERO SECTION ===== */
  .error-hero-section {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

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

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

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .error-hero-content {
      flex-direction: row;
      gap: 3rem;
      align-items: center;
    }
  }

  /* ===== ILLUSTRATION ===== */
  .error-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 280px;
      height: 280px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 320px;
      height: 320px;
    }
  }

  /* Piggy Bank */
  .piggy-bank {
    position: relative;
    width: 100%;
    height: 100%;
    animation: piggyFloat 3s ease-in-out infinite;
  }

  @keyframes piggyFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  .piggy-body {
    position: absolute;
    width: 120px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    left: 40px;
    top: 50px;
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .piggy-body {
      width: 160px;
      height: 110px;
      left: 60px;
      top: 70px;
    }
  }

  .piggy-head {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    right: 50px;
    top: 60px;
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .piggy-head {
      width: 80px;
      height: 80px;
      right: 70px;
      top: 80px;
    }
  }

  .piggy-ear {
    position: absolute;
    width: 30px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50% 50% 30% 30%;
    right: 70px;
    top: 40px;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .piggy-ear {
      width: 40px;
      height: 55px;
      right: 95px;
      top: 50px;
    }
  }

  .piggy-snout {
    position: absolute;
    width: 25px;
    height: 20px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    right: 25px;
    top: 85px;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .piggy-snout {
      width: 35px;
      height: 28px;
      right: 35px;
      top: 115px;
    }
  }

  .piggy-legs {
    position: absolute;
    width: 90px;
    height: 30px;
    left: 55px;
    bottom: 20px;
  }

  @media (min-width: 768px) {
    .piggy-legs {
      width: 120px;
      height: 40px;
      left: 80px;
      bottom: 30px;
    }
  }

  .piggy-legs::before,
  .piggy-legs::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 30px;
    background-color: var(--color-primary);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .piggy-legs::before,
    .piggy-legs::after {
      width: 24px;
      height: 40px;
      border-radius: 0 0 10px 10px;
    }
  }

  .piggy-legs::before {
    left: 10px;
  }

  .piggy-legs::after {
    right: 10px;
  }

  .piggy-tail {
    position: absolute;
    width: 30px;
    height: 15px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    right: 30px;
    bottom: 40px;
    transform: rotate(-30deg);
  }

  @media (min-width: 768px) {
    .piggy-tail {
      width: 40px;
      height: 20px;
      border-width: 4px;
      right: 45px;
      bottom: 50px;
    }
  }

  /* Floating Coins */
  .floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent), #fbbf24);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #78350f;
    font-size: 0.75rem;
    animation: coinFloat 4s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .coin {
      width: 55px;
      height: 55px;
      font-size: 1rem;
    }
  }

  .coin::before {
    content: '$';
    font-size: inherit;
  }

  .coin-1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
  }

  .coin-2 {
    top: 120px;
    right: 40px;
    animation-delay: 0.8s;
  }

  .coin-3 {
    bottom: 40px;
    left: 50px;
    animation-delay: 1.6s;
  }

  @keyframes coinFloat {
    0%, 100% {
      transform: translateY(0px) rotateZ(0deg);
      opacity: 0.3;
    }
    50% {
      transform: translateY(-30px) rotateZ(180deg);
      opacity: 1;
    }
  }

  /* 404 Text */
  .error-404 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
  }

  @media (min-width: 768px) {
    .error-404 {
      gap: 0.75rem;
      bottom: 20px;
    }
  }

  .digit {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: digitPulse 2s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .digit {
      font-size: 3.5rem;
    }
  }

  .digit:nth-child(1) {
    animation-delay: 0s;
  }

  .digit:nth-child(2) {
    animation-delay: 0.2s;
  }

  .digit:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes digitPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  /* ===== ERROR CONTENT ===== */
  .error-content {
    flex: 1;
    text-align: center;
  }

  @media (min-width: 768px) {
    .error-content {
      text-align: left;
    }
  }

  .error-hero-section h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .error-hero-section h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  .error-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-gray-light);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }
  }

  .error-description {
    font-size: 0.875rem;
    color: var(--color-text-gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }
  }

  /* ===== ERROR ACTIONS ===== */
  .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .error-actions {
      flex-direction: row;
      justify-content: flex-start;
      gap: 1.25rem;
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
  }

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

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

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

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

  .btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
  }

  .btn-secondary:hover {
    background-color: var(--color-bg-medium);
    transform: translateY(-2px);
  }

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

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

  /* ===== SUGGESTIONS SECTION ===== */
  .error-suggestions-section {
    background-color: var(--color-bg-light-alt);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-suggestions-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-suggestions-section {
      padding: 5rem 0;
    }
  }

  .error-suggestions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .error-suggestions-content {
      gap: 2.5rem;
    }
  }

  .error-suggestions-section h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
  }

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

  @media (min-width: 1024px) {
    .error-suggestions-section h2 {
      font-size: 2.5rem;
    }
  }

  .suggestions-intro {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .suggestions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .suggestions-grid {
      gap: 2.5rem;
    }
  }

  .suggestion-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
  }

  @media (min-width: 768px) {
    .suggestion-card {
      padding: 2rem;
      gap: 1.25rem;
      text-align: left;
    }
  }

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

  .suggestion-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .suggestion-icon {
      width: 60px;
      height: 60px;
      font-size: 2rem;
      margin: 0;
    }
  }

  .suggestion-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
  }

  @media (min-width: 768px) {
    .suggestion-card h3 {
      font-size: 1.25rem;
    }
  }

  .suggestion-card p {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .suggestion-card p {
      font-size: 0.9375rem;
    }
  }

  /* ===== TIPS SECTION ===== */
  .error-tips-section {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-tips-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-tips-section {
      padding: 5rem 0;
    }
  }

  .error-tips-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .error-tips-content {
      gap: 2.5rem;
    }
  }

  .error-tips-section h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-text-light);
    text-align: center;
  }

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

  @media (min-width: 1024px) {
    .error-tips-section h2 {
      font-size: 2.5rem;
    }
  }

  .tips-intro {
    font-size: 0.875rem;
    color: var(--color-text-gray-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  @media (min-width: 768px) {
    .tips-list {
      gap: 2rem;
    }
  }

  .tip-item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .tip-item {
      gap: 2rem;
    }
  }

  .tip-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-text-light);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .tip-number {
      width: 60px;
      height: 60px;
      font-size: 1.75rem;
    }
  }

  .tip-text {
    flex: 1;
  }

  .tip-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .tip-item h4 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
  }

  .tip-item p {
    font-size: 0.875rem;
    color: var(--color-text-gray-light);
    line-height: 1.6;
  }

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

  /* ===== RESPONSIVE CONTAINER ===== */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

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

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

  /* ===== ACCESSIBILITY ===== */
  @media (prefers-reduced-motion: reduce) {
    .piggy-bank,
    .coin,
    .digit {
      animation: none;
    }

    .btn {
      transition: none;
    }

    .suggestion-card {
      transition: none;
    }
  }

  /* ===== PRINT STYLES ===== */
  @media print {
    .error-illustration,
    .error-actions {
      display: none;
    }
  }