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

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-600: #4b5563;
  --color-neutral-800: #1f2937;
  --color-neutral-900: #111827;
  --color-dark-bg: #0f172a;
  --color-success: #059669;
  --color-warning: #d97706;
  --color-error: #dc2626;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-serif: 'Merriweather', serif;

  /* Font sizes */
  --fs-h1: 3.75rem;
  --fs-h2: 3rem;
  --fs-h3: 2.25rem;
  --fs-h4: 1.875rem;
  --fs-h5: 1.5rem;
  --fs-h6: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  /* Font weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

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

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

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

/* Typography */
h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

h5 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

h6 {
  font-size: var(--fs-h6);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
}

p {
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

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

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

/* Mobile typography adjustments */
@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  gap: 0.5rem;
}

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

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

.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: var(--color-secondary);
  color: #ffffff;
}

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

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--color-neutral-800);
  border-color: var(--color-neutral-300);
}

.btn-ghost:hover {
  background-color: var(--color-neutral-100);
  border-color: var(--color-neutral-400);
}

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

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

.icon-sm {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

.icon-md {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  font-size: 4rem;
}

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

/* Grid layouts */
.grid {
  display: grid;
  gap: 1rem;
}

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

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

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

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

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

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

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

.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}

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

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

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

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

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

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

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

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

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

