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

:root {
  /* Primary Colors */
  --color-primary: #2ecc71;
  --color-primary-dark: #27ae60;
  --color-primary-light: #d5f4e6;
  --color-accent: #3498db;
  --color-accent-dark: #2980b9;
  
  /* Neutral Colors */
  --color-bg-dark: #0f1419;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8f9fa;
  --color-bg-medium: #ecf0f1;
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-muted: #7f8c8d;
  --color-text-light-muted: #bdc3c7;
  --color-border: #e0e0e0;
  --color-border-dark: #34495e;
  
  /* Semantic Colors */
  --color-success: #2ecc71;
  --color-warning: #f39c12;
  --color-danger: #e74c3c;
  --color-info: #3498db;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  --font-size-h1: 3.75rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2.25rem;
  --font-size-h4: 1.875rem;
  --font-size-h5: 1.5rem;
  --font-size-h6: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-tiny: 0.75rem;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;
  
  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Z-index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  
  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 1.75rem;
  --icon-lg: 2.5rem;
  --icon-xl: 3.5rem;
}

/* 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(--font-size-body);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

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

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

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

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

p {
  font-weight: 400;
  letter-spacing: 0.3px;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

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

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

li {
  margin-bottom: var(--spacing-xs);
}

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

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

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

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

/* Buttons Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-small);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  gap: 0.5rem;
}

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

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

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

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

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

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

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
  border: none;
  text-decoration: underline;
}

.btn-ghost:hover {
  color: var(--color-primary-dark);
}

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

/* Form Elements */
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  padding: var(--spacing-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

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

label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  font-size: var(--font-size-small);
}

/* Font Awesome Icons */
.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

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

.pt-0 { padding-top: 0; }
.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-0 { padding-bottom: 0; }
.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

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

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

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

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

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

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

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

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

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

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

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

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

/* Responsive Font Sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.875rem;
  }
}

/* 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 pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

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

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

/* Focus Visible for Keyboard Navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}
/* Root variables already defined - using existing design system */

  /* Header wrapper with full width */
  .savings-nav {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border-dark);
    position: relative;
    z-index: var(--z-fixed);
    overflow: hidden;
  }

  /* Container for header content */
  .savings-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  @media (min-width: 768px) {
    .savings-nav-container {
      padding: 1.25rem var(--spacing-lg);
    }
  }

  /* Logo section */
  .savings-nav-logo {
    display: flex;
    align-items: center;
  }

  .savings-nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-primary);
    transition: color var(--transition-base);
  }

  @media (min-width: 768px) {
    .savings-nav-brand {
      font-size: 1.5rem;
      gap: 1rem;
    }
  }

  .savings-nav-brand:hover {
    color: var(--color-primary-light);
  }

  .savings-nav-brand i {
    font-size: var(--icon-lg);
  }

  @media (min-width: 768px) {
    .savings-nav-brand i {
      font-size: var(--icon-xl);
    }
  }

  /* Desktop navigation */
  .savings-nav-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  @media (min-width: 768px) {
    .savings-nav-desktop-nav {
      display: flex;
      gap: 1rem;
    }
  }

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

  /* Navigation links */
  .savings-nav-nav-link {
    color: var(--color-text-light-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background-color var(--transition-base);
  }

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

  .savings-nav-nav-link:hover {
    color: var(--color-primary);
    background-color: rgba(46, 204, 113, 0.1);
  }

  .savings-nav-nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* CTA button - desktop */
  .savings-nav-cta-button {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    display: inline-block;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
  }

  @media (min-width: 1024px) {
    .savings-nav-cta-button {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

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

  .savings-nav-cta-button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Mobile toggle button */
  .savings-nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: var(--icon-lg);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-base);
    z-index: var(--z-fixed);
  }

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

  .savings-nav-mobile-toggle:hover {
    color: var(--color-primary-light);
  }

  .savings-nav-mobile-toggle:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Mobile menu overlay */
  .savings-nav-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    border-left: 1px solid var(--color-border-dark);
    display: flex;
    flex-direction: column;
    padding: 1rem var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: calc(var(--z-fixed) - 1);
    overflow-y: auto;
  }

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

  .savings-nav-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* Mobile menu header with close button */
  .savings-nav-mobile-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-lg);
  }

  .savings-nav-mobile-close {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: var(--icon-lg);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .savings-nav-mobile-close:hover {
    color: var(--color-primary-light);
  }

  .savings-nav-mobile-close:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Mobile navigation links container */
  .savings-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  /* Mobile navigation links */
  .savings-nav-mobile-link {
    color: var(--color-text-light-muted);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: block;
  }

  .savings-nav-mobile-link:hover {
    color: var(--color-primary);
    background-color: rgba(46, 204, 113, 0.1);
  }

  .savings-nav-mobile-link:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Mobile CTA button */
  .savings-nav-mobile-cta {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
    display: block;
    transition: all var(--transition-base);
    margin-top: auto;
  }

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

  .savings-nav-mobile-cta:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Accessibility: prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .savings-nav-brand,
    .savings-nav-nav-link,
    .savings-nav-cta-button,
    .savings-nav-mobile-toggle,
    .savings-nav-mobile-menu,
    .savings-nav-mobile-close,
    .savings-nav-mobile-link,
    .savings-nav-mobile-cta {
      transition: none;
    }

    .savings-nav-cta-button:hover,
    .savings-nav-mobile-cta:hover {
      transform: none;
    }
  }

    /* Savings Hub Main Styles */
.savings-hub {
  overflow: hidden;
}

/* Hero Section */
.savings-hub .hero-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
  padding: 4rem 0 3rem;
}

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

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

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

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

.savings-hub .hero-text h1 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.savings-hub .hero-text > p {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .savings-hub .hero-text > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

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

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

.savings-hub .hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  height: 300px;
}

@media (min-width: 768px) {
  .savings-hub .hero-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .savings-hub .hero-image {
    height: 400px;
  }
}

.savings-hub .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Section */
.savings-hub .why-section {
  background-color: var(--color-bg-light-secondary);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.savings-hub .why-content h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .savings-hub .why-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .why-content h2 {
    font-size: 3rem;
  }
}

.savings-hub .section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .savings-hub .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.savings-hub .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.savings-hub .benefit-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

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

.savings-hub .benefit-icon {
  color: var(--color-primary);
  font-size: var(--icon-lg);
}

.savings-hub .benefit-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

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

.savings-hub .benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

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

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

.savings-hub .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .savings-hub .section-header {
    margin-bottom: 3rem;
  }
}

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

.savings-hub .section-header h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

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

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

.savings-hub .section-header p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.savings-hub .post-image {
  overflow: hidden;
  height: 200px;
  background-color: #e0e0e0;
}

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

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

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

.savings-hub .post-body h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: 1.3;
}

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

.savings-hub .post-body p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

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

.savings-hub .post-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.savings-hub .post-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.savings-hub .posts-footer {
  display: flex;
  justify-content: center;
}

/* How It Works Section */
.savings-hub .how-it-works-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.savings-hub .how-it-works-content h2 {
  color: #ffffff;
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .savings-hub .how-it-works-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .how-it-works-content h2 {
    font-size: 3rem;
  }
}

.savings-hub .how-it-works-content > .section-subtitle {
  color: #bdc3c7;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .savings-hub .how-it-works-content > .section-subtitle {
    margin-bottom: 3.5rem;
  }
}

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

