
    @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: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  
  /* Secondary Colors */
  --color-secondary: #10b981;
  --color-secondary-dark: #059669;
  --color-accent: #f59e0b;
  
  /* Backgrounds */
  --color-bg-light: #ffffff;
  --color-bg-light-gray: #f8f9fa;
  --color-bg-dark: #0f172a;
  --color-bg-darker: #0a0e27;
  
  /* Text Colors */
  --color-text-dark: #0f172a;
  --color-text-medium: #475569;
  --color-text-light: #ffffff;
  --color-text-light-gray: #e2e8f0;
  
  /* Utility Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-border: #e2e8f0;
  --color-border-dark: #334155;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  
  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* ===== RESET & BASE STYLES ===== */

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

html {
  scroll-behavior: smooth;
}

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

/* ===== CONTAINER ===== */

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

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

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

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

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

h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

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

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

h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

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

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

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

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

h5 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

small {
  font-size: 0.875rem;
}

/* ===== LINKS & BUTTONS ===== */

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

/* Button Primary */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

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

/* Button Secondary */
.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

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

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

/* Button Ghost */
.btn-ghost {
  background-color: transparent;
  color: inherit;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  padding: 0.5rem 0;
}

.btn-ghost:hover {
  opacity: 0.7;
}

/* ===== FORMS ===== */

form {
  width: 100%;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
  background-color: var(--color-bg-light);
}

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

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

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

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

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

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

/* ===== SECTIONS ===== */

section {
  overflow: hidden;
}

/* ===== UTILITIES ===== */

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.grid-3 {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.grid-4 {
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

/* ===== CARDS ===== */

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.card-light {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.card-dark {
  background-color: var(--color-bg-darker);
  border: 1px solid var(--color-border-dark);
}

.card-accent {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.card-success {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-lg);
  height: var(--icon-lg);
  border-radius: var(--radius-md);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

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

/* ===== ICONS ===== */

i {
  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);
}

/* ===== BADGES ===== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background-color: rgba(37, 99, 235, 0.15);
  color: var(--color-primary-dark);
}

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

.badge-warning {
  background-color: rgba(245, 158, 11, 0.15);
  color: #92400e;
}

.badge-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: #7f1d1d;
}

/* ===== LISTS ===== */

ul, ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-icon li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.list-icon li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-success);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ===== BLOCKQUOTE ===== */

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  opacity: 0.9;
}

/* ===== IMAGES ===== */

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* ===== SEPARATORS ===== */

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-2xl) 0;
}

/* ===== ANIMATIONS ===== */

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

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

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

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

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

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

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

/* ===== 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;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ===== FOCUS STYLES ===== */

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===== SCROLLBAR STYLING ===== */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* ===== PRINT STYLES ===== */