/* Section styles */
section {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-muted {
  opacity: 0.7;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Links */
a {
  color: var(--color-primary);
}

a:hover {
  text-decoration: underline;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Form elements */
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  transition: border-color var(--transition-base);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge-success {
  background-color: #d1fae5;
  color: #047857;
}

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

.badge-error {
  background-color: #fee2e2;
  color: #991b1b;
}

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

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

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

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

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

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

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

.animate-fadeIn {
  animation: fadeIn var(--transition-slow) ease-in-out;
}

.animate-slideUp {
  animation: slideUp var(--transition-slow) ease-in-out;
}

.animate-slideDown {
  animation: slideDown var(--transition-slow) ease-in-out;
}

.animate-slideRight {
  animation: slideRight var(--transition-slow) ease-in-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Print styles */
@media print {
  body {
    background-color: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}
:root {
    --header-height-mobile: 70px;
    --header-height-desktop: 80px;
  }

  .header {
    background-color: var(--color-neutral-50);
    border-bottom: 1px solid var(--color-neutral-200);
    position: static;
    width: 100%;
    z-index: var(--z-sticky);
  }

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

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

  /* Logo Styling */
  .header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-family: var(--font-primary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
  }

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

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

  .logo-text {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
  }

  .logo-accent {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: var(--fw-semibold);
    padding: 0.125rem 0.375rem;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }

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

    .logo-accent {
      font-size: 1.375rem;
    }
  }

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

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

  .header-nav-item {
    color: var(--color-neutral-800);
    text-decoration: none;
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    font-family: var(--font-primary);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    white-space: nowrap;
  }

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

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

  /* Desktop Contact Button */
  .header-contact-btn {
    display: none;
    background-color: var(--color-primary);
    color: var(--color-neutral-900);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-small);
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .header-contact-btn {
      display: block;
      padding: 1rem 2rem;
      font-size: var(--fs-body);
    }
  }

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

  .header-contact-btn:focus-visible {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

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

  /* Mobile Menu Toggle */
  .header-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
  }

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

  .header-mobile-toggle:hover {
    transform: scale(1.1);
  }

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

  .toggle-line {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-neutral-800);
    border-radius: 2px;
    transition: all var(--transition-base);
  }

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

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

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

  /* Mobile Menu */
  .header-mobile-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-neutral-100);
    border-bottom: 1px solid var(--color-neutral-200);
    transition: max-height var(--transition-base);
  }

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

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

  .header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--space-md) var(--space-md) 0;
  }

  .header-mobile-nav-item {
    color: var(--color-neutral-800);
    text-decoration: none;
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    font-family: var(--font-primary);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-neutral-200);
    transition: all var(--transition-fast);
  }

  .header-mobile-nav-item:active {
    background-color: var(--color-neutral-200);
  }

  .header-mobile-nav-item:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  /* Mobile Contact Button */
  .header-mobile-contact-btn {
    background-color: var(--color-primary);
    color: var(--color-neutral-900);
    text-decoration: none;
    padding: 1rem var(--space-md);
    margin: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    font-family: var(--font-primary);
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
  }

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

  .header-mobile-contact-btn:focus-visible {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

    /* Main Page Wrapper */
  .main-page {
    width: 100%;
  }

  /* ===== HERO SECTION ===== */
  .hero-section {
    background-color: #0f172a;
    padding: 4rem 0;
    overflow: hidden;
  }

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

  @media (min-width: 1024px) {
    .hero-section {
      padding: 8rem 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 {
    color: #ffffff;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  }

  .hero-text p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  @media (max-width: 767px) {
    .hero-text p {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
  }

  .hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }

  @media (max-width: 767px) {
    .hero-ctas {
      gap: 0.75rem;
    }
  }

  .hero-ctas .btn-primary {
    background-color: #2563eb;
    color: #ffffff;
  }

  .hero-ctas .btn-primary:hover {
    background-color: #1e40af;
  }

  .hero-ctas .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }

  .hero-ctas .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  }

  .hero-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  /* ===== IMPORTANCE SECTION ===== */
  .importance-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .importance-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (max-width: 767px) {
    .importance-header {
      margin-bottom: 2rem;
    }
  }

  .importance-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .importance-header h2 {
      font-size: 1.875rem;
    }
  }

  .importance-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .importance-header p {
      font-size: 0.95rem;
    }
  }

  .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 {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
  }

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

  .importance-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }

  .importance-icon {
    font-size: 2.5rem;
    color: #2563eb;
  }

  @media (min-width: 768px) {
    .importance-icon {
      font-size: 3rem;
    }
  }

  .importance-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
  }

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

  .importance-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  /* ===== FEATURED POSTS SECTION ===== */
  .featured-posts-section {
    background-color: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .featured-header {
    text-align: center;
    margin-bottom: 3rem;
  }

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

  .featured-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .featured-header h2 {
      font-size: 1.875rem;
    }
  }

  .featured-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .featured-header p {
      font-size: 0.95rem;
    }
  }

  .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

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

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

  .post-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
  }

  .post-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }

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

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

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

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

  .post-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  @media (max-width: 767px) {
    .post-card h3 {
      font-size: 1.125rem;
    }
  }

  .post-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
  }

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

  .post-link {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    width: fit-content;
    margin-top: 0.5rem;
  }

  .post-link:hover {
    color: #1e40af;
    gap: 0.75rem;
  }

  .featured-cta {
    text-align: center;
  }

  .featured-cta .btn {
    background-color: #2563eb;
    color: #ffffff;
  }

  .featured-cta .btn:hover {
    background-color: #1e40af;
  }

  /* ===== FUNDAMENTALS SECTION ===== */
  .fundamentals-section {
    background-color: #ecf0f1;
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .fundamentals-section {
      padding: 6rem 0;
    }
  }

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

  .fundamentals-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (max-width: 767px) {
    .fundamentals-header {
      margin-bottom: 2rem;
    }
  }

  .fundamentals-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .fundamentals-header h2 {
      font-size: 1.875rem;
    }
  }

  .fundamentals-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .fundamentals-header p {
      font-size: 0.95rem;
    }
  }

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

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

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

  .fundamental-item {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.2s ease-in-out;
  }

  @media (max-width: 767px) {
    .fundamental-item {
      padding: 1.5rem;
    }
  }

  .fundamental-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .fundamental-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.7;
  }

  .fundamental-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
  }

  @media (max-width: 767px) {
    .fundamental-item h3 {
      font-size: 1.125rem;
    }
  }

  .fundamental-item p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  /* ===== BUDGETING SECTION ===== */
  .budgeting-section {
    background-color: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .budgeting-section {
      padding: 6rem 0;
    }
  }

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

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

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

  .budgeting-text h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 767px) {
    .budgeting-text h2 {
      font-size: 1.875rem;
    }
  }

  .budgeting-text > p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  @media (max-width: 767px) {
    .budgeting-text > p {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
  }

  .budgeting-tips {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  @media (max-width: 767px) {
    .budgeting-tips {
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .budgeting-tips li {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.5rem;
  }

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

  .budgeting-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .budgeting-tips strong {
    color: #1f2937;
    font-weight: 600;
  }

  .budgeting-text .btn {
    background-color: #2563eb;
    color: #ffffff;
  }

  .budgeting-text .btn:hover {
    background-color: #1e40af;
  }

  .budgeting-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .budgeting-photo {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  /* ===== STATISTICS SECTION ===== */
  .statistics-section {
    background-color: #0f172a;
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .stats-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (max-width: 767px) {
    .stats-header {
      margin-bottom: 2rem;
    }
  }

  .stats-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .stats-header h2 {
      font-size: 1.875rem;
    }
  }

  .stats-header p {
    color: #d1d5db;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .stats-header p {
      font-size: 0.95rem;
    }
  }

  .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 {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.2s ease-in-out;
  }

  @media (max-width: 767px) {
    .stat-card {
      padding: 1.5rem;
    }
  }

  .stat-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1;
  }

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

  .stat-card p {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  /* ===== GETTING STARTED SECTION ===== */
  .getting-started-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .getting-started-section {
      padding: 6rem 0;
    }
  }

  @media (min-width: 1024px) {
    .getting-started-section {
      padding: 8rem 0;
    }
  }

  .getting-started-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (max-width: 767px) {
    .getting-started-header {
      margin-bottom: 2rem;
    }
  }

  .getting-started-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .getting-started-header h2 {
      font-size: 1.875rem;
    }
  }

  .getting-started-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .getting-started-header p {
      font-size: 0.95rem;
    }
  }

  .steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

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

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

  .step-box {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
  }

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

  .step-box:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }

  .step-icon {
    font-size: 2.5rem;
    color: #10b981;
  }

  @media (min-width: 768px) {
    .step-icon {
      font-size: 3rem;
    }
  }

  .step-box h3 {
    color: #1f2937;
    font-size: 1.25rem;
  }

  @media (max-width: 767px) {
    .step-box h3 {
      font-size: 1.125rem;
    }
  }

  .step-box p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
  }

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

  .getting-started-cta {
    text-align: center;
  }

  .getting-started-cta .btn {
    background-color: #10b981;
    color: #ffffff;
  }

  .getting-started-cta .btn:hover {
    background-color: #059669;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    background-color: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

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

  @media (max-width: 767px) {
    .contact-header {
      margin-bottom: 2rem;
    }
  }

  .contact-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
  }

  @media (max-width: 767px) {
    .contact-header h2 {
      font-size: 1.875rem;
    }
  }

  .contact-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .contact-header p {
      font-size: 0.95rem;
    }
  }

  .contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-form {
    background-color: #f8f9fa;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (max-width: 767px) {
    .contact-form {
      padding: 1.5rem;
      gap: 1rem;
    }
  }

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

  .form-group label {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.95rem;
  }

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

  .form-group input,
  .form-group textarea,
  .form-group select {
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease-in-out;
    color: #1f2937;
  }

  @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: 150px;
  }

  .form-agreement {
    background-color: #ecf0f1;
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 4px solid #2563eb;
  }

  @media (max-width: 767px) {
    .form-agreement {
      padding: 0.75rem;
    }
  }

  .form-agreement p {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.6;
  }

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

  .form-agreement a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
  }

  .form-agreement a:hover {
    text-decoration: underline;
  }

  .form-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .form-submit {
      padding: 1rem 2.5rem;
      font-size: 1rem;
    }
  }

  .form-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

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

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 400;
    display: none;
  }

  .cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-in-out;
  }

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

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

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

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

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

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

  .cookie-message p {
    color: #d1d5db;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .cookie-message p {
      font-size: 0.95rem;
    }
  }

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

  @media (min-width: 768px) {
    .cookie-actions {
      width: auto;
      gap: 0.75rem;
    }
  }

  .cookie-btn {
    flex: 1;
    padding: 0.65rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  @media (min-width: 768px) {
    .cookie-btn {
      flex: 0 1 auto;
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
    }
  }

  .cookie-decline {
    background-color: transparent;
    color: #d1d5db;
    border: 2px solid #4b5563;
  }

  .cookie-decline:hover {
    background-color: rgba(75, 85, 99, 0.2);
    border-color: #6b7280;
  }

  .cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
  }

  .cookie-accept:hover {
    background-color: #1e40af;
  }

  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 767px) {
    .hero-ctas {
      flex-direction: column;
    }

    .hero-ctas .btn {
      width: 100%;
    }
  }

    /* Footer Component - Complete Isolation */
  
  .footer {
    background-color: var(--color-dark-bg);
    color: var(--color-neutral-50);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

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

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

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

  .footer-about-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-primary-light);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

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

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

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-neutral-300);
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

  .footer-nav-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-neutral-50);
    margin-bottom: 1rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

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

  .footer-nav-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-neutral-300);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    border-bottom: 2px solid transparent;
  }

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

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

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

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

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

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

  .footer-legal-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-neutral-50);
    margin-bottom: 1rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

  @media (min-width: 768px) {
    .footer-legal-list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-neutral-400);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    border-bottom: 1px solid transparent;
  }

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

  .footer-legal-link:hover {
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary-light);
  }

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

  /* Copyright Section */
  .footer-copyright {
    display: block;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: var(--fw-regular);
    color: var(--color-neutral-400);
    line-height: 1.6;
    margin: 0;
  }

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

  /* Accessibility - Skip to content pattern support */
  .footer a:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 4px;
  }

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

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