@media (min-width: 768px) {
  .savings-hub .steps-container {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .steps-container {
    gap: 1.5rem;
  }
}

.savings-hub .step {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  position: relative;
}

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

.savings-hub .step-number {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .savings-hub .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.savings-hub .step h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

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

.savings-hub .step p {
  color: #bdc3c7;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.savings-hub .step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .savings-hub .step-connector {
    display: flex;
  }
}

/* Statistics Section */
.savings-hub .statistics-section {
  background-color: var(--color-primary-light);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.savings-hub .statistics-content h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .savings-hub .statistics-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .statistics-content h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}

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

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

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

.savings-hub .stat-card {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

.savings-hub .stat-number {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

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

.savings-hub .stat-card p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

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

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

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

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

.savings-hub .about-text h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .savings-hub .about-text h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .about-text h2 {
    font-size: 3rem;
  }
}

.savings-hub .about-text p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.savings-hub .about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .savings-hub .about-features {
    gap: 1.25rem;
  }
}

.savings-hub .about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-dark);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .savings-hub .about-feature {
    font-size: 1rem;
    gap: 1.25rem;
  }
}

.savings-hub .about-feature i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.savings-hub .about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 300px;
}

@media (min-width: 768px) {
  .savings-hub .about-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .savings-hub .about-image {
    height: 400px;
  }
}

.savings-hub .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Habits Section */
.savings-hub .habits-section {
  background-color: var(--color-bg-light-secondary);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.savings-hub .habits-content h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .savings-hub .habits-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .savings-hub .habits-content h2 {
    font-size: 3rem;
  }
}

.savings-hub .habits-content > .section-subtitle {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .savings-hub .habits-content > .section-subtitle {
    margin-bottom: 3rem;
  }
}

.savings-hub .habits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.savings-hub .habit-item {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .savings-hub .habit-item {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.savings-hub .habit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.savings-hub .habit-icon {
  color: var(--color-primary);
}

.savings-hub .habit-item h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
}

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

.savings-hub .habit-item p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .savings-hub .habit-item p {
    font-size: 0.95rem;
  }
}

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

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

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

.savings-hub .contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.savings-hub .contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .savings-hub .contact-header {
    margin-bottom: 3rem;
  }
}

.savings-hub .contact-header h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

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

.savings-hub .contact-header p {
  color: #bdc3c7;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.savings-hub .contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.savings-hub .form-group label {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.savings-hub .form-group input,
.savings-hub .form-group textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-md);
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

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

.savings-hub .form-group input::placeholder,
.savings-hub .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.savings-hub .form-group input:focus,
.savings-hub .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.savings-hub .form-consent {
  text-align: center;
}

.savings-hub .form-consent p {
  color: #bdc3c7;
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .savings-hub .form-consent p {
    font-size: 0.875rem;
  }
}

.savings-hub .form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.savings-hub .form-consent a:hover {
  color: var(--color-primary-light);
}

.savings-hub .form-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  align-self: center;
  width: 100%;
}

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

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

.savings-hub .form-submit-btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 20, 25, 0.98);
  border-top: 1px solid rgba(46, 204, 113, 0.2);
  padding: 1rem;
  z-index: var(--z-fixed);
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

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

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

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

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

.cookie-banner p {
  color: #bdc3c7;
  font-size: 0.75rem;
  line-height: 1.6;
  flex: 1;
}

@media (min-width: 768px) {
  .cookie-banner p {
    font-size: 0.875rem;
    margin: 0;
  }
}

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