@media print {
  body {
    background-color: var(--color-bg-light);
  }
  
  .no-print {
    display: none !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

  .header-capital-pulse {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border-dark);
    position: static;
    z-index: 100;
  }

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

  @media (min-width: 768px) {
    .header-capital-pulse-container {
      padding: 1.25rem 2rem;
    }
  }

  @media (min-width: 1024px) {
    .header-capital-pulse-container {
      padding: 1.5rem 2.5rem;
    }
  }

  /* Logo & Brand */
  .header-capital-pulse-logo {
    flex-shrink: 0;
  }

  .header-capital-pulse-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    transition: all var(--transition-base);
  }

  .header-capital-pulse-brand:hover {
    color: var(--color-primary-light);
    transform: translateY(-2px);
  }

  .header-capital-pulse-brand i {
    font-size: 1.5rem;
    color: var(--color-primary-light);
  }

  @media (min-width: 768px) {
    .header-capital-pulse-brand {
      font-size: 1.5rem;
      gap: 0.875rem;
    }

    .header-capital-pulse-brand i {
      font-size: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .header-capital-pulse-brand {
      font-size: 1.75rem;
      gap: 1rem;
    }

    .header-capital-pulse-brand i {
      font-size: 2rem;
    }
  }

  /* Desktop Navigation */
  .header-capital-pulse-desktop-nav {
    display: none;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    flex-grow: 1;
    margin-left: 3rem;
  }

  @media (min-width: 768px) {
    .header-capital-pulse-desktop-nav {
      display: flex;
      gap: 1.5rem;
      margin-left: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .header-capital-pulse-desktop-nav {
      gap: 2.5rem;
      margin-left: 3.5rem;
    }
  }

  .header-capital-pulse-nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light-gray);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

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

  .header-capital-pulse-nav-link:hover {
    color: var(--color-text-light);
  }

  .header-capital-pulse-nav-link:hover::after {
    width: 100%;
  }

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

  /* CTA Button */
  .header-capital-pulse-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
  }

  .header-capital-pulse-cta-button:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .header-capital-pulse-cta-button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  @media (min-width: 768px) {
    .header-capital-pulse-cta-button {
      display: inline-block;
      padding: 0.875rem 1.75rem;
      font-size: 0.9rem;
    }
  }

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

  /* Mobile Toggle Button */
  .header-capital-pulse-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

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

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

  .header-capital-pulse-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .header-capital-pulse-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .header-capital-pulse-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* Mobile Menu */
  .header-capital-pulse-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg-darker);
    border-left: 1px solid var(--color-border-dark);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 1000;
    overflow-y: auto;
  }

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

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

  .header-capital-pulse-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .header-capital-pulse-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
  }

  .header-capital-pulse-mobile-close:hover {
    color: var(--color-primary-light);
  }

  .header-capital-pulse-mobile-close:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  /* Mobile Navigation Links */
  .header-capital-pulse-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .header-capital-pulse-mobile-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light-gray);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    transition: all var(--transition-base);
  }

  .header-capital-pulse-mobile-link:hover {
    color: var(--color-text-light);
    padding-left: 0.5rem;
  }

  .header-capital-pulse-mobile-link:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }

  /* Mobile CTA Button */
  .header-capital-pulse-mobile-cta {
    display: block;
    padding: 1rem;
    background-color: var(--color-primary-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-md);
    margin-top: auto;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .header-capital-pulse-mobile-cta:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .header-capital-pulse-mobile-cta:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

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

    /* ===== CREDIT WELLNESS MAIN STYLES ===== */

  .credit-wellness {
    width: 100%;
  }

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

  .credit-wellness .hero-section {
    background-color: var(--color-bg-darker);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
  }

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

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

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

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

  .credit-wellness .hero-text h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

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

  .credit-wellness .hero-subtitle {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .hero-subtitle {
      font-size: 1.1rem;
    }
  }

  .credit-wellness .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

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

  .credit-wellness .hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .credit-wellness .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* ===== UNDERSTANDING SECTION ===== */

  .credit-wellness .understanding-section {
    background-color: var(--color-bg-light);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .credit-wellness .understanding-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

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

  .credit-wellness .section-header h2 {
    color: var(--color-text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

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

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

  .credit-wellness .section-header p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .credit-wellness .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .credit-wellness .info-card {
    background-color: var(--color-bg-light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .credit-wellness .info-card {
      padding: 2rem;
    }
  }

  .credit-wellness .info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--color-primary);
  }

  .credit-wellness .info-card h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

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

  .credit-wellness .info-card p {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .credit-wellness .info-card p {
      font-size: 0.95rem;
    }
  }

  .credit-wellness .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .credit-wellness .card-icon {
      width: 4rem;
      height: 4rem;
    }
  }

  .credit-wellness .card-icon i {
    font-size: 1.75rem;
  }

  /* ===== FEATURED SECTION ===== */

  .credit-wellness .featured-section {
    background-color: var(--color-bg-light-gray);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .credit-wellness .featured-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .credit-wellness .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .credit-wellness .featured-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

  .credit-wellness .featured-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
  }

  .credit-wellness .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
  }

  .credit-wellness .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .credit-wellness .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .credit-wellness .card-body {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .credit-wellness .card-body h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    margin: 0;
  }

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

  .credit-wellness .card-body p {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .credit-wellness .card-body p {
      font-size: 0.95rem;
    }
  }

  .credit-wellness .card-body .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
  }

  .credit-wellness .view-all-section {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .credit-wellness .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  /* ===== PROCESS SECTION ===== */

  .credit-wellness .process-section {
    background-color: var(--color-bg-light);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .credit-wellness .process-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .credit-wellness .steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .credit-wellness .step-item {
    padding: 1.5rem;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-bg-light-gray);
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .credit-wellness .step-item {
      padding: 2rem;
      border-left: 0;
      border-top: 4px solid var(--color-primary);
    }
  }

  .credit-wellness .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
  }

  .credit-wellness .step-item h4 {
    color: var(--color-text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .step-item h4 {
      font-size: 1.25rem;
    }
  }

  .credit-wellness .step-item p {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
  }

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

  /* ===== BENEFITS SECTION ===== */

  .credit-wellness .benefits-section {
    background-color: var(--color-bg-darker);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

  .credit-wellness .benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .credit-wellness .benefits-section .section-header h2 {
    color: #ffffff;
  }

  .credit-wellness .benefits-section .section-header p {
    color: #e2e8f0;
  }

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

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

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

  .credit-wellness .benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .credit-wellness .benefit-item i {
    font-size: 1.75rem;
    color: var(--color-secondary);
  }

  .credit-wellness .benefit-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .credit-wellness .benefit-item h4 {
      font-size: 1.25rem;
    }
  }

  .credit-wellness .benefit-item p {
    color: #c7d2e0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .credit-wellness .benefit-item p {
      font-size: 0.95rem;
    }
  }

  /* ===== TRUST SECTION ===== */

  .credit-wellness .trust-section {
    background-color: var(--color-bg-light);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

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

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

  .credit-wellness .trust-text h2 {
    color: var(--color-text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .trust-text h2 {
      font-size: 2.25rem;
    }
  }

  .credit-wellness .trust-text > p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

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

  .credit-wellness .trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .credit-wellness .trust-list li {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 0;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .trust-list li {
      font-size: 0.95rem;
    }
  }

  .credit-wellness .trust-list strong {
    color: var(--color-text-dark);
  }

  .credit-wellness .trust-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .credit-wellness .trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* ===== CONTACT SECTION ===== */

  .credit-wellness .contact-section {
    background-color: var(--color-bg-light-gray);
    padding: 4rem 0;
    overflow: hidden;
  }

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

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

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

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

  .credit-wellness .contact-header h2 {
    color: var(--color-text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

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

  .credit-wellness .contact-header p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .credit-wellness .contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .credit-wellness .contact-form {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .credit-wellness .contact-form {
      padding: 3rem;
    }
  }

  .credit-wellness .form-group {
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .form-group {
      margin-bottom: 2rem;
    }
  }

  .credit-wellness .contact-form label {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .contact-form label {
      font-size: 0.95rem;
    }
  }

  .credit-wellness .contact-form input,
  .credit-wellness .contact-form textarea {
    background-color: var(--color-bg-light-gray);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .credit-wellness .contact-form input,
    .credit-wellness .contact-form textarea {
      font-size: 1rem;
    }
  }

  .credit-wellness .contact-form input::placeholder,
  .credit-wellness .contact-form textarea::placeholder {
    color: var(--color-text-medium);
  }

  .credit-wellness .form-privacy {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .credit-wellness .form-privacy p {
    color: var(--color-text-medium);
    font-size: 0.85rem;
    margin: 0;
  }

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

  .credit-wellness .form-privacy a {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .credit-wellness .form-privacy a:hover {
    color: var(--color-primary-dark);
  }

  .credit-wellness .form-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

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

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

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

  /* ===== COOKIE BANNER ===== */

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border-dark);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

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

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

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

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

  .cookie-banner p {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .cookie-banner p {
      font-size: 0.9rem;
      flex: 1;
    }
  }

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

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

  .cookie-buttons button {
    flex: 1;
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
  }

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

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

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

  #cookie-decline {
    background-color: transparent;
    color: #e2e8f0;
    border: 1px solid var(--color-border-dark);
  }

  #cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #e2e8f0;
  }

  /* ===== TEXT UTILITY ===== */

  .credit-wellness .text-center {
    text-align: center;
  }

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

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

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

  .footer .container {
    padding: 0 1.5rem;
  }

  .footer-content {
    display: block;
  }

  /* About Section */
  .footer-about {
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-nav-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-legal-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

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

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

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

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

  .footer-copyright-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-light-gray);
    text-align: left;
    opacity: 0.9;
  }

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

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

/* Category Page Styles */
/* ===== CATEGORY PAGE: DEBT MANAGEMENT & CREDIT ===== */

/* Hero Section */
.category-hero-debt-management-credit {
  background-color: #1a365d;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.hero-content-debt-management-credit h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content-debt-management-credit h1 {
    margin-bottom: 1.5rem;
  }
}

.hero-content-debt-management-credit p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-content-debt-management-credit p {
    font-size: 1.125rem;
  }
}

/* Posts Grid Section */
.posts-grid-section-debt-management-credit {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.posts-grid-debt-management-credit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

/* Card Styling */
.card-debt-management-credit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease-in-out;
}

@media (min-width: 768px) {
  .card-debt-management-credit {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

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

.card-debt-management-credit:hover {
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.15);
  transform: translateY(-4px);
  border-color: #2563eb;
}

.card-debt-management-credit img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (min-width: 768px) {
  .card-debt-management-credit img {
    height: 240px;
  }
}

.card-debt-management-credit h3 {
  color: #1a365d;
  font-size: 1.25rem;
  line-height: 1.4;
}

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

@media (min-width: 1024px) {
  .card-debt-management-credit h3 {
    font-size: 1.625rem;
  }
}

.card-debt-management-credit p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
}

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

.card-debt-management-credit a[data-post-link] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  width: fit-content;
}