/* Category Page Styles */
/* Financial Literacy Category Page - Complete Styles */
    
    /* ===== HERO SECTION ===== */
    .category-hero-financial-literacy {
      background-color: #0f172a;
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

    .hero-content-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .hero-content-financial-literacy {
        gap: 2rem;
      }
    }

    .category-page-financial-literacy .category-hero-financial-literacy h1 {
      color: #ffffff;
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .category-page-financial-literacy .category-hero-financial-literacy h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .category-page-financial-literacy .category-hero-financial-literacy h1 {
        font-size: 3.75rem;
      }
    }

    .category-page-financial-literacy .category-hero-financial-literacy p {
      color: #e0e0e0;
      font-size: 1rem;
      line-height: 1.7;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .category-page-financial-literacy .category-hero-financial-literacy p {
        font-size: 1.125rem;
      }
    }

    .hero-badge-financial-literacy {
      display: inline-block;
      background-color: #2563eb;
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    /* ===== POSTS GRID SECTION ===== */
    .posts-grid-section-financial-literacy {
      background-color: #f8f9fa;
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

    .posts-grid-content-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .posts-grid-content-financial-literacy {
        gap: 2rem;
      }
    }

    .posts-section-header-financial-literacy h2 {
      color: #1a1a1a;
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

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

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

    .posts-section-header-financial-literacy p {
      color: #4b5563;
      font-size: 0.95rem;
      line-height: 1.6;
    }

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

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

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

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

    /* ===== CARD STYLES ===== */
    .card-financial-literacy {
      background-color: #ffffff;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: all 200ms ease-in-out;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .card-financial-literacy:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-4px);
    }

    .card-image-financial-literacy {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .card-content-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem;
    }

    @media (min-width: 768px) {
      .card-content-financial-literacy {
        padding: 1.5rem;
        gap: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .card-content-financial-literacy {
        padding: 1.5rem;
        gap: 1rem;
      }
    }

    .category-page-financial-literacy .card-financial-literacy h3 {
      color: #1a1a1a;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .category-page-financial-literacy .card-financial-literacy h3 {
        font-size: 1.5rem;
      }
    }

    .category-page-financial-literacy .card-financial-literacy p {
      color: #4b5563;
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .category-page-financial-literacy .card-financial-literacy p {
        font-size: 0.95rem;
      }
    }

    .card-link-financial-literacy {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;
      color: #2563eb;
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 200ms ease-in-out;
      margin-top: 0.5rem;
    }

    .card-link-financial-literacy:hover {
      color: #1e40af;
      gap: 0.75rem;
    }

    /* ===== ADDITIONAL SECTION 1: KEY PRINCIPLES ===== */
    .additional-section-1-financial-literacy {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

    .additional-content-1-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .additional-section-1-financial-literacy h2 {
      color: #1a1a1a;
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .additional-section-1-financial-literacy h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .additional-section-1-financial-literacy h2 {
        font-size: 3rem;
      }
    }

    .principles-grid-financial-literacy {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

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

    .principle-item-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .principle-icon-financial-literacy {
      width: 3rem;
      height: 3rem;
      background-color: #dbeafe;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #2563eb;
    }

    .principle-item-financial-literacy h3 {
      color: #1a1a1a;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .principle-item-financial-literacy h3 {
        font-size: 1.5rem;
      }
    }

    .principle-item-financial-literacy p {
      color: #4b5563;
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    /* ===== ADDITIONAL SECTION 2: CANADIAN INSIGHTS ===== */
    .additional-section-2-financial-literacy {
      background-color: #0f172a;
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

    .additional-content-2-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .additional-section-2-financial-literacy h2 {
      color: #ffffff;
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.2;
    }

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

    @media (min-width: 1024px) {
      .additional-section-2-financial-literacy h2 {
        font-size: 3rem;
      }
    }

    .insights-list-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .insights-list-financial-literacy {
        gap: 2rem;
      }
    }

    .insight-item-financial-literacy {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      background-color: rgba(37, 99, 235, 0.1);
      border-left: 4px solid #2563eb;
      border-radius: 0.5rem;
    }

    @media (min-width: 768px) {
      .insight-item-financial-literacy {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .insight-item-financial-literacy h3 {
      color: #ffffff;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
    }

    @media (min-width: 768px) {
      .insight-item-financial-literacy h3 {
        font-size: 1.25rem;
      }
    }

    .insight-item-financial-literacy p {
      color: #e0e0e0;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    /* ===== CONTAINER OVERRIDE ===== */
    .category-page-financial-literacy .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

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

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

/* Post Page 1 Styles */
/* Creating Monthly Budget Post - Complete Isolation */

  .post-creating-monthly-budget {
    background-color: #ffffff;
  }

  /* Breadcrumbs */
  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs-content {
      padding: 1.25rem 0;
      font-size: 1rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs a {
    color: #2563eb;
    font-weight: 500;
  }

  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs a:hover {
    color: #1e40af;
    text-decoration: underline;
  }

  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs span {
    color: #6b7280;
  }

  .post-creating-monthly-budget .creating-monthly-budget-breadcrumbs-separator {
    color: #d1d5db;
  }

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

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-hero {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-hero-content {
      gap: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-hero h1 {
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.1;
  }

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

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

  .post-creating-monthly-budget .creating-monthly-budget-lead {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-lead {
      font-size: 1.125rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-hero-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .post-creating-monthly-budget .creating-monthly-budget-read-time {
    color: #a0aec0;
    font-size: 0.875rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  /* Why Budget Section */
  .post-creating-monthly-budget .creating-monthly-budget-why-budget {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-why-budget-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-why-budget-text h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget-text h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-why-budget-text p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget-text p {
      font-size: 1.05rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
  }

  .post-creating-monthly-budget .creating-monthly-budget-benefits-list li {
    color: #374151;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .post-creating-monthly-budget .creating-monthly-budget-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
  }

  .post-creating-monthly-budget .creating-monthly-budget-why-budget-image {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-why-budget-image {
      min-height: 350px;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-why-budget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  /* Steps Section */
  .post-creating-monthly-budget .creating-monthly-budget-steps {
    background-color: #f3f4f6;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-steps {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-steps {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-steps-content > h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-steps-content > h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-steps-content > p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-steps-content > p {
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-steps-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-step-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-step-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .post-creating-monthly-budget .creating-monthly-budget-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
  }

  .post-creating-monthly-budget .creating-monthly-budget-step-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-step-card h3 {
      font-size: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-step-card p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-step-card p {
      font-size: 1rem;
    }
  }

  /* Methods Section */
  .post-creating-monthly-budget .creating-monthly-budget-methods {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-methods {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-methods {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-methods-content h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-methods-content h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-methods-content > p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-methods-content > p {
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-method-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .post-creating-monthly-budget .creating-monthly-budget-method-item:last-child {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
  }

  .post-creating-monthly-budget .creating-monthly-budget-method-item h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-method-item h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-method-item p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-method-item p {
      font-size: 1.05rem;
    }
  }

  /* Tools Section */
  .post-creating-monthly-budget .creating-monthly-budget-tools {
    background-color: #f0f9ff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    order: 2;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools-image {
      order: 1;
      min-height: 350px;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-text {
    order: 1;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools-text {
      order: 2;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-text h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools-text h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-text p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-tools-text p {
      font-size: 1.05rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-list li {
    color: #374151;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .post-creating-monthly-budget .creating-monthly-budget-tools-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1rem;
  }

  /* Challenges Section */
  .post-creating-monthly-budget .creating-monthly-budget-challenges {
    background-color: #fef2f2;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenges {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenges {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-challenges-content h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenges-content h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-challenges-content > p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenges-content > p {
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-challenge-box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenge-box {
      padding: 2rem;
      margin-bottom: 2rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-challenge-box h3 {
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenge-box h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-challenge-box p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-challenge-box p {
      font-size: 1rem;
    }
  }

  /* Next Steps Section */
  .post-creating-monthly-budget .creating-monthly-budget-next-steps {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-next-steps {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-next-steps {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-next-steps-content h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-next-steps-content h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-next-steps-content > p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-next-steps-content > p {
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-action-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
  }

  .post-creating-monthly-budget .creating-monthly-budget-action-list li {
    color: #374151;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-action-list li {
      font-size: 1.05rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-action-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
  }

  /* Related Posts Section */
  .post-creating-monthly-budget .creating-monthly-budget-related {
    background-color: #f9fafb;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-creating-monthly-budget .creating-monthly-budget-related {
      padding: 6rem 0;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-content h2 {
    color: #1f2937;
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-related-content h2 {
      font-size: 2.25rem;
      margin-bottom: 0.75rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-content > p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-related-content > p {
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .post-creating-monthly-budget .creating-monthly-budget-related-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-related-card-body {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-card h3 {
    color: #1f2937;
    font-size: 1.125rem;
  }

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

  .post-creating-monthly-budget .creating-monthly-budget-related-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
  }

  @media (min-width: 768px) {
    .post-creating-monthly-budget .creating-monthly-budget-related-card p {
      font-size: 1rem;
    }
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .post-creating-monthly-budget .creating-monthly-budget-related-link:hover {
    color: #1e40af;
    transform: translateX(4px);
  }

  /* Responsive adjustments for small screens */
  @media (max-width: 767px) {
    .post-creating-monthly-budget {
      font-size: 15px;
    }
  }

/* Post Page 2 Styles */
/* Emergency Savings Fund Post Styles */
  .post-emergency-savings-fund {
    width: 100%;
  }

  /* ===== BREADCRUMBS ===== */
  .emergency-savings-fund-breadcrumbs {
    background-color: var(--color-neutral-50);
    overflow: hidden;
    padding: 1rem 0;
  }

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

  .emergency-savings-fund-breadcrumbs-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }

  .post-emergency-savings-fund .emergency-savings-fund-breadcrumbs a {
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    transition: color var(--transition-base);
  }

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

  .emergency-savings-fund-breadcrumbs-separator {
    color: var(--color-neutral-400);
  }

  .emergency-savings-fund-breadcrumbs span:last-child {
    color: var(--color-neutral-600);
    font-weight: var(--fw-medium);
  }

  /* ===== HERO SECTION ===== */
  .emergency-savings-fund-hero {
    background-color: var(--color-dark-bg);
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

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

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

  .post-emergency-savings-fund .emergency-savings-fund-hero h1 {
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.2;
  }

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

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

  .emergency-savings-fund-lead {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 0;
  }

  @media (max-width: 767px) {
    .emergency-savings-fund-lead {
      font-size: 1rem;
    }
  }

  .emergency-savings-fund-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .emergency-savings-fund-read-time {
    color: var(--color-accent);
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
  }

  /* ===== WHY MATTERS SECTION ===== */
  .emergency-savings-fund-why-matters {
    background-color: #ffffff;
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-why-matters-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .emergency-savings-fund-why-matters-content {
      grid-template-columns: 1.1fr 1fr;
      gap: 3rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-why-matters h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-why-matters h2 {
      font-size: 2.25rem;
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-emergency-savings-fund .emergency-savings-fund-why-matters h2 {
      font-size: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-why-matters p {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-why-matters p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .emergency-savings-fund-benefits-list {
    color: #333333;
    list-style-position: outside;
    margin-left: 1.5rem;
  }

  .post-emergency-savings-fund .emergency-savings-fund-benefits-list li {
    color: #333333;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-benefits-list li {
      font-size: 1rem;
    }
  }

  .emergency-savings-fund-why-matters-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 1024px) {
    .emergency-savings-fund-why-matters-image {
      height: 400px;
    }
  }

  /* ===== HOW MUCH SECTION ===== */
  .emergency-savings-fund-how-much {
    background-color: var(--color-neutral-50);
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-how-much-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-how-much-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-how-much h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-how-much h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-emergency-savings-fund .emergency-savings-fund-how-much h2 {
      font-size: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-how-much p {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-how-much p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .emergency-savings-fund-calculation-box {
    background-color: #ffffff;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
  }

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

  .post-emergency-savings-fund .emergency-savings-fund-calculation-box h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-calculation-box h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-calculation-box p {
    color: #333333;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-calculation-box p {
      font-size: 1rem;
    }
  }

  .emergency-savings-fund-multiplier-guide {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-multiplier-guide {
      gap: 1rem;
      margin-top: 1.5rem;
    }
  }

  .emergency-savings-fund-multiplier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-multiplier-item {
      padding: 1rem;
      font-size: 0.95rem;
    }
  }

  .emergency-savings-fund-multiplier-label {
    color: #1a1a1a;
    font-weight: var(--fw-medium);
  }

  .emergency-savings-fund-multiplier-value {
    color: var(--color-primary-dark);
    font-weight: var(--fw-bold);
  }

  /* ===== BUILDING SECTION ===== */
  .emergency-savings-fund-building {
    background-color: #ffffff;
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

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

  @media (min-width: 768px) {
    .emergency-savings-fund-building-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-building h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-building h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-emergency-savings-fund .emergency-savings-fund-building h2 {
      font-size: 2.5rem;
    }
  }

  .emergency-savings-fund-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .emergency-savings-fund-step {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-neutral-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
  }

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

  .emergency-savings-fund-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-secondary);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    border-radius: var(--radius-full);
    flex-shrink: 0;
  }

  .post-emergency-savings-fund .emergency-savings-fund-step h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-step h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-step p {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-step p {
      font-size: 0.95rem;
    }
  }

  .emergency-savings-fund-building-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
  }

  @media (min-width: 1024px) {
    .emergency-savings-fund-building-image {
      height: 400px;
      margin-top: 2rem;
    }
  }

  /* ===== PRACTICES SECTION ===== */
  .emergency-savings-fund-practices {
    background-color: var(--color-neutral-100);
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-practices-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-practices-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-practices h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-practices h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-emergency-savings-fund .emergency-savings-fund-practices h2 {
      font-size: 2.5rem;
    }
  }

  .emergency-savings-fund-practices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .emergency-savings-fund-practice-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

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

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

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

  .post-emergency-savings-fund .emergency-savings-fund-practice-card h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
  }

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

  .post-emergency-savings-fund .emergency-savings-fund-practice-card p {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-practice-card p {
      font-size: 0.95rem;
    }
  }

  /* ===== MISTAKES SECTION ===== */
  .emergency-savings-fund-mistakes {
    background-color: #ffffff;
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-mistakes-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-mistakes-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-mistakes h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-mistakes h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-emergency-savings-fund .emergency-savings-fund-mistakes h2 {
      font-size: 2.5rem;
    }
  }

  .emergency-savings-fund-mistake-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-mistake-list {
      gap: 2rem;
    }
  }

  .emergency-savings-fund-mistake-item {
    padding: 1.5rem;
    background-color: #fff8f8;
    border-left: 4px solid var(--color-error);
    border-radius: var(--radius-lg);
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-mistake-item {
      padding: 2rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-mistake-item h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-mistake-item h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-mistake-item p {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-mistake-item p {
      font-size: 0.95rem;
    }
  }

  /* ===== CONCLUSION SECTION ===== */
  .emergency-savings-fund-conclusion {
    background-color: var(--color-primary);
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-conclusion-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-conclusion h2 {
    color: #ffffff;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-conclusion h2 {
      font-size: 2.25rem;
    }
  }

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

  .post-emergency-savings-fund .emergency-savings-fund-conclusion p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-conclusion p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  }

  .emergency-savings-fund-key-takeaways {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
  }

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

  .post-emergency-savings-fund .emergency-savings-fund-key-takeaways h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-key-takeaways h3 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-key-takeaways ul {
    margin-left: 1.5rem;
  }

  .post-emergency-savings-fund .emergency-savings-fund-key-takeaways li {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-key-takeaways li {
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }
  }

  /* ===== RELATED POSTS SECTION ===== */
  .emergency-savings-fund-related {
    background-color: var(--color-neutral-50);
    overflow: hidden;
    padding: 3rem 0;
  }

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

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

  .emergency-savings-fund-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-related-content {
      gap: 2.5rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-related h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-related h2 {
      font-size: 2.25rem;
    }
  }

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

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

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

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

  .emergency-savings-fund-related-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
  }

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

  .emergency-savings-fund-related-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .emergency-savings-fund-related-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-related-card-content {
      gap: 1.25rem;
      padding: 2rem;
    }
  }

  .post-emergency-savings-fund .emergency-savings-fund-related-card h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    line-height: 1.4;
  }

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

  .post-emergency-savings-fund .emergency-savings-fund-related-card p {
    color: #333333;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .post-emergency-savings-fund .emergency-savings-fund-related-card p {
      font-size: 0.9rem;
    }
  }

  .emergency-savings-fund-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .emergency-savings-fund-related-link {
      font-size: 0.95rem;
    }
  }

  .emergency-savings-fund-related-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
    text-decoration: none;
  }

  .emergency-savings-fund-related-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
  }

  .emergency-savings-fund-related-link:hover i {
    transform: translateX(2px);
  }

/* Post Page 3 Styles */
/* ============================================
   Investment Basics for Beginners - Post Styles
   ============================================ */

.post-investment-basics-beginners {
  width: 100%;
}

/* ============================================
   Breadcrumbs
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-breadcrumbs {
  background-color: var(--color-neutral-50);
  border-bottom: 1px solid var(--color-neutral-200);
  overflow: hidden;
}

.post-investment-basics-beginners .investment-basics-beginners-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-breadcrumbs-content {
    padding: 1.25rem 0;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-breadcrumb-link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.post-investment-basics-beginners .investment-basics-beginners-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-investment-basics-beginners .investment-basics-beginners-breadcrumb-separator {
  color: var(--color-neutral-400);
  margin: 0 0.25rem;
}

.post-investment-basics-beginners .investment-basics-beginners-breadcrumb-current {
  color: var(--color-neutral-600);
  font-weight: var(--fw-medium);
}

/* ============================================
   Hero Section
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-hero {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero {
    padding: 6rem 0;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero-content {
    gap: 2rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero-title {
    font-size: 3.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-lead {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 650px;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-lead {
    font-size: 1.125rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.post-investment-basics-beginners .investment-basics-beginners-read-time {
  color: #a0a0a0;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}

/* ============================================
   Content Sections - General
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-section-1,
.post-investment-basics-beginners .investment-basics-beginners-section-3,
.post-investment-basics-beginners .investment-basics-beginners-section-5 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.post-investment-basics-beginners .investment-basics-beginners-section-2,
.post-investment-basics-beginners .investment-basics-beginners-section-4 {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-1,
  .post-investment-basics-beginners .investment-basics-beginners-section-2,
  .post-investment-basics-beginners .investment-basics-beginners-section-3,
  .post-investment-basics-beginners .investment-basics-beginners-section-4,
  .post-investment-basics-beginners .investment-basics-beginners-section-5 {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-1,
  .post-investment-basics-beginners .investment-basics-beginners-section-2,
  .post-investment-basics-beginners .investment-basics-beginners-section-3,
  .post-investment-basics-beginners .investment-basics-beginners-section-4,
  .post-investment-basics-beginners .investment-basics-beginners-section-5 {
    padding: 5rem 0;
  }
}

/* ============================================
   Section 1 - Understanding Investment Fundamentals
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-section-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-text {
    gap: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-section-heading {
  color: #1a1a1a;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-heading {
    font-size: 2.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-body-text {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-body-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-section-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-section-image {
    max-height: 350px;
  }
}

/* ============================================
   Section 2 - Core Concepts Grid
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-content-2 {
    gap: 2.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-concepts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-investment-basics-beginners .investment-basics-beginners-concept-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-concept-card {
    padding: 2rem;
    gap: 1rem;
  }
}

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

.post-investment-basics-beginners .investment-basics-beginners-concept-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-concept-title {
    font-size: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-concept-text {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-concept-text {
    font-size: 0.95rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-highlight-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-highlight-box {
    padding: 2rem;
    margin-top: 1.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-highlight-text {
  color: #1e40af;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-highlight-text {
    font-size: 1rem;
  }
}

/* ============================================
   Section 3 - RRSP and TFSA Accounts
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-content-3 {
    gap: 2.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-accounts-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-accounts-comparison {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-account-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-neutral-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-account-item {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-account-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-account-title {
    font-size: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-account-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-investment-basics-beginners .investment-basics-beginners-account-list li {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-account-list li {
    font-size: 0.9rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-account-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
}

/* ============================================
   Section 4 - Getting Started Steps
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-content-4 {
    gap: 2.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-steps {
    gap: 2rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-step {
    gap: 2rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

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

.post-investment-basics-beginners .investment-basics-beginners-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-investment-basics-beginners .investment-basics-beginners-step-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-step-title {
    font-size: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-step-text {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-step-text {
    font-size: 0.95rem;
  }
}

/* ============================================
   Section 5 - Common Mistakes Grid
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-content-5 {
    gap: 2.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-mistakes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-mistakes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-mistake-item {
  background-color: #fff8f8;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-error);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-mistake-item {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-mistake-title {
  color: var(--color-error);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-mistake-title {
    font-size: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-mistake-text {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-mistake-text {
    font-size: 0.95rem;
  }
}

/* ============================================
   Conclusion Section
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-conclusion {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion {
    padding: 5rem 0;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion-content {
    gap: 1.75rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-conclusion-heading {
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion-heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion-heading {
    font-size: 2.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-conclusion-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-conclusion-text {
    font-size: 1rem;
  }
}

/* ============================================
   Related Posts Section
   ============================================ */

.post-investment-basics-beginners .investment-basics-beginners-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-related {
    padding: 5rem 0;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-content {
    gap: 2.5rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-heading {
  color: #1a1a1a;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: var(--fw-bold);
  text-align: center;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-heading {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-heading {
    font-size: 2.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-investment-basics-beginners .investment-basics-beginners-related-card {
  background-color: #f8f9fa;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.post-investment-basics-beginners .investment-basics-beginners-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-neutral-200);
}

.post-investment-basics-beginners .investment-basics-beginners-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-investment-basics-beginners .investment-basics-beginners-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-card-body {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-card-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-card-title {
    font-size: 1.25rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-card-description {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-investment-basics-beginners .investment-basics-beginners-related-card-description {
    font-size: 0.95rem;
  }
}

.post-investment-basics-beginners .investment-basics-beginners-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.post-investment-basics-beginners .investment-basics-beginners-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-investment-basics-beginners .investment-basics-beginners-link-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.post-investment-basics-beginners .investment-basics-beginners-related-link:hover .investment-basics-beginners-link-arrow {
  transform: translateX(4px);
}

/* ============================================
   Responsive Mobile Optimizations
   ============================================ */

@media (max-width: 767px) {
  .post-investment-basics-beginners .investment-basics-beginners-hero-title {
    font-size: 1.875rem;
  }

  .post-investment-basics-beginners .investment-basics-beginners-section-heading {
    font-size: 1.5rem;
  }

  .post-investment-basics-beginners .investment-basics-beginners-breadcrumbs-content {
    font-size: 0.75rem;
  }
}

/* Post Page 4 Styles */
/* ========================================
   CREDIT SCORE POST - COMPLETE STYLING
   ======================================== */

/* Breadcrumbs Navigation */
.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs {
  background-color: var(--color-neutral-50);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-neutral-200);
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs a {
  color: var(--color-primary);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs span:last-child {
  color: var(--color-neutral-600);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.post-understanding-credit-scores .understanding-credit-scores-breadcrumbs-separator {
  color: var(--color-neutral-400);
  margin: 0 0.25rem;
}

/* Hero Section */
.post-understanding-credit-scores .understanding-credit-scores-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero {
    padding: 8rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero-content {
    gap: 2rem;
    max-width: 700px;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero-title {
    font-size: 3.5rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-hero-lead {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-hero-lead {
    font-size: 1.125rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-understanding-credit-scores .understanding-credit-scores-meta-item {
  color: #b0d4ff;
  font-size: var(--fs-small);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

/* Section 1 - What is a Credit Score */
.post-understanding-credit-scores .understanding-credit-scores-section-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-1 {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-text-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-understanding-credit-scores .understanding-credit-scores-section-1 h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-1 h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-section-1 p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.post-understanding-credit-scores .understanding-credit-scores-section-image {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Section 2 - Credit Score Ranges */
.post-understanding-credit-scores .understanding-credit-scores-section-2 {
  background-color: var(--color-neutral-50);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-2 {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-understanding-credit-scores .understanding-credit-scores-section-2 h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-2 h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-section-2 > .container > .understanding-credit-scores-content-2 > p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-2 > .container > .understanding-credit-scores-content-2 > p {
    font-size: 1rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-ranges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-ranges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-range-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-range-card {
    padding: 2rem;
  }
}

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

.post-understanding-credit-scores .understanding-credit-scores-range-card.excellent {
  border-left-color: #059669;
}

.post-understanding-credit-scores .understanding-credit-scores-range-card.good {
  border-left-color: #2563eb;
}

.post-understanding-credit-scores .understanding-credit-scores-range-card.fair {
  border-left-color: #f59e0b;
}

.post-understanding-credit-scores .understanding-credit-scores-range-card.poor {
  border-left-color: #dc2626;
}

.post-understanding-credit-scores .understanding-credit-scores-range-score {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
}

.post-understanding-credit-scores .understanding-credit-scores-range-label {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--color-neutral-900);
}

.post-understanding-credit-scores .understanding-credit-scores-range-card p {
  color: var(--color-neutral-600);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Section 3 - Factors Affecting Credit Score */
.post-understanding-credit-scores .understanding-credit-scores-section-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-3 {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-understanding-credit-scores .understanding-credit-scores-section-3 h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-3 h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-section-3 > .container > .understanding-credit-scores-content-3 > p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-3 > .container > .understanding-credit-scores-content-3 > p {
    font-size: 1rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-factors-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-factors-container {
    gap: 2rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-factor-item {
  background-color: var(--color-neutral-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-factor-item {
    padding: 2rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-factor-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-understanding-credit-scores .understanding-credit-scores-factor-percentage {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  min-width: 70px;
  text-align: center;
}

.post-understanding-credit-scores .understanding-credit-scores-factor-item h3 {
  color: var(--color-neutral-900);
  font-size: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-factor-item h3 {
    font-size: 1.375rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-factor-item p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-factor-item p {
    font-size: 1rem;
  }
}

/* Section 4 - Practical Steps */
.post-understanding-credit-scores .understanding-credit-scores-section-4 {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8f9fa 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-4 {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-understanding-credit-scores .understanding-credit-scores-section-4 h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-4 h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-section-4 > .container > .understanding-credit-scores-content-4 > p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-4 > .container > .understanding-credit-scores-content-4 > p {
    font-size: 1rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-steps-list {
    gap: 2rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-step {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.post-understanding-credit-scores .understanding-credit-scores-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.post-understanding-credit-scores .understanding-credit-scores-step-number {
  background-color: var(--color-secondary);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.875rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-understanding-credit-scores .understanding-credit-scores-step h3 {
  color: var(--color-neutral-900);
  font-size: 1.125rem;
  margin-bottom: 0;
}

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

.post-understanding-credit-scores .understanding-credit-scores-step p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

/* Section 5 - Myths */
.post-understanding-credit-scores .understanding-credit-scores-section-5 {
  background-color: var(--color-neutral-50);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-5 {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-understanding-credit-scores .understanding-credit-scores-section-5 h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-section-5 h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-myths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-understanding-credit-scores .understanding-credit-scores-myth-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-myth-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

.post-understanding-credit-scores .understanding-credit-scores-myth-card h3 {
  color: var(--color-neutral-900);
  font-size: 1.125rem;
  line-height: 1.4;
}

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

.post-understanding-credit-scores .understanding-credit-scores-myth-card p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-myth-card p {
    font-size: 1rem;
  }
}

/* Conclusion Section */
.post-understanding-credit-scores .understanding-credit-scores-conclusion {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-conclusion {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.post-understanding-credit-scores .understanding-credit-scores-conclusion h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-conclusion h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-conclusion p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-conclusion p {
    font-size: 1rem;
  }
}

/* Related Posts Section */
.post-understanding-credit-scores .understanding-credit-scores-related {
  background: linear-gradient(135deg, #f8fafc 0%, #ecf0f1 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-understanding-credit-scores .understanding-credit-scores-related {
    padding: 6rem 0;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-understanding-credit-scores .understanding-credit-scores-related h2 {
  color: var(--color-neutral-900);
  font-size: 1.875rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-related h2 {
    font-size: 2.25rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-related-subtitle {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-related-subtitle {
    font-size: 1rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-understanding-credit-scores .understanding-credit-scores-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.post-understanding-credit-scores .understanding-credit-scores-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.post-understanding-credit-scores .understanding-credit-scores-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-understanding-credit-scores .understanding-credit-scores-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-related-card-body {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-related-card h3 {
  color: var(--color-neutral-900);
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0;
}

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

.post-understanding-credit-scores .understanding-credit-scores-related-card p {
  color: var(--color-neutral-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-understanding-credit-scores .understanding-credit-scores-related-card p {
    font-size: 1rem;
  }
}

.post-understanding-credit-scores .understanding-credit-scores-related-link {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.post-understanding-credit-scores .understanding-credit-scores-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-understanding-credit-scores .understanding-credit-scores-related-link i {
  font-size: 0.75rem;
}

/* Post Page 5 Styles */
/* Post: Debt Management Strategies for Families */
/* Complete CSS isolation with debt-management-strategies- prefix */

.post-debt-management-strategies {
  width: 100%;
}

/* ===== BREADCRUMBS ===== */
.post-debt-management-strategies .debt-management-strategies-breadcrumbs {
  background-color: var(--color-neutral-50);
  padding: 1.5rem 0;
  overflow: hidden;
}

.post-debt-management-strategies .debt-management-strategies-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-debt-management-strategies .debt-management-strategies-breadcrumbs a {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-breadcrumbs a {
    font-size: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.post-debt-management-strategies .debt-management-strategies-breadcrumbs-separator {
  color: var(--color-neutral-400);
  font-size: 0.75rem;
}

.post-debt-management-strategies .debt-management-strategies-breadcrumbs span:last-child {
  color: var(--color-neutral-600);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-breadcrumbs span:last-child {
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-hero {
    padding: 8rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-hero-content {
    gap: 2rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-hero h1 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-hero h1 {
    font-size: 2.5rem;
  }
}

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

.post-debt-management-strategies .debt-management-strategies-lead {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-lead {
    font-size: 1.125rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.post-debt-management-strategies .debt-management-strategies-read-time {
  color: #b0bec5;
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

/* ===== INTRO SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-intro {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-intro {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-intro-text h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-intro-text h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-intro-text p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-intro-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-intro-image {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ===== PAYOFF SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-payoff {
  background-color: var(--color-neutral-100);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-payoff {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-payoff {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-payoff-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-payoff-content {
    gap: 2.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-payoff h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-payoff h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-payoff h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-payoff p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-payoff p {
    font-size: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-methods {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-method-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-method-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-method-card h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-method-card h3 {
    font-size: 1.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-method-card p {
  color: #333333;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-method-card p {
    font-size: 0.95rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-benefits {
  background-color: var(--color-primary-light);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  color: #1e40af;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-benefits {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* ===== BUDGET SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-budget {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-budget {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-budget {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-budget-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-budget-content {
    gap: 2.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-budget h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-budget h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-budget h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-budget p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-budget p {
    font-size: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-budget-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-budget-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-budget-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-debt-management-strategies .debt-management-strategies-step {
  background-color: var(--color-neutral-50);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-step {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

.post-debt-management-strategies .debt-management-strategies-step h4 {
  color: #1a1a1a;
  font-size: 1.125rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-step h4 {
    font-size: 1.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-step p {
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-step p {
    font-size: 0.95rem;
  }
}

/* ===== PREVENT SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-prevent {
  background-color: var(--color-neutral-100);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-prevent {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-prevent {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-prevent-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-prevent-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-prevent-text h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-prevent-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-prevent-text h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-prevent-text p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-prevent-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-prevent-image {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ===== RESOURCES SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-resources {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-resources {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-resources {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-resources-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-resources-content {
    gap: 2.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-resources h2 {
  color: #1a1a1a;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-resources h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-resources h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-resources p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-resources p {
    font-size: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-checklist {
    gap: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-checklist li {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
  margin: 0;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-checklist li {
    font-size: 1rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
}

/* ===== RELATED SECTION ===== */
.post-debt-management-strategies .debt-management-strategies-related {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-related {
    padding: 6rem 0;
  }
}

.post-debt-management-strategies .debt-management-strategies-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related-content {
    gap: 2.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-related h2 {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-debt-management-strategies .debt-management-strategies-related h2 {
    font-size: 2.25rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-debt-management-strategies .debt-management-strategies-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.post-debt-management-strategies .debt-management-strategies-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-debt-management-strategies .debt-management-strategies-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-neutral-200);
}

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

.post-debt-management-strategies .debt-management-strategies-related-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related-info {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-related-card h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
  margin: 0;
}

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

.post-debt-management-strategies .debt-management-strategies-related-card p {
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related-card p {
    font-size: 0.95rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  align-self: flex-start;
}

@media (min-width: 768px) {
  .post-debt-management-strategies .debt-management-strategies-related-link {
    font-size: 0.95rem;
  }
}

.post-debt-management-strategies .debt-management-strategies-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-debt-management-strategies .debt-management-strategies-related-link i {
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
  .post-debt-management-strategies {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .post-debt-management-strategies .debt-management-strategies-intro-content,
  .post-debt-management-strategies .debt-management-strategies-prevent-content {
    max-width: 100%;
  }
}

/* Privacy Page Styles */
.privacy-page {
  background-color: var(--color-neutral-50);
  overflow: hidden;
}

.privacy-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .privacy-content {
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
  }
}

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

/* Hero Section */
.privacy-hero {
  border-bottom: 2px solid var(--color-neutral-200);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .privacy-hero {
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}

.privacy-hero h1 {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-sm) 0;
  font-family: var(--font-primary);
  line-height: 1.2;
}

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

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

.privacy-updated {
  font-size: var(--fs-small);
  color: var(--color-neutral-600);
  margin: 0;
  font-weight: var(--fw-medium);
}

/* Privacy Sections */
.privacy-section {
  overflow: hidden;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-neutral-900);
  margin: 0 0 var(--space-md) 0;
  font-family: var(--font-primary);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .privacy-section h2 {
    font-size: 1.875rem;
    margin-bottom: var(--space-lg);
  }
}

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

.privacy-section p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-neutral-800);
  margin: 0 0 var(--space-md) 0;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
  }
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

/* Contact Info */
.privacy-contact-info {
  background-color: var(--color-neutral-100);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .privacy-contact-info {
    padding: var(--space-lg);
    margin-top: var(--space-lg);
  }
}

.privacy-contact-info p {
  margin: 0 0 var(--space-sm) 0;
  font-size: 0.875rem;
  color: var(--color-neutral-800);
}

@media (min-width: 768px) {
  .privacy-contact-info p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }
}

.privacy-contact-info p:last-child {
  margin-bottom: 0;
}

.privacy-contact-info strong {
  color: var(--color-primary-dark);
  font-weight: var(--fw-semibold);
}

/* Typography Hierarchy */
.privacy-page h1,
.privacy-page h2 {
  letter-spacing: -0.5px;
}

/* Responsive Container */
@media (min-width: 1024px) {
  .privacy-page .container {
    padding: 0 var(--space-lg);
  }
}

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

/* Thank You Page Styles */
/* ============================================
     THANK YOU PAGE - MAIN STYLES
     ============================================ */

  .thank-page {
    background-color: var(--color-neutral-50);
  }

  /* Hero Section */
  .thank-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: var(--space-xl);
    }
  }

  .thank-icon {
    font-size: 4rem;
    color: var(--color-neutral-50);
    animation: iconBounce 0.8s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      font-size: 5rem;
    }
  }

  @keyframes iconBounce {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-hero-section h1 {
    color: var(--color-neutral-50);
    font-size: 2.25rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.75rem;
    }
  }

  .thank-lead {
    color: var(--color-neutral-100);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  /* Message Section */
  .thank-message-section {
    background-color: var(--color-neutral-50);
    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: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }

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

  .thank-message-section h2 {
    color: var(--color-neutral-900);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-message-section h2 {
      font-size: 2.5rem;
    }
  }

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

  .thank-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .thank-steps {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
  }

  .thank-step {
    background-color: var(--color-neutral-100);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  @media (min-width: 768px) {
    .thank-step {
      padding: var(--space-lg);
      gap: var(--space-md);
    }
  }

  .thank-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .step-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .step-icon {
      font-size: 3rem;
    }
  }

  .thank-step h3 {
    color: var(--color-neutral-900);
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
  }

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

  .thank-step p {
    color: var(--color-neutral-600);
    font-size: 0.875rem;
    line-height: 1.6;
  }

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

  .thank-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
    padding-top: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-cta {
      padding-top: var(--space-xl);
    }
  }

  .thank-subtext {
    color: var(--color-neutral-600);
    font-size: 1rem;
    font-weight: var(--fw-medium);
  }

  /* Resources Section */
  .thank-resources-section {
    background-color: var(--color-neutral-100);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

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

  .thank-resources-section h2 {
    color: var(--color-neutral-900);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-resources-section h2 {
      font-size: 2.5rem;
    }
  }

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

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

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

  @media (min-width: 1024px) {
    .thank-tips-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
    }
  }

  .thank-tip-card {
    background-color: var(--color-neutral-50);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
  }

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

  .thank-tip-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    font-size: 1.125rem;
  }

  .thank-tip-card h4 {
    color: var(--color-neutral-900);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
  }

  @media (min-width: 768px) {
    .thank-tip-card h4 {
      font-size: 1.125rem;
    }
  }

  .thank-tip-card p {
    color: var(--color-neutral-600);
    font-size: 0.875rem;
    line-height: 1.5;
  }

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

  /* Footer CTA Section */
  .thank-footer-cta-section {
    background-color: var(--color-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .thank-footer-cta-content {
      gap: var(--space-lg);
    }
  }

  .thank-footer-cta-section h2 {
    color: var(--color-neutral-50);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
  }

  @media (min-width: 768px) {
    .thank-footer-cta-section h2 {
      font-size: 2.5rem;
    }
  }

  .thank-footer-cta-section p {
    color: var(--color-neutral-100);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .thank-footer-cta-section p {
      font-size: 1.125rem;
    }
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
  }

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

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

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

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

  .btn-secondary {
    background-color: var(--color-neutral-50);
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
  }

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

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

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

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

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

/* 404 Page Styles */
/* ============================
     404 ERROR PAGE STYLES
     ============================ */

  .error-page {
    background-color: var(--color-neutral-50);
  }

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

  .error-hero-section {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, #1e3a8a 100%);
    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;
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      gap: 3rem;
      align-items: center;
    }
  }

  /* ============================
     ERROR ILLUSTRATION
     ============================ */

  .error-illustration {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .error-illustration {
      height: 300px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 50%;
      height: 350px;
    }
  }

  .illustration-404 {
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .illustration-404 {
      gap: 1rem;
    }
  }

  .digit {
    font-size: 6rem;
    font-weight: var(--fw-bold);
    color: var(--color-primary-light);
    text-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    animation: float 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .digit {
      font-size: 8rem;
    }
  }

  @media (min-width: 1024px) {
    .digit {
      font-size: 10rem;
    }
  }

  .digit-4 {
    animation-delay: 0s;
  }

  .digit-0 {
    animation-delay: 0.2s;
  }

  .digit-4-alt {
    animation-delay: 0.4s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  /* ============================
     FLOATING ELEMENTS
     ============================ */

  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .element {
    position: absolute;
    background-color: var(--color-primary-light);
    opacity: 0.1;
    border-radius: 50%;
  }

  .element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation: drift 6s ease-in-out infinite;
  }

  .element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 8%;
    animation: drift 7s ease-in-out infinite reverse;
  }

  .element-3 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    left: 20%;
    animation: drift 8s ease-in-out infinite;
  }

  .element-4 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 15%;
    animation: drift 9s ease-in-out infinite reverse;
  }

  @keyframes drift {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(30px, 30px);
    }
  }

  /* ============================
     ERROR CONTENT
     ============================ */

  .error-content {
    flex: 1;
    color: var(--color-neutral-50);
  }

  .error-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: #ffffff;
    margin-bottom: 1rem;
  }

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

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

  .error-subtitle {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary-light);
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }

  .error-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e7ff;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1.0625rem;
      margin-bottom: 2.5rem;
    }
  }

  /* ============================
     ERROR SUGGESTIONS
     ============================ */

  .error-suggestions {
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .error-suggestions {
      margin-bottom: 2.5rem;
    }
  }

  .suggestions-title {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary-light);
    margin-bottom: 1rem;
  }

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

  .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .suggestions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #e0e7ff;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .suggestions-list li {
      gap: 1rem;
      font-size: 1rem;
    }
  }

  .suggestions-list i {
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  /* ============================
     ERROR ACTIONS
     ============================ */

  .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

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

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
  }

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

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

  .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-primary-light);
    border-color: var(--color-primary-light);
  }

  .btn-secondary:hover {
    background-color: rgba(219, 234, 254, 0.1);
    border-color: #ffffff;
    color: #ffffff;
  }

  .btn-secondary:active {
    background-color: rgba(219, 234, 254, 0.2);
  }

  .btn i {
    font-size: 1.1em;
  }

  /* ============================
     ERROR TIPS SECTION
     ============================ */

  .error-tips-section {
    background-color: #ffffff;
    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;
  }

  .tips-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .tips-header {
      margin-bottom: 3rem;
    }
  }

  .tips-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-neutral-900);
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .tips-header h2 {
      font-size: 2.25rem;
      margin-bottom: 0.75rem;
    }
  }

  .tips-header p {
    font-size: 1rem;
    color: var(--color-neutral-600);
  }

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

  /* ============================
     TIPS GRID
     ============================ */

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

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

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

  .tip-card {
    background-color: var(--color-neutral-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-neutral-200);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

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

  .tip-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-light), #dbeafe);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary-dark);
  }

  @media (min-width: 768px) {
    .tip-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
  }

  .tip-card h4 {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-neutral-900);
    line-height: 1.3;
  }

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

  .tip-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-neutral-600);
    margin: 0;
  }

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

  /* ============================
     CONTAINER
     ============================ */

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

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

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

  /* ============================
     ACCESSIBILITY
     ============================ */

  @media (prefers-reduced-motion: reduce) {
    .digit,
    .element,
    .btn,
    .tip-card {
      animation: none;
      transition: none;
    }

    .btn:hover {
      transform: none;
    }

    .tip-card:hover {
      transform: none;
    }
  }

  /* ============================
     PRINT STYLES
     ============================ */

  @media print {
    .error-illustration,
    .floating-elements {
      display: none;
    }

    .error-tips-section {
      page-break-before: always;
    }
  }