@media (min-width: 768px) {
  .cookie-buttons {
    width: auto;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  flex: 1;
}

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

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

.cookie-accept:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.cookie-decline {
  background-color: transparent;
  color: #bdc3c7;
}

.cookie-decline:hover {
  color: #ffffff;
  border-color: rgba(46, 204, 113, 0.5);
}

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

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

  /* About Section */
  .footer-about {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-about-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: var(--line-height-tight);
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    line-height: var(--line-height-relaxed);
    max-width: 580px;
  }

  /* Footer Sections Container */
  .footer-sections {
    display: block;
    margin-bottom: 2rem;
  }

  /* Navigation Section */
  .footer-nav {
    margin-bottom: 2rem;
  }

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

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

  /* Legal Section */
  .footer-legal {
    margin-bottom: 0;
  }

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

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

  /* Footer Links */
  .footer-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    text-decoration: none;
    transition: color var(--transition-base), 
                padding-left var(--transition-base);
    padding-left: 0;
    display: inline-block;
  }

  .footer-link:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
  }

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

  /* Copyright Section */
  .footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-dark);
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--color-text-light-muted);
    text-align: center;
    line-height: var(--line-height-normal);
  }

  .footer-brand {
    color: var(--color-primary);
    font-weight: 600;
  }

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

    .footer-content {
      display: block;
    }

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

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

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

    .footer-sections {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .footer-nav {
      margin-bottom: 0;
    }

    .footer-legal {
      margin-bottom: 0;
    }

    .footer-nav-title,
    .footer-legal-title {
      font-size: 1.0625rem;
      margin-bottom: 1.25rem;
    }

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

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

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

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

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

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

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

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

    .footer-sections {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

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

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

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

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

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

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

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

/* Category Page Styles */
/* Category Page: Stress-Free Saving */

/* Hero Section */
.category-page-stress-free-saving .category-hero-stress-free-saving {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.category-page-stress-free-saving .hero-content-stress-free-saving {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .category-page-stress-free-saving .hero-content-stress-free-saving {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}

.category-page-stress-free-saving .hero-text-stress-free-saving {
  flex: 1;
}

.category-page-stress-free-saving .hero-text-stress-free-saving h1 {
  color: var(--color-text-dark);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

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

@media (min-width: 1024px) {
  .category-page-stress-free-saving .hero-text-stress-free-saving h1 {
    font-size: 3.25rem;
  }
}

.category-page-stress-free-saving .hero-text-stress-free-saving p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
}

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

.category-page-stress-free-saving .hero-visual-stress-free-saving {
  flex: 1;
  width: 100%;
}

.category-page-stress-free-saving .hero-image-stress-free-saving {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Posts Grid Section */
.category-page-stress-free-saving .posts-grid-section-stress-free-saving {
  background-color: var(--color-bg-light-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .posts-grid-section-stress-free-saving {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-stress-free-saving .posts-grid-section-stress-free-saving {
    padding: 6rem 0;
  }
}

.category-page-stress-free-saving .posts-grid-stress-free-saving {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .category-page-stress-free-saving .posts-grid-stress-free-saving {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Card Styling */
.category-page-stress-free-saving .card-stress-free-saving {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .card-stress-free-saving {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

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

.category-page-stress-free-saving .card-stress-free-saving:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.category-page-stress-free-saving .card-image-stress-free-saving {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.category-page-stress-free-saving .card-stress-free-saving h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: var(--line-height-tight);
}

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

.category-page-stress-free-saving .card-stress-free-saving p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

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

.category-page-stress-free-saving .card-link-stress-free-saving {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.category-page-stress-free-saving .card-link-stress-free-saving:hover {
  color: var(--color-primary-dark);
}

/* Additional Section 1: Tips */
.category-page-stress-free-saving .additional-section-1-stress-free-saving {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .additional-section-1-stress-free-saving {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-stress-free-saving .additional-section-1-stress-free-saving {
    padding: 6rem 0;
  }
}

.category-page-stress-free-saving .additional-content-1-stress-free-saving h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 2rem;
  text-align: center;
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .additional-content-1-stress-free-saving h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

.category-page-stress-free-saving .tips-grid-stress-free-saving {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .tips-grid-stress-free-saving {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-stress-free-saving .tips-grid-stress-free-saving {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.category-page-stress-free-saving .tip-item-stress-free-saving,
.category-page-stress-free-saving .tip-item-stress-free-saying {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  text-align: center;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .tip-item-stress-free-saving,
  .category-page-stress-free-saving .tip-item-stress-free-saying {
    padding: 2rem;
  }
}

.category-page-stress-free-saving .tip-item-stress-free-saving i,
.category-page-stress-free-saving .tip-item-stress-free-saying i {
  color: var(--color-primary);
  font-size: 2.5rem;
}

.category-page-stress-free-saving .tip-item-stress-free-saving h3,
.category-page-stress-free-saving .tip-item-stress-free-saying h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .tip-item-stress-free-saving h3,
  .category-page-stress-free-saving .tip-item-stress-free-saying h3 {
    font-size: 1.5rem;
  }
}

.category-page-stress-free-saving .tip-item-stress-free-saving p,
.category-page-stress-free-saving .tip-item-stress-free-saying p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .tip-item-stress-free-saving p,
  .category-page-stress-free-saving .tip-item-stress-free-saying p {
    font-size: 0.95rem;
  }
}

/* Additional Section 2: Facts */
.category-page-stress-free-saving .additional-section-2-stress-free-saving {
  background-color: var(--color-bg-medium);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .additional-section-2-stress-free-saving {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-stress-free-saving .additional-section-2-stress-free-saving {
    padding: 6rem 0;
  }
}

.category-page-stress-free-saving .additional-content-2-stress-free-saving h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 2rem;
  text-align: center;
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .additional-content-2-stress-free-saving h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

.category-page-stress-free-saving .facts-list-stress-free-saving {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-page-stress-free-saving .fact-item-stress-free-saving {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .fact-item-stress-free-saving {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
  }
}

.category-page-stress-free-saving .fact-number-stress-free-saving {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .fact-number-stress-free-saving {
    font-size: 3rem;
  }
}

.category-page-stress-free-saving .fact-text-stress-free-saving h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .fact-text-stress-free-saving h3 {
    font-size: 1.5rem;
  }
}

.category-page-stress-free-saving .fact-text-stress-free-saving p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .category-page-stress-free-saving .fact-text-stress-free-saving p {
    font-size: 0.95rem;
  }
}

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

    .post-budget-rule-50-30-20 {
      background-color: var(--color-bg-light);
    }

    /* Breadcrumbs */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-breadcrumbs {
      background-color: var(--color-bg-light-secondary);
      padding: 1rem 0;
      overflow: hidden;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-breadcrumbs .container {
      font-size: 0.875rem;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-breadcrumbs a {
      color: var(--color-primary);
      transition: color var(--transition-base);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-breadcrumbs span {
      color: var(--color-text-muted);
    }

    /* Hero Section */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero {
      background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-light) 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero {
        padding: 6rem 0;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero-content {
        gap: 2rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero h1 {
      color: var(--color-text-dark);
      font-size: 2.25rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-lead {
      color: var(--color-text-dark);
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-lead {
        font-size: 1.125rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Content Sections */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-section {
      overflow: hidden;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-section {
        padding: 5rem 0;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 {
      background-color: var(--color-bg-light);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 {
      background-color: var(--color-bg-light-secondary);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 {
      background-color: var(--color-bg-light);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 {
      background-color: var(--color-primary-light);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 {
      background-color: var(--color-bg-light);
    }

    /* Section Content Wrapper */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1-content,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2-content,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3-content,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4-content,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1-content,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2-content,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3-content,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4-content,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5-content {
        gap: 2rem;
      }
    }

    /* Typography in Content */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 h2,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 h2,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 h2,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 h2,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 h2 {
        font-size: 2.25rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 h2,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 h2,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 h2 {
        font-size: 2.25rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 p,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 p,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 p,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 p,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 p {
        font-size: 1rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 p,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 p,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 p {
        font-size: 1rem;
      }
    }

    /* Lists */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 ul,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 ul,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 ul,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 ul,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 ul {
      margin-left: 1.5rem;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 li,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 li,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 li,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 li,
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 li {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-1 li,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-2 li,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-3 li,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-4 li,
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-content-5 li {
        font-size: 1rem;
      }
    }

    /* Highlight Box */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-highlight-box {
      background-color: var(--color-bg-light);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-highlight-box {
        padding: 2rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-highlight-box h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-highlight-box p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-highlight-box p {
        font-size: 1rem;
      }
    }

    /* Rule Components */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card {
      background-color: var(--color-bg-light);
      border: 2px solid var(--color-primary);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card {
        padding: 2rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card .budget-rule-50-30-20-percentage {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-primary);
      font-family: var(--font-display);
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card .budget-rule-50-30-20-percentage {
        font-size: 3rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
    }

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

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-rule-card p {
        font-size: 0.95rem;
      }
    }

    /* Two Column Layout */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-two-col {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-two-col img {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      object-fit: cover;
      height: 300px;
      width: 100%;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-two-col img {
        height: 350px;
      }
    }

    /* Steps Section */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-steps {
        gap: 2rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-step {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      padding: 1.5rem;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-step {
        gap: 2rem;
        padding: 2rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-step-number {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      color: var(--color-text-dark);
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 1.25rem;
      font-family: var(--font-display);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-step-content h4 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-step-content h4 {
        font-size: 1.25rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-step-content p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-step-content p {
        font-size: 0.95rem;
      }
    }

    /* Related Posts Section */
    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related {
      background-color: var(--color-bg-light-secondary);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-related {
        padding: 5rem 0;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-related h2 {
        font-size: 2.25rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

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

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card {
      background-color: var(--color-bg-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      transition: all var(--transition-base);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card-content {
        padding: 1.5rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-card p {
      color: var(--color-text-muted);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      transition: color var(--transition-base);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-budget-rule-50-30-20 .budget-rule-50-30-20-related-link:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

/* Post Page 2 Styles */
.post-automate-savings-five-minutes {
  background-color: var(--color-bg-light);
}

/* Breadcrumbs */
.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumbs {
  background-color: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-link {
  color: var(--color-primary);
  font-size: var(--font-size-small);
  transition: color var(--transition-base);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-link:hover {
  color: var(--color-primary-dark);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--font-size-small);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-current {
  color: var(--color-text-dark);
  font-size: var(--font-size-small);
  font-weight: 600;
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumbs {
    padding: 0.75rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-link,
  .post-automate-savings-five-minutes .automate-savings-five-minutes-breadcrumb-current {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-hero-title {
  font-size: 3.75rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-hero-lead {
  font-size: 1.25rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 700px;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #bdc3c7;
  font-size: 0.875rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-read-time,
.post-automate-savings-five-minutes .automate-savings-five-minutes-updated-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-meta-divider {
  color: #555555;
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-hero {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-hero-title {
    font-size: 2.25rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-hero-lead {
    font-size: 1rem;
  }
}

/* Intro Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-intro {
  background-color: var(--color-bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-intro-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-intro-paragraph {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro-heading {
    font-size: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro-paragraph {
    font-size: 0.875rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-intro-image {
    height: 250px;
  }
}

/* Setup Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-setup {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-setup-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-step-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-step-description {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-setup {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-setup-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-step {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-step-title {
    font-size: 1.125rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-step-description {
    font-size: 0.875rem;
  }
}

/* Benefits Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-benefits {
  background-color: var(--color-bg-light-secondary);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefits-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-card {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-icon {
  color: var(--color-primary);
  margin: 0 auto;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-description {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-tip-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fffaf0 100%);
  border-left: 4px solid var(--color-warning);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-tip-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-tip-text i {
  color: var(--color-warning);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-benefits {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-benefits-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-benefit-card {
    padding: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-tip-box {
    padding: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-tip-text {
    font-size: 0.875rem;
  }
}

/* Mistakes Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-mistakes {
  background-color: var(--color-bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistakes-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistakes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-item {
  background-color: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-danger);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-title i {
  color: var(--color-danger);
  flex-shrink: 0;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-text {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-mistakes {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-mistakes-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-item {
    padding: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-title {
    font-size: 1rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-mistake-text {
    font-size: 0.875rem;
  }
}

/* Psychology Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-psychology {
  background: linear-gradient(135deg, #f0e6ff 0%, #ede0ff 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-paragraph {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-heading {
    font-size: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-paragraph {
    font-size: 0.875rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-psychology-image {
    height: 250px;
  }
}

/* Advanced Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced {
  background-color: var(--color-bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box {
  background: linear-gradient(135deg, #e6f7ff 0%, #e0f7ff 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box-text {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box {
    padding: 1.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box-title {
    font-size: 1.125rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-advanced-box-text {
    font-size: 0.875rem;
  }
}

/* Conclusion Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion {
  background: linear-gradient(135deg, #e6f9f0 0%, #d9f8f1 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-paragraph {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-checklist {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-dark);
  font-size: 1rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-checklist-item i {
  color: var(--color-success);
  flex-shrink: 0;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-final {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-heading {
    font-size: 1.75rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-paragraph,
  .post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-final {
    font-size: 0.875rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-conclusion-checklist {
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-checklist-item {
    font-size: 0.875rem;
  }
}

/* Related Posts Section */
.post-automate-savings-five-minutes .automate-savings-five-minutes-related {
  background-color: var(--color-bg-light-secondary);
  padding: 6rem 0;
  overflow: hidden;
  border-top: 2px solid var(--color-border);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-heading {
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  padding: 1.5rem 1.5rem 0.75rem;
  line-height: 1.3;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.75rem 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-link {
  color: var(--color-primary);
  font-weight: 600;
  padding: 1rem 1.5rem;
  display: inline-block;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-link:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 1024px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .post-automate-savings-five-minutes .automate-savings-five-minutes-related {
    padding: 3rem 0;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-grid {
    grid-template-columns: 1fr;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-image {
    height: 150px;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-title {
    font-size: 1.125rem;
    padding: 1rem 1rem 0.5rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-description {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .post-automate-savings-five-minutes .automate-savings-five-minutes-related-card-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

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

    /* Breadcrumbs */
    .post-envelope-budgeting-method .envelope-budgeting-method-breadcrumbs {
      background-color: var(--color-bg-light-secondary);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color var(--transition-base);
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-breadcrumbs span {
      color: var(--color-text-muted);
      font-size: 0.875rem;
    }

    /* Hero Section */
    .post-envelope-budgeting-method .envelope-budgeting-method-hero {
      background-color: var(--color-bg-dark);
      color: var(--color-text-light);
      padding: 4rem 0 3rem;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-hero {
        padding: 6rem 0 5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-hero {
        padding: 8rem 0 6rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background-color: rgba(46, 204, 113, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-hero h1 {
      font-size: 2.25rem;
      color: var(--color-text-light);
      margin-bottom: 1rem;
      line-height: var(--line-height-tight);
      letter-spacing: -0.5px;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-lead {
      font-size: 1rem;
      line-height: var(--line-height-relaxed);
      color: var(--color-text-light-muted);
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-lead {
        font-size: 1.125rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      font-size: 0.875rem;
      color: var(--color-text-light-muted);
    }

    /* Content Sections */
    .post-envelope-budgeting-method .envelope-budgeting-method-content-section {
      overflow: hidden;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1 {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1 {
        padding: 6rem 0;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1-content {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1-text {
      flex: 1;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1-image {
      flex: 1;
      min-width: 0;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1 h2 {
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1 h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1 h2 {
        font-size: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-1 p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-1 img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    /* Section 2 - Light Background */
    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 {
      background-color: var(--color-bg-light-secondary);
      color: var(--color-text-dark);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 {
        padding: 6rem 0;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 h2 {
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 h2 {
        font-size: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 h3 {
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 li {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      padding-left: 2rem;
      position: relative;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-2 li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-2 li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
      font-size: 1.25rem;
    }

    /* Section 3 - Accent Background */
    .post-envelope-budgeting-method .envelope-budgeting-method-section-3 {
      background-color: var(--color-primary-light);
      color: var(--color-text-dark);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3 {
        padding: 6rem 0;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-3-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3-content {
        gap: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-3 h2 {
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin-bottom: 1.5rem;
      grid-column: 1 / -1;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3 h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-3 h2 {
        font-size: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-step-card {
      background-color: var(--color-bg-light);
      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: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-step-card {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-step-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-primary);
      font-family: var(--font-display);
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-step-card h3 {
      font-size: 1.25rem;
      color: var(--color-text-dark);
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-step-card h3 {
        font-size: 1.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-step-card p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
    }

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

    /* Section 4 - White Background */
    .post-envelope-budgeting-method .envelope-budgeting-method-section-4 {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-4 {
        padding: 6rem 0;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-4 h2 {
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-4 h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-4 h2 {
        font-size: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-section-4 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-section-4 p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-tip-box {
      background-color: rgba(46, 204, 113, 0.1);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-tip-box {
        padding: 2rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-tip-box h3 {
      color: var(--color-primary-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-tip-box h3 {
        font-size: 1.25rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-tip-box p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-tip-box p {
        font-size: 1rem;
      }
    }

    /* Related Posts Section */
    .post-envelope-budgeting-method .envelope-budgeting-method-related {
      background-color: var(--color-bg-light-secondary);
      color: var(--color-text-dark);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related {
        padding: 6rem 0;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related h2 {
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related h2 {
        font-size: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

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

    @media (min-width: 1024px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card {
      background-color: var(--color-bg-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform var(--transition-base), box-shadow var(--transition-base);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-image {
      width: 100%;
      height: 200px;
      background-color: var(--color-bg-medium);
      overflow: hidden;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related-card-body {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card h3 {
      font-size: 1.125rem;
      color: var(--color-text-dark);
      margin: 0;
      line-height: var(--line-height-tight);
    }

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

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card p {
      color: var(--color-text-muted);
      font-size: 0.875rem;
      line-height: var(--line-height-relaxed);
      margin: 0;
      flex: 1;
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related-card p {
        font-size: 0.95rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: color var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-envelope-budgeting-method .envelope-budgeting-method-related-card-link {
        font-size: 1rem;
      }
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-link:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-link::after {
      content: '→';
      transition: transform var(--transition-base);
    }

    .post-envelope-budgeting-method .envelope-budgeting-method-related-card-link:hover::after {
      transform: translateX(4px);
    }

/* Post Page 4 Styles */
/* Financial Goals Without Pressure - Complete CSS Isolation */

.post-financial-goals-without-pressure {
  width: 100%;
}

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

.financial-goals-without-pressure-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.financial-goals-without-pressure-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.financial-goals-without-pressure-breadcrumb-link {
  color: var(--color-accent);
  font-size: var(--font-size-small);
  font-weight: 500;
  transition: color var(--transition-base);
}

.financial-goals-without-pressure-breadcrumb-link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.financial-goals-without-pressure-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--font-size-small);
}

.financial-goals-without-pressure-breadcrumb-current {
  color: var(--color-text-dark);
  font-size: var(--font-size-small);
  font-weight: 600;
}

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

.financial-goals-without-pressure-hero {
  background-color: #f0f8f4;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.financial-goals-without-pressure-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.financial-goals-without-pressure-hero-title {
  color: #1a1a1a;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-hero-title {
    font-size: 3.5rem;
  }
}

.financial-goals-without-pressure-hero-lead {
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 800px;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-hero-lead {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.financial-goals-without-pressure-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-small);
}

.financial-goals-without-pressure-meta-item i {
  color: var(--color-primary);
  font-size: var(--icon-md);
}

/* ============================================
   INTRO SECTION
   ============================================ */

.financial-goals-without-pressure-intro {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-intro {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-intro-content {
    gap: 4rem;
  }
}

.financial-goals-without-pressure-intro-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro-image {
    height: 400px;
    order: 2;
  }
}

.financial-goals-without-pressure-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 1;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro-text {
    gap: 1.5rem;
    order: 1;
  }
}

.financial-goals-without-pressure-intro-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-intro-paragraph {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-intro-paragraph {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ============================================
   METHOD SECTION
   ============================================ */

.financial-goals-without-pressure-method {
  background-color: #fafafa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-method {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-method {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-method-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-method-content {
    gap: 3rem;
  }
}

.financial-goals-without-pressure-method-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-method-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-method-intro {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-method-intro {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-smart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.financial-goals-without-pressure-smart-card {
  background-color: var(--color-bg-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

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

.financial-goals-without-pressure-smart-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.financial-goals-without-pressure-smart-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: var(--icon-lg);
}

.financial-goals-without-pressure-smart-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-smart-title {
    font-size: 1.25rem;
  }
}

.financial-goals-without-pressure-smart-text {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-smart-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

/* ============================================
   PERSONAL SECTION
   ============================================ */

.financial-goals-without-pressure-personal {
  background: linear-gradient(135deg, #f0f8f4 0%, #f5f7f6 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-personal {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-personal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-personal-content {
    gap: 4rem;
  }
}

.financial-goals-without-pressure-personal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal-image {
    height: 400px;
  }
}

.financial-goals-without-pressure-personal-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal-text {
    gap: 1.5rem;
  }
}

.financial-goals-without-pressure-personal-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-personal-paragraph {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-personal-paragraph {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-profiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-profiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.financial-goals-without-pressure-profile-item {
  background-color: var(--color-bg-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-profile-item {
    padding: 1.5rem;
  }
}

.financial-goals-without-pressure-profile-name {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.financial-goals-without-pressure-profile-desc {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   FRAMEWORK SECTION
   ============================================ */

.financial-goals-without-pressure-framework {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-framework {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-framework {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-framework-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-framework-content {
    gap: 3rem;
  }
}

.financial-goals-without-pressure-framework-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-framework-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-framework-intro {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-framework-intro {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-levels {
    gap: 2rem;
  }
}

.financial-goals-without-pressure-level {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-level {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.financial-goals-without-pressure-level-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.financial-goals-without-pressure-level-title {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-level-title {
    font-size: 1.375rem;
  }
}

.financial-goals-without-pressure-level-badge {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-tiny);
  font-weight: 600;
  white-space: nowrap;
}

.financial-goals-without-pressure-level-text {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-level-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-level-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-level-list {
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-level-list li {
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
}

.financial-goals-without-pressure-level-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1rem;
}

.financial-goals-without-pressure-pyramid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.financial-goals-without-pressure-pyramid-box {
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-pyramid-box {
    padding: 1.25rem;
    font-size: 0.9375rem;
  }
}

.financial-goals-without-pressure-pyramid-long {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.financial-goals-without-pressure-pyramid-medium {
  background-color: var(--color-accent);
  width: 80%;
  margin: 0 auto;
}

.financial-goals-without-pressure-pyramid-short {
  background-color: var(--color-primary);
  width: 50%;
  margin: 0 auto;
}

.financial-goals-without-pressure-pyramid-label {
  margin: 0;
}

/* ============================================
   ACTION SECTION
   ============================================ */

.financial-goals-without-pressure-action {
  background-color: #f5f7f6;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-action {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-action {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-action-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-action-content {
    gap: 3rem;
  }
}

.financial-goals-without-pressure-action-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-action-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-action-intro {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-action-intro {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-steps {
    gap: 2rem;
  }
}

.financial-goals-without-pressure-step {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  padding-left: 4rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-step {
    padding: 2rem;
    padding-left: 4.5rem;
    gap: 1rem;
  }
}

.financial-goals-without-pressure-step-number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-left: 1.5rem;
}

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

.financial-goals-without-pressure-step-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-step-title {
    font-size: 1.25rem;
  }
}

.financial-goals-without-pressure-step-text {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-step-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-tip-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-tip-box {
    padding: 2rem;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.financial-goals-without-pressure-tip-icon {
  color: var(--color-primary);
  font-size: var(--icon-lg);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.financial-goals-without-pressure-tip-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.financial-goals-without-pressure-tip-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.financial-goals-without-pressure-tip-content {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-tip-content {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

/* ============================================
   COMMON MISTAKES SECTION
   ============================================ */

.financial-goals-without-pressure-common {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-common {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-common {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-common-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-common-content {
    gap: 3rem;
  }
}

.financial-goals-without-pressure-common-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-common-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-common-intro {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-common-intro {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-mistakes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .financial-goals-without-pressure-mistakes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.financial-goals-without-pressure-mistake {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-mistake {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.financial-goals-without-pressure-mistake-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.financial-goals-without-pressure-mistake-header i {
  color: #e74c3c;
  font-size: var(--icon-lg);
  flex-shrink: 0;
}

.financial-goals-without-pressure-mistake-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.financial-goals-without-pressure-mistake-text {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-mistake-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-mistake-text strong {
  color: #1a1a1a;
}

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

.financial-goals-without-pressure-conclusion {
  background-color: #f0f8f4;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-conclusion {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-conclusion-content {
    gap: 2.5rem;
  }
}

.financial-goals-without-pressure-conclusion-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-conclusion-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-conclusion-text {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-conclusion-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-summary {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-summary {
    padding: 2rem;
  }
}

.financial-goals-without-pressure-summary-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.financial-goals-without-pressure-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-summary-list {
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-summary-list li {
  margin: 0;
  padding-left: 1.5rem;
  position: relative;
}

.financial-goals-without-pressure-summary-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.financial-goals-without-pressure-conclusion-final {
  color: #444444;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  padding: 1rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-conclusion-final {
    font-size: 1rem;
    line-height: 1.8;
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.financial-goals-without-pressure-related {
  background-color: #fafafa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .financial-goals-without-pressure-related {
    padding: 6rem 0;
  }
}

.financial-goals-without-pressure-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-content {
    gap: 3rem;
  }
}

.financial-goals-without-pressure-related-heading {
  color: #1a1a1a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-heading {
    font-size: 2.25rem;
  }
}

.financial-goals-without-pressure-related-description {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-description {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.financial-goals-without-pressure-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.financial-goals-without-pressure-related-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.financial-goals-without-pressure-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.financial-goals-without-pressure-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.financial-goals-without-pressure-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-card-body {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.financial-goals-without-pressure-related-card-title {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-card-title {
    font-size: 1.25rem;
  }
}

.financial-goals-without-pressure-related-card-description {
  color: #555555;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-card-description {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

.financial-goals-without-pressure-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .financial-goals-without-pressure-related-link {
    font-size: 0.9375rem;
  }
}

.financial-goals-without-pressure-related-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.financial-goals-without-pressure-related-link::after {
  content: "→";
}

/* Post Page 5 Styles */
/* Financial Wellness Daily Habits Post - Complete Isolation */

.post-financial-wellness-daily-habits {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

/* Breadcrumbs */
.financial-wellness-daily-habits-breadcrumbs {
  background-color: var(--color-bg-light-secondary);
  padding: var(--spacing-sm) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.financial-wellness-daily-habits-breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: var(--font-size-small);
}

.financial-wellness-daily-habits-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.financial-wellness-daily-habits-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.financial-wellness-daily-habits-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 var(--spacing-xs);
}

.financial-wellness-daily-habits-breadcrumbs span:last-child {
  color: var(--color-text-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-breadcrumbs .container {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .financial-wellness-daily-habits-breadcrumb-separator {
    margin: 0 0.25rem;
  }
}

/* Hero Section */
.financial-wellness-daily-habits-hero {
  background-color: var(--color-bg-light);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  border-bottom: 2px solid var(--color-primary-light);
}

.financial-wellness-daily-habits-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.financial-wellness-daily-habits-hero h1 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-lead {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: var(--line-height-relaxed);
  max-width: 700px;
}

.financial-wellness-daily-habits-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
}

.financial-wellness-daily-habits-meta span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-hero {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-hero h1 {
    font-size: 2.25rem;
  }

  .financial-wellness-daily-habits-lead {
    font-size: 1rem;
  }
}

/* Content Section 1 */
.financial-wellness-daily-habits-content-1 {
  background-color: var(--color-bg-light);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.financial-wellness-daily-habits-content-1-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.financial-wellness-daily-habits-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 800px;
}

.financial-wellness-daily-habits-content-1 h2 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-content-1 p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-content-1 {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-content-1 h2 {
    font-size: 1.875rem;
  }

  .financial-wellness-daily-habits-content-1 p {
    font-size: 0.875rem;
  }
}

/* Content Section 2 */
.financial-wellness-daily-habits-content-2 {
  background-color: var(--color-bg-light-secondary);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.financial-wellness-daily-habits-content-2-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.financial-wellness-daily-habits-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.financial-wellness-daily-habits-content-2 h2 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-content-2 p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

.financial-wellness-daily-habits-habit-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.financial-wellness-daily-habits-habit-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.financial-wellness-daily-habits-habit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.financial-wellness-daily-habits-habit-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.financial-wellness-daily-habits-habit-text h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-habit-text p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.financial-wellness-daily-habits-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.financial-wellness-daily-habits-image-block img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 1024px) {
  .financial-wellness-daily-habits-grid-2 {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-content-2 {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-content-2 h2 {
    font-size: 1.875rem;
  }

  .financial-wellness-daily-habits-habit-item {
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .financial-wellness-daily-habits-habit-number {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }

  .financial-wellness-daily-habits-habit-text h3 {
    font-size: 1rem;
  }

  .financial-wellness-daily-habits-habit-text p {
    font-size: 0.875rem;
  }

  .financial-wellness-daily-habits-image-block img {
    max-width: 100%;
  }
}

/* Content Section 3 */
.financial-wellness-daily-habits-content-3 {
  background-color: var(--color-bg-light);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.financial-wellness-daily-habits-content-3-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.financial-wellness-daily-habits-content-3 h2 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-content-3 > div > p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
}

.financial-wellness-daily-habits-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  padding-left: var(--spacing-lg);
  border-left: 3px solid var(--color-primary);
}

.financial-wellness-daily-habits-timeline-item {
  display: flex;
  gap: var(--spacing-md);
  position: relative;
}

.financial-wellness-daily-habits-timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border-radius: 50%;
  font-size: 1.25rem;
  position: absolute;
  left: -70px;
  top: 0;
  flex-shrink: 0;
}

.financial-wellness-daily-habits-timeline-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-md);
}

.financial-wellness-daily-habits-timeline-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-timeline-content p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.financial-wellness-daily-habits-tip-box {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-lg);
}

.financial-wellness-daily-habits-tip-box i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.financial-wellness-daily-habits-tip-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.financial-wellness-daily-habits-tip-content h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
  margin: 0;
}

.financial-wellness-daily-habits-tip-content p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-content-3 {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-content-3 h2 {
    font-size: 1.875rem;
  }

  .financial-wellness-daily-habits-timeline {
    padding-left: var(--spacing-md);
    gap: var(--spacing-md);
  }

  .financial-wellness-daily-habits-timeline-marker {
    width: 40px;
    height: 40px;
    left: -62px;
    font-size: 1.125rem;
  }

  .financial-wellness-daily-habits-timeline-content h3 {
    font-size: 1.125rem;
  }

  .financial-wellness-daily-habits-timeline-content p {
    font-size: 0.875rem;
  }

  .financial-wellness-daily-habits-tip-box {
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    flex-direction: column;
  }

  .financial-wellness-daily-habits-tip-box i {
    font-size: var(--icon-md);
  }

  .financial-wellness-daily-habits-tip-content h3 {
    font-size: 1rem;
  }
}

/* Content Section 4 */
.financial-wellness-daily-habits-content-4 {
  background-color: var(--color-bg-light-secondary);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.financial-wellness-daily-habits-content-4-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 900px;
}

.financial-wellness-daily-habits-content-4 h2 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-content-4 p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

.financial-wellness-daily-habits-cta-box {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-top: var(--spacing-lg);
}

.financial-wellness-daily-habits-cta-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: var(--line-height-tight);
  margin: 0;
}

.financial-wellness-daily-habits-cta-box p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-content-4 {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-content-4 h2 {
    font-size: 1.875rem;
  }

  .financial-wellness-daily-habits-content-4 p {
    font-size: 0.875rem;
  }

  .financial-wellness-daily-habits-cta-box {
    padding: var(--spacing-lg);
  }

  .financial-wellness-daily-habits-cta-box h3 {
    font-size: 1.125rem;
  }

  .financial-wellness-daily-habits-cta-box p {
    font-size: 0.9375rem;
  }
}

/* Related Posts Section */
.financial-wellness-daily-habits-related {
  background-color: var(--color-bg-light);
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
  border-top: 2px solid var(--color-border);
}

.financial-wellness-daily-habits-related-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.financial-wellness-daily-habits-related h2 {
  color: var(--color-text-dark);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
}

.financial-wellness-daily-habits-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.financial-wellness-daily-habits-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
}

.financial-wellness-daily-habits-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.financial-wellness-daily-habits-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-medium);
}

.financial-wellness-daily-habits-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.financial-wellness-daily-habits-related-card:hover .financial-wellness-daily-habits-card-image img {
  transform: scale(1.05);
}

.financial-wellness-daily-habits-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
}

.financial-wellness-daily-habits-card-body h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: var(--line-height-tight);
  margin: 0;
}

.financial-wellness-daily-habits-card-body p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.financial-wellness-daily-habits-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition-base);
}

.financial-wellness-daily-habits-card-link:hover {
  color: var(--color-primary-dark);
}

.financial-wellness-daily-habits-card-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.financial-wellness-daily-habits-related-card:hover .financial-wellness-daily-habits-card-link i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .financial-wellness-daily-habits-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .financial-wellness-daily-habits-related {
    padding: var(--spacing-2xl) 0;
  }

  .financial-wellness-daily-habits-related h2 {
    font-size: 1.875rem;
  }

  .financial-wellness-daily-habits-related-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .financial-wellness-daily-habits-card-image {
    height: 180px;
  }

  .financial-wellness-daily-habits-card-body {
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .financial-wellness-daily-habits-card-body h3 {
    font-size: 1.125rem;
  }

  .financial-wellness-daily-habits-card-body p {
    font-size: 0.875rem;
  }

  .financial-wellness-daily-habits-card-link {
    font-size: 0.875rem;
  }
}

/* Privacy Page Styles */
.info-portal {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  overflow: hidden;
}

.info-portal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.info-portal-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* Hero Section */
.info-portal .hero-section {
  background-color: var(--color-bg-light-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.info-portal .hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  text-align: center;
}

.info-portal h1 {
  font-size: 2rem;
  line-height: var(--line-height-tight);
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .info-portal h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .info-portal h1 {
    font-size: 3rem;
  }
}

.info-portal .updated-date {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* Content Section */
.info-portal .content-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .info-portal .content-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .info-portal .content-section {
    padding: 5rem 0;
  }
}

.info-portal .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.info-portal h2 {
  font-size: 1.75rem;
  line-height: var(--line-height-tight);
  color: var(--color-text-dark);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary-light);
  padding-bottom: var(--spacing-sm);
}

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

@media (min-width: 1024px) {
  .info-portal h2 {
    font-size: 2.25rem;
  }
}

.info-portal p {
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-dark);
  margin: 0 0 var(--spacing-md) 0;
}

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

.info-portal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.info-portal li {
  font-size: 0.875rem;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-dark);
  padding-left: 1.5rem;
  position: relative;
}

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

.info-portal li::before {
  content: "•";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

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

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

.info-portal .contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.info-portal .contact-item {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

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

.info-portal .contact-label {
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 var(--spacing-xs) 0;
}

.info-portal .contact-value {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .info-portal .contact-value {
    font-size: 1.1rem;
  }
}

.info-portal .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-right: var(--spacing-sm);
  vertical-align: middle;
}

.info-portal .icon-wrapper i {
  color: var(--color-primary-dark);
  font-size: var(--icon-md);
}

/* Footer Info */
.info-portal .footer-info {
  background-color: var(--color-bg-light-secondary);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.info-portal .footer-info p {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* Responsive Container */
@media (min-width: 768px) {
  .info-portal .contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
  }
}

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

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

  :root {
    --color-primary: #2ecc71;
    --color-primary-dark: #27ae60;
    --color-primary-light: #d5f4e6;
    --color-accent: #3498db;
    --color-accent-dark: #2980b9;
    --color-bg-dark: #0f1419;
    --color-bg-light: #ffffff;
    --color-bg-light-secondary: #f8f9fa;
    --color-bg-medium: #ecf0f1;
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-text-muted: #7f8c8d;
    --color-text-light-muted: #bdc3c7;
    --color-border: #e0e0e0;
    --color-border-dark: #34495e;
    --color-success: #2ecc71;
    --color-warning: #f39c12;
    --color-danger: #e74c3c;
    --color-info: #3498db;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-size-h1: 3.75rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.25rem;
    --font-size-h4: 1.875rem;
    --font-size-h5: 1.5rem;
    --font-size-h6: 1.25rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --font-size-tiny: 0.75rem;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.8;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --icon-sm: 1.25rem;
    --icon-md: 1.75rem;
    --icon-lg: 2.5rem;
    --icon-xl: 3.5rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }

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

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

  /* Hero Section */
  .thank-hero-section {
    background-color: var(--color-primary);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: var(--spacing-4xl) 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(--spacing-lg);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: scaleIn 0.6s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      width: 120px;
      height: 120px;
    }
  }

  .thank-icon i {
    font-size: 2.5rem;
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .thank-icon i {
      font-size: 3.5rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: var(--line-height-tight);
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 4rem;
    }
  }

  .thank-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
  }

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

  .thank-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .thank-subtitle {
      font-size: 1.125rem;
    }
  }

  /* Content Section */
  .thank-content-section {
    background-color: var(--color-bg-light);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-content-section {
      padding: var(--spacing-4xl) 0;
    }
  }

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

  .thank-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
  }

  @media (min-width: 768px) {
    .thank-content-wrapper {
      gap: var(--spacing-4xl);
    }
  }

  /* Steps Section */
  .thank-steps h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-steps h2 {
      font-size: 2.5rem;
    }
  }

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

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-xl);
    }
  }

  .step-card {
    background-color: var(--color-bg-light-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  @media (min-width: 768px) {
    .step-card {
      padding: var(--spacing-xl);
      gap: var(--spacing-lg);
    }
  }

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

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

  .step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
  }

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

  .step-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
  }

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

  /* Benefits Section */
  .thank-benefits h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-benefits h2 {
      font-size: 2.5rem;
    }
  }

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

  .benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .benefits-list {
      gap: var(--spacing-xl);
    }
  }

  .benefits-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-bg-light-secondary);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base);
  }

  @media (min-width: 768px) {
    .benefits-list li {
      padding: var(--spacing-lg);
      gap: var(--spacing-lg);
    }
  }

  .benefits-list li:hover {
    background-color: var(--color-primary-light);
  }

  .benefits-list i {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  @media (min-width: 768px) {
    .benefits-list i {
      font-size: 1.75rem;
    }
  }

  .benefits-list span {
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: var(--line-height-normal);
  }

  @media (min-width: 768px) {
    .benefits-list span {
      font-size: 1.0625rem;
    }
  }

  /* CTA Section */
  .thank-cta {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .thank-cta {
      padding: var(--spacing-3xl);
    }
  }

  .thank-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .thank-cta h3 {
      font-size: 1.875rem;
    }
  }

  .thank-cta p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-normal);
  }

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

  /* Inspiration Section */
  .thank-inspiration-section {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-inspiration-section {
      padding: var(--spacing-4xl) 0;
    }
  }

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

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

  .inspiration-quote {
    text-align: center;
    max-width: 700px;
  }

  .inspiration-quote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .inspiration-quote p {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .inspiration-quote p {
      font-size: 2.25rem;
    }
  }

  .inspiration-quote footer {
    color: var(--color-text-light-muted);
    font-size: 1rem;
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .inspiration-quote footer {
      font-size: 1.0625rem;
    }
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    gap: var(--spacing-xs);
  }

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

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

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

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

  /* Animations */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Page wrapper */
  .thank-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

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

  :root {
    --color-primary: #2ecc71;
    --color-primary-dark: #27ae60;
    --color-primary-light: #d5f4e6;
    --color-accent: #3498db;
    --color-accent-dark: #2980b9;
    --color-bg-dark: #0f1419;
    --color-bg-light: #ffffff;
    --color-bg-light-secondary: #f8f9fa;
    --color-bg-medium: #ecf0f1;
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-text-muted: #7f8c8d;
    --color-text-light-muted: #bdc3c7;
    --color-border: #e0e0e0;
    --color-border-dark: #34495e;
    --color-success: #2ecc71;
    --color-warning: #f39c12;
    --color-danger: #e74c3c;
    --color-info: #3498db;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-size-h1: 3.75rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.25rem;
    --font-size-h4: 1.875rem;
    --font-size-h5: 1.5rem;
    --font-size-h6: 1.25rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --font-size-tiny: 0.75rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.8;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --icon-sm: 1.25rem;
    --icon-md: 1.75rem;
    --icon-lg: 2.5rem;
    --icon-xl: 3.5rem;
  }

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

  body {
    font-family: var(--font-primary);
    line-height: var(--line-height-normal);
  }

  .main {
    min-height: 100vh;
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  /* Error Hero Section */
  .error-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2634 100%);
    padding: 3rem var(--spacing-md);
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-hero {
      padding: 5rem var(--spacing-md);
    }
  }

  @media (min-width: 1024px) {
    .error-hero {
      padding: 6rem var(--spacing-md);
    }
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    text-align: center;
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      text-align: left;
      align-items: center;
      gap: var(--spacing-3xl);
    }
  }

  /* Illustration */
  .error-illustration {
    flex: 0 0 auto;
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 280px;
      height: 320px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 350px;
      height: 400px;
      margin: 0;
    }
  }

  /* Piggy Bank */
  .piggy-bank {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .bank-body {
    position: absolute;
    width: 120px;
    height: 90px;
    background-color: var(--color-primary);
    border-radius: 50% 50% 45% 45%;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg), inset -2px -4px 8px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 768px) {
    .bank-body {
      width: 160px;
      height: 120px;
      top: 100px;
    }
  }

  @media (min-width: 1024px) {
    .bank-body {
      width: 200px;
      height: 150px;
      top: 120px;
    }
  }

  .bank-snout {
    position: absolute;
    width: 45px;
    height: 35px;
    background-color: var(--color-primary);
    border-radius: 50%;
    top: 130px;
    left: 35px;
    box-shadow: inset -1px -2px 4px rgba(0, 0, 0, 0.15);
  }

  @media (min-width: 768px) {
    .bank-snout {
      width: 60px;
      height: 50px;
      top: 155px;
      left: 40px;
    }
  }

  @media (min-width: 1024px) {
    .bank-snout {
      width: 75px;
      height: 60px;
      top: 185px;
      left: 50px;
    }
  }

  .bank-snout::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    top: 12px;
    right: 8px;
  }

  @media (min-width: 768px) {
    .bank-snout::after {
      width: 12px;
      height: 12px;
      top: 18px;
      right: 12px;
    }
  }

  @media (min-width: 1024px) {
    .bank-snout::after {
      width: 15px;
      height: 15px;
      top: 22px;
      right: 15px;
    }
  }

  .bank-ear {
    position: absolute;
    width: 30px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50% 50% 40% 40%;
    top: 60px;
    right: 45px;
    transform: rotate(-20deg);
    box-shadow: inset -1px -2px 4px rgba(0, 0, 0, 0.15);
  }

  @media (min-width: 768px) {
    .bank-ear {
      width: 40px;
      height: 70px;
      top: 70px;
      right: 55px;
    }
  }

  @media (min-width: 1024px) {
    .bank-ear {
      width: 50px;
      height: 85px;
      top: 80px;
      right: 70px;
    }
  }

  .bank-leg {
    position: absolute;
    background-color: var(--color-primary));
    bottom: 0;
    width: 20px;
    height: 40px;
    border-radius: 8px;
  }

  @media (min-width: 768px) {
    .bank-leg {
      width: 28px;
      height: 55px;
    }
  }

  @media (min-width: 1024px) {
    .bank-leg {
      width: 35px;
      height: 70px;
    }
  }

  .bank-leg-1 {
    left: 50px;
  }

  @media (min-width: 768px) {
    .bank-leg-1 {
      left: 65px;
    }
  }

  @media (min-width: 1024px) {
    .bank-leg-1 {
      left: 80px;
    }
  }

  .bank-leg-2 {
    left: 80px;
  }

  @media (min-width: 768px) {
    .bank-leg-2 {
      left: 110px;
    }
  }

  @media (min-width: 1024px) {
    .bank-leg-2 {
      left: 135px;
    }
  }

  .bank-leg-3 {
    right: 80px;
  }

  @media (min-width: 768px) {
    .bank-leg-3 {
      right: 110px;
    }
  }

  @media (min-width: 1024px) {
    .bank-leg-3 {
      right: 135px;
    }
  }

  .bank-leg-4 {
    right: 50px;
  }

  @media (min-width: 768px) {
    .bank-leg-4 {
      right: 65px;
    }
  }

  @media (min-width: 1024px) {
    .bank-leg-4 {
      right: 80px;
    }
  }

  .bank-tail {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--color-primary);
    border-radius: 50%;
    bottom: 30px;
    right: 5px;
    box-shadow: inset -1px -2px 4px rgba(0, 0, 0, 0.15);
  }

  @media (min-width: 768px) {
    .bank-tail {
      width: 35px;
      height: 35px;
      bottom: 40px;
      right: 0px;
    }
  }

  @media (min-width: 1024px) {
    .bank-tail {
      width: 45px;
      height: 45px;
      bottom: 50px;
      right: 0px;
    }
  }

  .bank-coin {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--color-warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--color-text-dark);
    font-weight: 700;
    box-shadow: inset -1px -2px 3px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 768px) {
    .bank-coin {
      width: 24px;
      height: 24px;
      font-size: 13px;
    }
  }

  @media (min-width: 1024px) {
    .bank-coin {
      width: 30px;
      height: 30px;
      font-size: 16px;
    }
  }

  .bank-coin-1 {
    top: 140px;
    left: 20px;
    animation: coinPulse 2s ease-in-out infinite;
  }

  .bank-coin-2 {
    top: 160px;
    right: 30px;
    animation: coinPulse 2.3s ease-in-out infinite;
  }

  .bank-coin-3 {
    bottom: 25px;
    right: 50px;
    animation: coinPulse 2.6s ease-in-out infinite;
  }

  /* Floating Coins */
  .floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .coin {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .coin {
      font-size: 32px;
    }
  }

  @media (min-width: 1024px) {
    .coin {
      font-size: 40px;
    }
  }

  .coin-1 {
    top: 20px;
    left: 10%;
    animation: float 4s ease-in-out infinite, rotation 8s linear infinite;
  }

  .coin-2 {
    top: 60px;
    right: 15%;
    animation: float 4.5s ease-in-out infinite 0.3s, rotation 8s linear infinite;
  }

  .coin-3 {
    bottom: 40px;
    left: 20%;
    animation: float 5s ease-in-out infinite 0.6s, rotation 8s linear infinite;
  }

  .coin-4 {
    bottom: 60px;
    right: 25%;
    animation: float 4.2s ease-in-out infinite 0.9s, rotation 8s linear infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @media (min-width: 768px) {
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-30px);
      }
    }
  }

  @keyframes coinPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }

  @keyframes rotation {
    0% {
      transform: rotateZ(0deg);
    }
    100% {
      transform: rotateZ(360deg);
    }
  }

  /* Error Content */
  .error-content {
    flex: 1;
  }

  .error-code {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
  }

  @media (min-width: 768px) {
    .error-code {
      font-size: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-code {
      font-size: 6rem;
    }
  }

  .error-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-light);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
  }

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

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

  .error-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.5rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  .error-description {
    font-size: 0.95rem;
    color: var(--color-text-light-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
  }

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

  /* Error Help Section */
  .error-help {
    background-color: var(--color-bg-light);
    padding: 3rem var(--spacing-md);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-help {
      padding: 5rem var(--spacing-md);
    }
  }

  @media (min-width: 1024px) {
    .error-help {
      padding: 6rem var(--spacing-md);
    }
  }

  .error-help-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  .help-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }

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

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

  /* Help Grid */
  .help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .help-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-xl);
    }
  }

  .help-card {
    background-color: var(--color-bg-light-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
  }

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

  @media (min-width: 1024px) {
    .help-card {
      padding: 2.5rem;
    }
  }

  .help-card:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-primary);
    box-shadow: 0 8px 16px rgba(46, 204, 113, 0.1);
    transform: translateY(-4px);
  }

  .help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(46, 204, 113, 0.1) 100%);
    border-radius: var(--radius-md);
    margin: 0 auto var(--spacing-md);
    font-size: var(--icon-lg);
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .help-icon {
      width: 70px;
      height: 70px;
      font-size: var(--icon-xl);
      margin-bottom: var(--spacing-lg);
    }
  }

  .help-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
  }

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

  .help-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
  }

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

  /* CTA Buttons */
  .error-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-cta {
      flex-direction: row;
      justify-content: center;
      gap: var(--spacing-lg);
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    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-text-dark);
    border-color: var(--color-primary);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.3);
  }

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

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

  /* Footer Message */
  .error-footer-message {
    background-color: var(--color-primary-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    text-align: center;
  }

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

  .error-footer-message p {
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    line-height: var(--line-height-relaxed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: 0;
  }

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

  .error-footer-message i {
    flex-shrink: 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .error-hero-content {
      padding: 0 var(--spacing-sm);
    }
  }