@media (min-width: 768px) {
  .card-debt-management-credit a[data-post-link] {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}

.card-debt-management-credit a[data-post-link]:hover {
  background-color: #1e40af;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-debt-management-credit a[data-post-link]:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Additional Section 1 */
.additional-section-1-debt-management-credit {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

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

.additional-content-1-debt-management-credit h2 {
  color: #1a365d;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .additional-content-1-debt-management-credit h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .additional-content-1-debt-management-credit h2 {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
  }
}

.additional-content-1-debt-management-credit > p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .additional-content-1-debt-management-credit > p {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.principles-list-debt-management-credit {
  list-style: none;
  padding: 0;
  margin: 0;
}

.principles-list-debt-management-credit li {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f0f4f8;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  color: #1f2937;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .principles-list-debt-management-credit li {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
  }
}

.principles-list-debt-management-credit strong {
  color: #1a365d;
  font-weight: 600;
}

/* Additional Section 2 */
.additional-section-2-debt-management-credit {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.additional-content-2-debt-management-credit h2 {
  color: #1a365d;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .additional-content-2-debt-management-credit h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .additional-content-2-debt-management-credit h2 {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
  }
}

.additional-content-2-debt-management-credit > p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .additional-content-2-debt-management-credit > p {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.factors-grid-debt-management-credit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .factors-grid-debt-management-credit {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.factor-item-debt-management-credit {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}

@media (min-width: 768px) {
  .factor-item-debt-management-credit {
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .factor-item-debt-management-credit {
    padding: 2rem;
  }
}

.factor-item-debt-management-credit:hover {
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.1);
  border-color: #2563eb;
}

.factor-item-debt-management-credit h3 {
  color: #1a365d;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .factor-item-debt-management-credit h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.factor-item-debt-management-credit p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

/* Responsive adjustments for main container */
@media (min-width: 320px) {
  .main.category-page-debt-management-credit {
    background-color: #ffffff;
  }
}

/* Accessibility */
.category-page-debt-management-credit a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Post Page 1 Styles */
/* ===== POST DEBT ANALYSIS FUNDAMENTALS - COMPLETE ISOLATION ===== */
    
    .post-debt-analysis-fundamentals {
      width: 100%;
    }

    /* ===== BREADCRUMBS ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs {
      background-color: #f8f9fa;
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color var(--transition-base);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs span {
      color: var(--color-text-medium);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-breadcrumbs i {
      color: var(--color-text-medium);
      font-size: 0.625rem;
    }

    /* ===== HERO SECTION ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero {
      background-color: #0f172a;
      background-image: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
      color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: -100px;
      width: 400px;
      height: 400px;
      background-color: rgba(37, 99, 235, 0.1);
      border-radius: 50%;
      z-index: 0;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -150px;
      width: 300px;
      height: 300px;
      background-color: rgba(16, 185, 129, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero-content {
        gap: 2rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      margin-bottom: 0;
      line-height: 1.3;
    }

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

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

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-lead {
      color: #e0e0e0;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 0;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-lead {
        font-size: 1.125rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 2rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: #c7d2e0;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-meta-item i {
      font-size: 1rem;
      color: var(--color-primary);
    }

    /* ===== CONTENT SECTIONS ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 {
      background-color: #ffffff;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1-inner {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1-inner {
        gap: 3rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 h2 {
        font-size: 2.75rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

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

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 ul {
      color: var(--color-text-dark);
      padding-left: var(--space-lg);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 li {
      margin-bottom: var(--space-md);
      line-height: 1.8;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-1 li {
        font-size: 1rem;
      }
    }

    /* ===== CONTENT SECTION 2 ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 {
      background-color: #f8f9fa;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 h2 {
        font-size: 2.75rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 p {
        font-size: 1rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 h3 {
        font-size: 1.5rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 ul {
      color: var(--color-text-dark);
      padding-left: var(--space-lg);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 li {
      margin-bottom: var(--space-md);
      line-height: 1.8;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-2 li {
        font-size: 1rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    /* ===== CONTENT SECTION 3 ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 {
      background-color: #ffffff;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3-inner {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3-inner {
        gap: 2.5rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-3 h2 {
        font-size: 2.75rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-steps {
        gap: 2.5rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #f8f9fa;
      border-radius: var(--radius-md);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step {
        padding: 2rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      font-weight: 700;
      font-size: 1.125rem;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step h3 {
        font-size: 1.375rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-step p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      margin-bottom: 0;
      line-height: 1.8;
    }

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

    /* ===== CONTENT SECTION 4 - DISCLAIMER ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer {
      background-color: #f0f4ff;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid #e0e8ff;
      border-bottom: 1px solid #e0e8ff;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer {
        padding: 4rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-content {
        flex-direction: row;
        gap: 2rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-icon {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background-color: #2563eb;
      color: #ffffff;
      border-radius: var(--radius-md);
      flex-shrink: 0;
      font-size: 1.5rem;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-text h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-text h3 {
        font-size: 1.375rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-text p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      margin-bottom: var(--space-md);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-text p {
        font-size: 1rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-disclaimer-text p:last-child {
      margin-bottom: 0;
    }

    /* ===== CONTENT SECTION 5 - CONCLUSION ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 {
      background-color: #ffffff;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5-inner {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 h2 {
        font-size: 2.75rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 p {
        font-size: 1rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 ul {
      color: var(--color-text-dark);
      padding-left: var(--space-lg);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 li {
      margin-bottom: var(--space-md);
      line-height: 1.8;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-content-5 li {
        font-size: 1rem;
      }
    }

    /* ===== RELATED POSTS SECTION ===== */
    
    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related {
      background-color: #f8f9fa;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related {
        padding: 6rem 0;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-content {
        gap: 3rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related h2 {
        font-size: 2.75rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

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

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

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-base);
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--color-primary);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card-image {
      width: 100%;
      height: 200px;
      border-radius: var(--radius-md);
      object-fit: cover;
      background-color: #e2e8f0;
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
      transition: color var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card:hover h3 {
      color: var(--color-primary);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card p {
      color: var(--color-text-medium);
      font-size: 0.875rem;
      margin-bottom: 0;
      line-height: 1.7;
      flex-grow: 1;
    }

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

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

    @media (min-width: 768px) {
      .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card-link {
        font-size: 1rem;
      }
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card:hover .debt-analysis-fundamentals-related-card-link {
      gap: 0.75rem;
      color: var(--color-primary-dark);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card-link i {
      font-size: 0.75rem;
      transition: transform var(--transition-base);
    }

    .post-debt-analysis-fundamentals .debt-analysis-fundamentals-related-card:hover .debt-analysis-fundamentals-related-card-link i {
      transform: translateX(4px);
    }

/* Post Page 2 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: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #10b981;
  --color-secondary-dark: #059669;
  --color-accent: #f59e0b;
  --color-bg-light: #ffffff;
  --color-bg-light-gray: #f8f9fa;
  --color-bg-dark: #0f172a;
  --color-bg-darker: #0a0e27;
  --color-text-dark: #0f172a;
  --color-text-medium: #475569;
  --color-text-light: #ffffff;
  --color-text-light-gray: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-border: #e2e8f0;
  --color-border-dark: #334155;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  --icon-sm: 1.25rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* ===== POST REPAYMENT STRATEGY APPROACHES STYLES ===== */

.post-repayment-strategy-approaches {
  overflow: hidden;
}

/* BREADCRUMBS */
.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  padding: 1rem 0;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs a,
.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs span {
  font-size: 0.875rem;
  color: var(--color-text-medium);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

/* HERO SECTION */
section.repayment-strategy-approaches-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-hero {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-hero {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light-gray);
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-hero-lead {
    font-size: 1.125rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-light-gray);
  margin-top: var(--space-md);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero-meta-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-hero-meta-item i {
  font-size: var(--icon-sm);
  color: var(--color-primary-light);
}

/* CONTENT SECTION 1 */
section.repayment-strategy-approaches-content-1 {
  overflow: hidden;
  background-color: var(--color-bg-light);
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-content-1 {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-content-1 {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 h2 {
    font-size: 2.75rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 li {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--color-text-medium);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 li {
    font-size: 1rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-1 li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* CONTENT SECTION 2 */
section.repayment-strategy-approaches-content-2 {
  overflow: hidden;
  background-color: var(--color-bg-light-gray);
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-content-2 {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-content-2 {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-2-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2 h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-2 h2 {
    font-size: 2.75rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2 p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-2 p {
    font-size: 1rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2-image {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-2-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 350px;
}

/* STRATEGIES GRID */
.post-repayment-strategy-approaches .repayment-strategy-approaches-strategies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-strategy-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-strategy-card {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-strategy-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-strategy-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-text-dark);
}

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-strategy-card p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
}

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

/* CONTENT SECTION 3 */
section.repayment-strategy-approaches-content-3 {
  overflow: hidden;
  background-color: var(--color-bg-light);
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-content-3 {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-content-3 {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 h2 {
    font-size: 2.75rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 h3 {
    font-size: 1.5rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 p {
    font-size: 1rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 ol {
  list-style: decimal;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-content-3 li {
    font-size: 1rem;
  }
}

/* DISCLAIMER SECTION */
section.repayment-strategy-approaches-disclaimer {
  overflow: hidden;
  background-color: #f0f4ff;
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-disclaimer {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-disclaimer {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: var(--icon-md);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-body {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-disclaimer-body {
    font-size: 1rem;
  }
}

/* RELATED POSTS SECTION */
section.repayment-strategy-approaches-related {
  overflow: hidden;
  background-color: var(--color-bg-light-gray);
  padding: 4rem var(--space-lg);
}

@media (min-width: 768px) {
  section.repayment-strategy-approaches-related {
    padding: 5rem var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section.repayment-strategy-approaches-related {
    padding: 6rem var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-header {
  text-align: center;
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related h2 {
    font-size: 2.75rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-description {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-medium);
  margin: 0 auto;
  max-width: 600px;
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related-description {
    font-size: 1rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

@media (min-width: 1024px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related-card {
    gap: var(--space-lg);
  }
}

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--color-bg-light-gray);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-content {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin: 0;
}

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

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-medium);
  margin: 0;
}

@media (min-width: 768px) {
  .post-repayment-strategy-approaches .repayment-strategy-approaches-related-card p {
    font-size: 0.9375rem;
  }
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-md);
}

.post-repayment-strategy-approaches .repayment-strategy-approaches-related-card-link i {
  font-size: var(--icon-sm);
}

/* Post Page 3 Styles */
/* ===== POST BUDGETING DEBT REDUCTION ISOLATION ===== */
    
    .post-budgeting-debt-reduction {
      width: 100%;
    }

    /* ===== BREADCRUMBS ===== */
    
    .budgeting-debt-reduction-breadcrumbs {
      background-color: var(--color-bg-light-gray);
      padding: var(--space-lg) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-breadcrumbs {
        padding: var(--space-xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-breadcrumbs .container {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      flex-wrap: wrap;
    }

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

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-breadcrumbs span {
      color: var(--color-text-medium);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-breadcrumbs-separator {
      color: var(--color-text-medium);
      opacity: 0.5;
    }

    /* ===== HERO SECTION ===== */
    
    .budgeting-debt-reduction-hero {
      background-color: var(--color-bg-dark);
      color: var(--color-text-light);
      padding: var(--space-3xl) 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-hero {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-hero {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
      max-width: 900px;
      margin: 0 auto;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero h1 {
      color: var(--color-text-light);
      font-size: 2.25rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-hero h1 {
        font-size: 3rem;
      }
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero-lead {
      color: var(--color-text-light-gray);
      font-size: 1rem;
      line-height: 1.8;
      opacity: 0.95;
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero-meta {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
      color: var(--color-text-light-gray);
      font-size: 0.875rem;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero-meta-item {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-hero-meta-item i {
      font-size: var(--icon-sm);
      color: var(--color-primary-light);
    }

    /* ===== CONTENT SECTION 1 ===== */
    
    .budgeting-debt-reduction-content-1 {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-content-1 {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-content-1 {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
      align-items: start;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1 h2 {
        font-size: 2.5rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1 p {
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: var(--space-lg);
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-1-image-wrapper {
      width: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
    }

    /* ===== CONTENT SECTION 2 ===== */
    
    .budgeting-debt-reduction-content-2 {
      background-color: var(--color-bg-light-gray);
      color: var(--color-text-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-content-2 {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-content-2 {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2 h2 {
        font-size: 2.5rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2 p {
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2 p {
        font-size: 1rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2-list {
      list-style: none;
      padding: 0;
      margin: var(--space-lg) 0;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2-list li {
      display: flex;
      align-items: flex-start;
      gap: var(--space-md);
      margin-bottom: var(--space-md);
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2-list li {
        font-size: 1rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-2-list li::before {
      content: '\f058';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--color-secondary);
      margin-top: 0.25rem;
      flex-shrink: 0;
      font-size: var(--icon-sm);
    }

    /* ===== CONTENT SECTION 3 ===== */
    
    .budgeting-debt-reduction-content-3 {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-content-3 {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-content-3 {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3 h2 {
        font-size: 2.5rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3 p {
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3 p {
        font-size: 1rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
      margin: var(--space-2xl) 0;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
      }
    }

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-content-3-steps {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-step-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: var(--space-lg);
      background-color: var(--color-bg-light-gray);
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-step-card {
        padding: var(--space-xl);
        gap: var(--space-lg);
      }
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-primary);
      color: var(--color-text-light);
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 1.125rem;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-step-title {
      color: var(--color-text-dark);
      font-weight: 600;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-step-title {
        font-size: 1.25rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-step-description {
      color: var(--color-text-medium);
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-step-description {
        font-size: 0.9375rem;
      }
    }

    /* ===== CONTENT SECTION 4 (Disclaimer) ===== */
    
    .budgeting-debt-reduction-disclaimer {
      background-color: var(--color-bg-light-gray);
      color: var(--color-text-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-disclaimer {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-disclaimer {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      max-width: 900px;
      margin: 0 auto;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-header {
      display: flex;
      align-items: flex-start;
      gap: var(--space-md);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-icon {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      background-color: rgba(37, 99, 235, 0.1);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-icon i {
      font-size: var(--icon-md);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-title {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-title {
        font-size: 1.5rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-text {
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-text {
        font-size: 1rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-disclaimer-text:last-child {
      margin-bottom: 0;
    }

    /* ===== CONTENT SECTION 5 (Conclusion) ===== */
    
    .budgeting-debt-reduction-conclusion {
      background-color: var(--color-primary);
      color: var(--color-text-light);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-conclusion {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-conclusion {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-conclusion h2 {
      color: var(--color-text-light);
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-conclusion h2 {
        font-size: 2.5rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-conclusion p {
      color: var(--color-text-light-gray);
      font-size: 0.9375rem;
      line-height: 1.8;
      opacity: 0.95;
    }

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

    /* ===== RELATED POSTS SECTION ===== */
    
    .budgeting-debt-reduction-related {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: var(--space-3xl) 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .budgeting-debt-reduction-related {
        padding: var(--space-4xl) 0;
      }
    }

    @media (min-width: 1024px) {
      .budgeting-debt-reduction-related {
        padding: var(--space-5xl) 0;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-header {
      text-align: center;
      margin-bottom: var(--space-xl);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related h2 {
        font-size: 2.25rem;
      }
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-description {
      color: var(--color-text-medium);
      font-size: 0.9375rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related-description {
        font-size: 1rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }

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

    @media (min-width: 1024px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: var(--space-lg);
      background-color: var(--color-bg-light-gray);
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      transition: all var(--transition-base);
      box-shadow: var(--shadow-sm);
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card {
        padding: var(--space-xl);
        gap: var(--space-lg);
      }
    }

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

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--radius-md);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-title {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-title {
        font-size: 1.25rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-description {
      color: var(--color-text-medium);
      font-size: 0.875rem;
      line-height: 1.7;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-description {
        font-size: 0.9375rem;
      }
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9375rem;
      transition: all var(--transition-base);
      text-decoration: none;
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-link:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    .post-budgeting-debt-reduction .budgeting-debt-reduction-related-card-link i {
      font-size: var(--icon-sm);
    }

/* Post Page 4 Styles */
/* ===== POST: CREDIT SCORE UNDERSTANDING STYLES ===== */

.post-credit-score-understanding {
  background-color: var(--color-bg-light);
}

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

.credit-score-understanding-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-breadcrumbs {
    padding: var(--space-xl) 0;
  }
}

.credit-score-understanding-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .credit-score-understanding-breadcrumbs-content {
    font-size: 1rem;
    gap: var(--space-md);
  }
}

.credit-score-understanding-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.credit-score-understanding-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.credit-score-understanding-breadcrumbs-separator {
  color: var(--color-text-medium);
  font-weight: 300;
}

.credit-score-understanding-breadcrumbs-current {
  color: var(--color-text-dark);
  font-weight: 600;
}

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

.credit-score-understanding-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-hero {
    padding: 6rem 0;
  }
}

.credit-score-understanding-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.credit-score-understanding-hero-title {
  color: var(--color-text-light);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-hero-title {
    font-size: 2.75rem;
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-hero-title {
    font-size: 3.5rem;
  }
}

.credit-score-understanding-hero-lead {
  color: var(--color-text-light-gray);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
}

@media (min-width: 768px) {
  .credit-score-understanding-hero-lead {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.credit-score-understanding-hero-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-lg);
  color: var(--color-text-light-gray);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .credit-score-understanding-hero-meta {
    gap: var(--space-xl);
    font-size: 1rem;
  }
}

.credit-score-understanding-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.credit-score-understanding-meta-item i {
  font-size: var(--icon-md);
}

/* ===== SECTION 1: WHAT IS CREDIT RATING ===== */

.credit-score-understanding-section-1 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-section-1 {
    padding: 6rem 0;
  }
}

.credit-score-understanding-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .credit-score-understanding-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-1 {
    gap: var(--space-3xl);
  }
}

.credit-score-understanding-content-1-text h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-1-text h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-1-text h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-content-1-text p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-1-text p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

.credit-score-understanding-content-1-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ===== SECTION 2: FACTORS ===== */

.credit-score-understanding-section-2 {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-section-2 {
    padding: 6rem 0;
  }
}

.credit-score-understanding-content-2 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-2 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-2 h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-content-2 > p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-2 > p {
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
  }
}

.credit-score-understanding-factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-factors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-factors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.credit-score-understanding-factor-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .credit-score-understanding-factor-card {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

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

.credit-score-understanding-factor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.credit-score-understanding-factor-icon i {
  font-size: var(--icon-lg);
}

.credit-score-understanding-factor-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
}

@media (min-width: 768px) {
  .credit-score-understanding-factor-card h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-factor-card p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}

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

/* ===== DISCLAIMER SECTION ===== */

.credit-score-understanding-disclaimer {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .credit-score-understanding-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-disclaimer {
    padding: 5rem 0;
  }
}

.credit-score-understanding-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  background-color: rgba(37, 99, 235, 0.05);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-disclaimer-content {
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
}

.credit-score-understanding-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-size: var(--icon-lg);
}

.credit-score-understanding-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .credit-score-understanding-disclaimer-text h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-disclaimer-text p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.credit-score-understanding-disclaimer-text p:last-child {
  margin-bottom: 0;
}

/* ===== SECTION 3: CALCULATION IN KAZAKHSTAN ===== */

.credit-score-understanding-section-3 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-section-3 {
    padding: 6rem 0;
  }
}

.credit-score-understanding-content-3 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-3 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-3 h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-content-3 > p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-3 > p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.credit-score-understanding-bureaus h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-bureaus h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-xl);
}

.credit-score-understanding-list li {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  position: relative;
}

@media (min-width: 768px) {
  .credit-score-understanding-list li {
    font-size: 1rem;
  }
}

.credit-score-understanding-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.credit-score-understanding-content-3-image {
  width: 100%;
  height: auto;
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (min-width: 768px) {
  .credit-score-understanding-content-3-image {
    margin-top: var(--space-2xl);
  }
}

/* ===== SECTION 4: IMPACT ON FINANCIAL ACCESS ===== */

.credit-score-understanding-section-4 {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-section-4 {
    padding: 6rem 0;
  }
}

.credit-score-understanding-content-4 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-4 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-4 h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-content-4 > p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-4 > p {
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
  }
}

.credit-score-understanding-impact-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-impact-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-impact-sections {
    gap: var(--space-2xl);
  }
}

.credit-score-understanding-impact-block {
  background-color: var(--color-bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .credit-score-understanding-impact-block {
    padding: var(--space-xl);
  }
}

.credit-score-understanding-impact-block h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-impact-block h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-impact-block p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .credit-score-understanding-impact-block p {
    font-size: 1rem;
  }
}

/* ===== SECTION 5: IMPROVING CREDIT RATING ===== */

.credit-score-understanding-section-5 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-section-5 {
    padding: 6rem 0;
  }
}

.credit-score-understanding-content-5 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-5 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-content-5 h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-content-5 > p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .credit-score-understanding-content-5 > p {
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
  }
}

.credit-score-understanding-improvement-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-improvement-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-improvement-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.credit-score-understanding-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-light-gray);
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .credit-score-understanding-step {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

.credit-score-understanding-step-number {
  position: absolute;
  top: -1rem;
  left: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

.credit-score-understanding-step h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-step h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-step p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}

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

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

.credit-score-understanding-conclusion {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .credit-score-understanding-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-conclusion {
    padding: 5rem 0;
  }
}

.credit-score-understanding-conclusion-content {
  max-width: 900px;
}

.credit-score-understanding-conclusion-content h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .credit-score-understanding-conclusion-content h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-conclusion-content h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-conclusion-content p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-conclusion-content p {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

.credit-score-understanding-conclusion-content p:last-child {
  margin-bottom: 0;
}

/* ===== RELATED POSTS SECTION ===== */

.credit-score-understanding-related {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .credit-score-understanding-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-related {
    padding: 6rem 0;
  }
}

.credit-score-understanding-related-content h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .credit-score-understanding-related-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-related-content h2 {
    font-size: 2.5rem;
  }
}

.credit-score-understanding-related-description {
  color: var(--color-text-medium);
  font-size: 0.875rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .credit-score-understanding-related-description {
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
  }
}

.credit-score-understanding-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .credit-score-understanding-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.credit-score-understanding-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .credit-score-understanding-related-card {
    gap: var(--space-lg);
  }
}

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

.credit-score-understanding-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-light-gray);
}

.credit-score-understanding-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
}

.credit-score-understanding-related-card:hover .credit-score-understanding-related-card-image img {
  transform: scale(1.05);
}

.credit-score-understanding-related-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .credit-score-understanding-related-card-content {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

.credit-score-understanding-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .credit-score-understanding-related-card h3 {
    font-size: 1.375rem;
  }
}

.credit-score-understanding-related-card p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
}

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

.credit-score-understanding-related-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  margin-top: auto;
}

@media (min-width: 768px) {
  .credit-score-understanding-related-link {
    font-size: 1rem;
  }
}

.credit-score-understanding-related-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-md);
}

.credit-score-understanding-related-link i {
  font-size: var(--icon-sm);
}

/* Post Page 5 Styles */
/* ===== POST CREDITOR NEGOTIATION GUIDE STYLES ===== */
    
    .post-creditor-negotiation-guide {
      width: 100%;
    }

    /* Breadcrumbs */
    .creditor-negotiation-guide-breadcrumbs {
      background-color: var(--color-bg-light-gray);
      overflow: hidden;
      padding: 1rem 0;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs .container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs a,
    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs span {
      font-size: 0.875rem;
      color: var(--color-text-medium);
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs a,
      .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs span {
        font-size: 1rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs a {
      color: var(--color-primary);
      transition: color var(--transition-base);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs a:hover {
      color: var(--color-primary-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-breadcrumbs span {
      color: var(--color-text-dark);
      font-weight: 500;
    }

    /* Hero Section */
    .creditor-negotiation-guide-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      overflow: hidden;
      padding: 4rem 0 5rem;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-hero {
        padding: 6rem 0 7rem;
      }
    }

    @media (min-width: 1024px) {
      .creditor-negotiation-guide-hero {
        padding: 7rem 0 8rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-content {
        gap: var(--space-xl);
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-hero h1 {
      color: var(--color-text-light);
      font-size: 2rem;
      line-height: 1.2;
    }

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

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

    .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-meta {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-meta span {
      font-size: 0.875rem;
      color: var(--color-text-light-gray);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-hero-meta span {
        font-size: 1rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-lead {
      color: var(--color-text-light-gray);
      font-size: 1.125rem;
      line-height: 1.8;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-lead {
        font-size: 1.25rem;
      }
    }

    /* Content Sections */
    .creditor-negotiation-guide-section {
      overflow: hidden;
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .creditor-negotiation-guide-section {
        padding: 6rem 0;
      }
    }

    .creditor-negotiation-guide-section-1 {
      background-color: var(--color-bg-light);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-1 h2 {
      color: var(--color-text-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-1 h3 {
      color: var(--color-primary);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-1 p,
    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-1 li {
      color: var(--color-text-medium);
    }

    .creditor-negotiation-guide-section-2 {
      background-color: var(--color-bg-light-gray);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-2 h2 {
      color: var(--color-text-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-2 h3 {
      color: var(--color-primary-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-2 p,
    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-2 li {
      color: var(--color-text-medium);
    }

    .creditor-negotiation-guide-section-3 {
      background-color: #f0f9ff;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-3 h2 {
      color: var(--color-text-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-3 h3 {
      color: var(--color-primary);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-3 p,
    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-3 li {
      color: var(--color-text-medium);
    }

    .creditor-negotiation-guide-section-4 {
      background-color: var(--color-bg-light);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-4 h2 {
      color: var(--color-text-dark);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-4 h3 {
      color: var(--color-secondary);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-4 p,
    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-4 li {
      color: var(--color-text-medium);
    }

    /* Section Content Layout */
    .post-creditor-negotiation-guide .creditor-negotiation-guide-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-content-wrapper {
        gap: var(--space-3xl);
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block h2 {
      font-size: 1.75rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block h2 {
        font-size: 2.75rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block p {
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-content-block p {
        font-size: 1rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-subsection {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-subsection h3 {
      font-size: 1.375rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-subsection h3 {
        font-size: 1.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-subsection h3 {
        font-size: 2rem;
      }
    }

    /* List Styling */
    .post-creditor-negotiation-guide .creditor-negotiation-guide-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-list li {
      display: flex;
      gap: var(--space-md);
      margin: 0;
      padding: 0;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-list li::before {
      content: '\f058';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--color-primary);
      margin-top: 0.125rem;
      flex-shrink: 0;
      font-size: 1.25rem;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-section-3 .creditor-negotiation-guide-list li::before {
      color: var(--color-secondary);
    }

    /* Highlight Box */
    .creditor-negotiation-guide-highlight {
      background-color: rgba(37, 99, 235, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: var(--space-lg);
      border-radius: var(--radius-md);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-highlight {
        padding: var(--space-xl);
        margin: var(--space-xl) 0;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-highlight p {
      margin: 0;
      color: var(--color-text-dark);
      font-weight: 500;
    }

    /* Image Styling */
    .post-creditor-negotiation-guide .creditor-negotiation-guide-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      margin: var(--space-xl) 0;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-image {
        margin: var(--space-2xl) 0;
      }
    }

    /* Two Column Layout */
    .post-creditor-negotiation-guide .creditor-negotiation-guide-two-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
      align-items: start;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-two-column {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-two-column img {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    /* Disclaimer Section */
    .creditor-negotiation-guide-disclaimer {
      background-color: #f8fafc;
      border-left: 4px solid var(--color-warning);
      overflow: hidden;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-disclaimer {
        padding: 4rem 0;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-disclaimer-content h3 {
      color: var(--color-text-dark);
      display: flex;
      align-items: center;
      gap: var(--space-md);
      font-size: 1.375rem;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-disclaimer-content h3 {
        font-size: 1.75rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-disclaimer-content h3 i {
      color: var(--color-warning);
      font-size: 1.75rem;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-disclaimer-content p {
      color: var(--color-text-medium);
      margin: 0;
    }

    /* Related Posts Section */
    .creditor-negotiation-guide-related {
      background-color: var(--color-bg-light-gray);
      overflow: hidden;
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .creditor-negotiation-guide-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .creditor-negotiation-guide-related {
        padding: 6rem 0;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-content h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-content h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-content h2 {
        font-size: 2.75rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
      }
    }

    @media (min-width: 1024px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
      }
    }

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

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

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      padding: var(--space-lg);
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card-content {
        padding: var(--space-xl);
        gap: var(--space-lg);
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card h3 {
        font-size: 1.375rem;
      }
    }

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

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card p {
        font-size: 0.9375rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card a {
      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);
    }

    @media (min-width: 768px) {
      .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card a {
        font-size: 1rem;
      }
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card a:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card a i {
      font-size: 0.75rem;
      transition: transform var(--transition-base);
    }

    .post-creditor-negotiation-guide .creditor-negotiation-guide-related-card a:hover i {
      transform: translateX(4px);
    }

/* Post Page 6 Styles */
/* ===== POST-SPECIFIC STYLES: FINANCIAL HEALTH RECOVERY ===== */

.post-financial-health-recovery {
  width: 100%;
}

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

.post-financial-health-recovery .financial-health-recovery-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-breadcrumbs {
    padding: var(--space-xl) 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.post-financial-health-recovery .financial-health-recovery-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-breadcrumb-link {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-financial-health-recovery .financial-health-recovery-breadcrumb-separator {
  color: var(--color-text-medium);
  font-size: 0.875rem;
}

.post-financial-health-recovery .financial-health-recovery-breadcrumb-current {
  color: var(--color-text-medium);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-breadcrumb-current {
    font-size: 1rem;
  }
}

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

.post-financial-health-recovery .financial-health-recovery-hero {
  background: linear-gradient(135deg, var(--color-bg-darker) 0%, #1a2e4a 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

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

.post-financial-health-recovery .financial-health-recovery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.post-financial-health-recovery .financial-health-recovery-hero-content {
  position: relative;
  z-index: 1;
}

.post-financial-health-recovery .financial-health-recovery-hero-title {
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-hero-lead {
  color: var(--color-text-light-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-hero-lead {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-hero-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
}

.post-financial-health-recovery .financial-health-recovery-read-time {
  color: var(--color-text-light-gray);
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-read-time {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-read-time i {
  color: var(--color-accent);
}

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

.post-financial-health-recovery .financial-health-recovery-intro {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-intro {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-intro-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-intro-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-intro-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-intro-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-intro-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-intro-text {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-intro-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== ASSESSMENT SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-assessment {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-assessment {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-assessment {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-assessment-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-assessment-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-assessment-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-assessment-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-assessment-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-assessment-text {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-assessment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-assessment-list {
    gap: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-list-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.post-financial-health-recovery .financial-health-recovery-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  flex-shrink: 0;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-list-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-list-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.post-financial-health-recovery .financial-health-recovery-list-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-list-title {
    font-size: 1.375rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-list-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-list-description {
    font-size: 1rem;
  }
}

/* ===== DISCLAIMER SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-disclaimer {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer {
    padding: 5rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  background-color: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer-content {
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  flex-shrink: 0;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-financial-health-recovery .financial-health-recovery-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer-title {
    font-size: 1.375rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-disclaimer-body {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-disclaimer-body {
    font-size: 1rem;
  }
}

/* ===== STRATEGY SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-strategy {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-strategy {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-strategy {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-strategy-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-strategy-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-strategy-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-text {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-strategy-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-strategy-card {
    padding: var(--space-xl);
    gap: var(--space-lg);
  }
}

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

.post-financial-health-recovery .financial-health-recovery-card-header {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-md);
}

.post-financial-health-recovery .financial-health-recovery-card-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-card-title {
    font-size: 1.375rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-financial-health-recovery .financial-health-recovery-card-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

/* ===== HABITS SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-habits {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-habits {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-habits {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-habits-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-financial-health-recovery .financial-health-recovery-habits-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-habits-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-habits-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-paragraph {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-habits-paragraph {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-habits-list {
    gap: var(--space-lg);
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-list-item {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-habits-list-item {
    font-size: 1rem;
    padding-left: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-habits-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.25rem;
}

.post-financial-health-recovery .financial-health-recovery-habits-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== TIMELINE SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-timeline {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-timeline {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-timeline {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-timeline-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-timeline-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-timeline-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-timeline-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-timeline-intro {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-timeline-intro {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-timeline-stages {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-timeline-stages {
    gap: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-timeline-stage {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-timeline-stage {
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-stage-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  width: 70px;
  padding: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-stage-marker {
    width: 80px;
    padding: var(--space-lg);
  }
}

.post-financial-health-recovery .financial-health-recovery-stage-number {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-stage-number {
    font-size: 1.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-stage-period {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-financial-health-recovery .financial-health-recovery-stage-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.post-financial-health-recovery .financial-health-recovery-stage-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-stage-title {
    font-size: 1.375rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-stage-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-stage-description {
    font-size: 1rem;
  }
}

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

.post-financial-health-recovery .financial-health-recovery-conclusion {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-conclusion-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-conclusion-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-text {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-conclusion-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-highlight-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-highlight-item {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-highlight-item i {
  color: var(--color-success);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.post-financial-health-recovery .financial-health-recovery-conclusion-final {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  background-color: #f9fafb;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-conclusion-final {
    font-size: 1rem;
    padding: var(--space-xl);
  }
}

/* ===== RELATED POSTS SECTION ===== */

.post-financial-health-recovery .financial-health-recovery-related {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-related {
    padding: 6rem 0;
  }
}

.post-financial-health-recovery .financial-health-recovery-related-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-financial-health-recovery .financial-health-recovery-related-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-related-title {
    font-size: 2.75rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

@media (min-width: 1024px) {
  .post-financial-health-recovery .financial-health-recovery-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-related-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-card {
    gap: var(--space-lg);
  }
}

.post-financial-health-recovery .financial-health-recovery-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.post-financial-health-recovery .financial-health-recovery-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e2e8f0;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-image {
    height: 250px;
  }
}

.post-financial-health-recovery .financial-health-recovery-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-financial-health-recovery .financial-health-recovery-related-card:hover .financial-health-recovery-related-image img {
  transform: scale(1.05);
}

.post-financial-health-recovery .financial-health-recovery-related-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-body {
    gap: var(--space-lg);
    padding: var(--space-xl);
  }
}

.post-financial-health-recovery .financial-health-recovery-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-card-title {
    font-size: 1.375rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-related-card-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

.post-financial-health-recovery .financial-health-recovery-related-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
}

@media (min-width: 768px) {
  .post-financial-health-recovery .financial-health-recovery-related-link {
    font-size: 1rem;
  }
}

.post-financial-health-recovery .financial-health-recovery-related-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-sm);
}

.post-financial-health-recovery .financial-health-recovery-related-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.post-financial-health-recovery .financial-health-recovery-related-link:hover i {
  transform: translateX(4px);
}

/* Privacy Page Styles */
.legal-docs {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .legal-docs h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs h1 {
    font-size: 3rem;
  }
}

.legal-docs-meta {
  font-size: 0.875rem;
  color: var(--color-text-medium);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.legal-section {
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.legal-section:nth-child(odd) {
  background-color: var(--color-bg-light);
}

.legal-section:nth-child(even) {
  background-color: var(--color-bg-light-gray);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

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

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

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

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

.legal-section p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-medium);
  margin-bottom: var(--space-md);
}

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

.legal-section ul,
.legal-section ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-medium);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-section ul,
  .legal-section ol {
    font-size: 1rem;
  }
}

.legal-section li {
  margin-bottom: var(--space-md);
}

.legal-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background-color: var(--color-bg-light-gray);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .contact-info {
    padding: 2.5rem;
    gap: var(--space-xl);
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-label {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.875rem;
}

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

.contact-value {
  color: var(--color-text-medium);
  font-size: 0.875rem;
  word-break: break-word;
}

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

.hero-section {
  overflow: hidden;
  background-color: var(--color-bg-dark);
  padding: 4rem 0;
}

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

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

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

.hero-section p {
  color: var(--color-text-light-gray);
}

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

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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #10b981;
  --color-secondary-dark: #059669;
  --color-accent: #f59e0b;
  --color-bg-light: #ffffff;
  --color-bg-light-gray: #f8f9fa;
  --color-bg-dark: #0f172a;
  --color-bg-darker: #0a0e27;
  --color-text-dark: #0f172a;
  --color-text-medium: #475569;
  --color-text-light: #ffffff;
  --color-text-light-gray: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-border: #e2e8f0;
  --color-border-dark: #334155;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  
  --icon-sm: 1.25rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

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

/* Thank You Page - Hero Section */
.thank-hero-section {
  background-color: var(--color-bg-dark);
  padding: 4rem var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.thank-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.thank-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  animation: successBounce 0.6s ease-out;
}

.thank-icon i {
  display: block;
}

.thank-hero-section h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
}

.thank-lead {
  font-size: 1.25rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.thank-subtitle {
  font-size: 1rem;
  color: var(--color-text-light-gray);
  max-width: 600px;
  line-height: 1.8;
}

/* Thank You Page - Next Section */
.thank-next-section {
  background-color: var(--color-bg-light);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.thank-next-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.thank-next-section h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Steps Grid */
.thank-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.thank-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background-color: var(--color-bg-light-gray);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.thank-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.thank-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.thank-step p {
  color: var(--color-text-medium);
  line-height: 1.8;
}

/* Benefits Section */
.thank-benefits {
  padding: var(--space-2xl);
  background-color: #f0f9ff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary-light);
}

.thank-benefits h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
}

.thank-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.thank-benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-medium);
  line-height: 1.6;
}

.thank-benefits-list i {
  color: var(--color-secondary);
  font-size: var(--icon-md);
  flex-shrink: 0;
}

/* CTA Button */
.thank-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

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

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

/* Animations */
@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .thank-hero-section {
    padding: 6rem var(--space-md);
    min-height: 70vh;
  }

  .thank-hero-section h1 {
    font-size: 3rem;
  }

  .thank-lead {
    font-size: 1.5rem;
  }

  .thank-subtitle {
    font-size: 1.0625rem;
  }

  .thank-next-section {
    padding: 6rem var(--space-md);
  }

  .thank-next-section h2 {
    font-size: 2.5rem;
  }

  .thank-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .thank-step {
    padding: var(--space-2xl);
  }

  .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }

  .thank-benefits {
    padding: var(--space-3xl);
  }

  .thank-benefits h3 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .thank-hero-section {
    padding: 8rem var(--space-md);
    min-height: 75vh;
  }

  .thank-hero-section h1 {
    font-size: 3.5rem;
  }

  .thank-lead {
    font-size: 1.75rem;
  }

  .thank-subtitle {
    font-size: 1.125rem;
  }

  .thank-next-section {
    padding: 8rem var(--space-md);
  }

  .thank-next-section h2 {
    font-size: 3rem;
  }

  .thank-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .thank-step {
    padding: var(--space-3xl);
  }

  .thank-step h3 {
    font-size: 1.375rem;
  }

  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
  }

  .thank-benefits {
    padding: var(--space-4xl);
  }

  .thank-benefits h3 {
    font-size: 1.875rem;
  }

  .thank-benefits-list li {
    gap: var(--space-lg);
  }

  .btn {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
  }
}

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

/* 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: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #3b82f6;
    --color-secondary: #10b981;
    --color-secondary-dark: #059669;
    --color-accent: #f59e0b;
    --color-bg-light: #ffffff;
    --color-bg-light-gray: #f8f9fa;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #0a0e27;
    --color-text-dark: #0f172a;
    --color-text-medium: #475569;
    --color-text-light: #ffffff;
    --color-text-light-gray: #e2e8f0;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-border: #e2e8f0;
    --color-border-dark: #334155;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;
    --icon-sm: 1.25rem;
    --icon-md: 2rem;
    --icon-lg: 3rem;
    --icon-xl: 4rem;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
  }

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

  body {
    font-family: var(--font-body);
    line-height: 1.6;
  }

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

  /* Error Hero Section */
  .error-hero-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    position: relative;
  }

  .error-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
  }

  .error-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
  }

  .error-illustration {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark);
    animation: floatError 3s ease-in-out infinite;
  }

  @keyframes floatError {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  .error-code {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    letter-spacing: -2px;
  }

  .error-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .decoration-item {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
  }

  .decoration-1 {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
    animation: rotate1 8s linear infinite;
  }

  .decoration-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    left: -30px;
    animation: rotate2 10s linear infinite reverse;
  }

  .decoration-3 {
    width: 30px;
    height: 30px;
    top: 50%;
    right: -40px;
    animation: rotate3 6s linear infinite;
  }

  @keyframes rotate1 {
    from { transform: rotate(0deg) translateX(60px) rotate(-0deg); }
    to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
  }

  @keyframes rotate2 {
    from { transform: rotate(0deg) translateX(50px) rotate(-0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
  }

  @keyframes rotate3 {
    from { transform: rotate(0deg) translateX(70px) rotate(-0deg); }
    to { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
  }

  .error-text {
    text-align: center;
    max-width: 600px;
  }

  .error-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-weight: 700;
  }

  .error-description {
    font-size: 1.125rem;
    color: var(--color-text-light-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
  }

  .error-subtitle {
    font-size: 1rem;
    color: var(--color-primary-light);
    font-weight: 500;
  }

  /* Error Help Section */
  .error-help-section {
    background-color: var(--color-bg-light);
    padding: var(--space-4xl) 0;
    overflow: hidden;
  }

  .error-help-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
  }

  .help-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    text-align: center;
    font-weight: 700;
  }

  .help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
  }

  .help-card {
    background-color: var(--color-bg-light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
  }

  .help-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .help-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: var(--icon-lg);
    color: var(--color-text-light);
  }

  .help-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 600;
  }

  .help-card p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .error-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
  }

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

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

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

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

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

  /* Responsive Design */
  @media (max-width: 768px) {
    .error-hero-section {
      padding: var(--space-2xl) 0;
    }

    .error-hero-content {
      gap: var(--space-2xl);
    }

    .error-illustration {
      max-width: 220px;
      height: 220px;
    }

    .error-circle {
      width: 160px;
      height: 160px;
    }

    .error-code {
      font-size: 3.5rem;
    }

    .error-title {
      font-size: 1.75rem;
    }

    .error-description {
      font-size: 1rem;
    }

    .error-help-section {
      padding: var(--space-3xl) 0;
    }

    .help-title {
      font-size: 1.5rem;
    }

    .help-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }

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

    .btn {
      padding: var(--space-md) var(--space-xl);
      font-size: 0.95rem;
    }
  }

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

    .error-hero-section {
      padding: var(--space-2xl) 0;
    }

    .error-illustration {
      max-width: 180px;
      height: 180px;
    }

    .error-circle {
      width: 140px;
      height: 140px;
    }

    .error-code {
      font-size: 2.75rem;
    }

    .error-title {
      font-size: 1.5rem;
      margin-bottom: var(--space-md);
    }

    .error-description {
      font-size: 0.9rem;
      margin-bottom: var(--space-md);
    }

    .error-subtitle {
      font-size: 0.85rem;
    }

    .help-title {
      font-size: 1.25rem;
    }

    .help-card h3 {
      font-size: 1.1rem;
    }

    .help-card p {
      font-size: 0.85rem;
    }

    .btn {
      padding: var(--space-md) var(--space-lg);
      font-size: 0.85rem;
      width: 100%;
    }

    .decoration-1,
    .decoration-2,
    .decoration-3 {
      display: none;
    }
  }

  #phone{
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
    background-color: var(--color-bg-light-gray);
    
  }