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

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-accent: #059669;
  --color-accent-light: #d1fae5;
  --color-bg-dark: #0f172a;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-light: #f1f5f9;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  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-md);
}

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

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

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

h1 {
  font-size: var(--text-4xl);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-6xl);
  }
}

h2 {
  font-size: var(--text-3xl);
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: var(--text-5xl);
  }
}

h3 {
  font-size: var(--text-2xl);
}

@media (min-width: 768px) {
  h3 {
    font-size: var(--text-3xl);
  }
}

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

@media (min-width: 768px) {
  h4 {
    font-size: var(--text-2xl);
  }
}

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

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

p {
  line-height: 1.8;
  font-weight: var(--font-weight-regular);
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.icon-sm {
  font-size: 1rem;
}

.icon-md {
  font-size: 1.5rem;
}

.icon-lg {
  font-size: 2rem;
}

.icon-xl {
  font-size: 3rem;
}

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

/* Grid & Flex Utilities */
.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.card-title {
  color: var(--color-text-dark);
}

.card-description {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .card-description {
    font-size: var(--text-base);
  }
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

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

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

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

.slide-down {
  animation: slideDown var(--transition-slow);
}
/* Header Component Styling */
  .header {
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    position: static;
    width: 100%;
    z-index: 100;
  }

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

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

  /* Logo Styling */
  .header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    letter-spacing: -0.5px;
    transition: transform var(--transition-base);
  }

  .header-logo:hover {
    transform: translateY(-2px);
  }

  .logo-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .logo-accent {
    color: var(--color-accent);
    font-size: 1.75rem;
    line-height: 1;
  }

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

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

  /* Desktop Navigation */
  .header-nav {
    display: none;
    flex-direction: row;
    gap: var(--space-md);
    align-items: center;
    flex: 1;
    margin: 0 var(--space-lg);
  }

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

  .header-nav-item {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }

  @media (min-width: 1024px) {
    .header-nav-item {
      font-size: var(--text-base);
    }
  }

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

  /* Desktop Contact Button */
  .header-contact-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
  }

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

  @media (min-width: 768px) {
    .header-contact-btn {
      padding: 0.875rem 1.75rem;
      font-size: var(--text-base);
    }
  }

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

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

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

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

  .toggle-line {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all var(--transition-base);
    display: block;
  }

  .header-mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .header-mobile-toggle[aria-expanded="true"] .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

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

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

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

  .header-mobile-menu .header-nav-item {
    padding: var(--space-md) var(--space-md);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-base);
    border-bottom-color: transparent;
  }

  .header-mobile-menu .header-nav-item:hover {
    background-color: var(--color-bg-light);
    border-bottom-color: transparent;
  }

  .header-mobile-contact {
    display: block;
    margin: var(--space-sm);
    border: none;
  }

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

    /* Main Page Styles */
  .main-page {
    background-color: var(--color-bg-white);
    overflow-x: hidden;
  }

  /* ============================================
     HERO SECTION
     ============================================ */
  .page .hero-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2a4a 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

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

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

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

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

  .page .hero-text {
    flex: 1;
    z-index: 1;
  }

  .page .hero-section h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  @media (min-width: 768px) {
    .page .hero-section h1 {
      margin-bottom: 1.5rem;
    }
  }

  .page .hero-subtitle {
    color: #d1d5db;
    font-size: var(--text-lg);
    margin-bottom: 2rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .page .hero-subtitle {
      font-size: var(--text-xl);
      margin-bottom: 2.5rem;
    }
  }

  .page .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .page .hero-ctas {
      flex-direction: row;
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
  }

  .page .hero-ctas .btn {
    justify-content: center;
  }

  @media (min-width: 768px) {
    .page .hero-ctas .btn {
      justify-content: flex-start;
    }
  }

  .page .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .page .hero-stats {
      gap: 2rem;
    }
  }

  .page .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .page .stat-number {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .page .stat-number {
      font-size: var(--text-3xl);
    }
  }

  .page .stat-label {
    color: #9ca3af;
    font-size: var(--text-sm);
  }

  .page .hero-image {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

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

  /* ============================================
     FEATURED POSTS SECTION
     ============================================ */
  .page .featured-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .page .featured-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .page .featured-header {
    text-align: center;
  }

  .page .featured-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
  }

  .page .featured-header p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

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

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

  .page .featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .page .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }

  .page .featured-card:hover .featured-image img {
    transform: scale(1.05);
  }

  .page .featured-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .page .featured-card-content {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .page .featured-card h3 {
    color: var(--color-text-dark);
    font-size: var(--text-xl);
  }

  @media (min-width: 768px) {
    .page .featured-card h3 {
      font-size: var(--text-2xl);
    }
  }

  .page .featured-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .page .featured-card p {
      font-size: var(--text-base);
    }
  }

  .page .card-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
  }

  .page .card-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
  }

  .page .featured-footer {
    text-align: center;
  }

  .page .featured-footer .btn {
    display: inline-flex;
  }

  /* ============================================
     BENEFITS SECTION
     ============================================ */
  .page .benefits-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .page .benefits-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .page .benefits-header {
    text-align: center;
  }

  .page .benefits-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
  }

  .page .benefits-header p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .page .benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
  }

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

  .page .benefit-card:hover {
    background-color: var(--color-primary-light);
    transform: translateX(4px);
  }

  .page .benefit-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .page .benefit-icon {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }
  }

  .page .benefit-card h3 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
  }

  @media (min-width: 768px) {
    .page .benefit-card h3 {
      font-size: var(--text-xl);
    }
  }

  .page .benefit-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .page .benefit-card p {
      font-size: var(--text-base);
    }
  }

  /* ============================================
     PROCESS SECTION
     ============================================ */
  .page .process-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .page .process-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .page .process-header {
    text-align: center;
  }

  .page .process-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
  }

  .page .process-header p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .page .step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-top: 4px solid var(--color-primary);
  }

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

  .page .step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .page .step-number {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: 50%;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .page .step-number {
      width: 3.5rem;
      height: 3.5rem;
      min-width: 3.5rem;
      font-size: var(--text-2xl);
    }
  }

  .page .step-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .page .step-body h3 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
  }

  @media (min-width: 768px) {
    .page .step-body h3 {
      font-size: var(--text-xl);
    }
  }

  .page .step-body p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  @media (min-width: 768px) {
    .page .step-body p {
      font-size: var(--text-base);
    }
  }

  /* ============================================
     STREAMS SECTION
     ============================================ */
  .page .streams-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .page .streams-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .page .streams-header {
    text-align: center;
  }

  .page .streams-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
  }

  .page .streams-header p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .page .stream-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
  }

  @media (min-width: 768px) {
    .page .stream-item {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

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

  .page .stream-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .page .stream-icon {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }
  }

  .page .stream-item h3 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
  }

  @media (min-width: 768px) {
    .page .stream-item h3 {
      font-size: var(--text-xl);
    }
  }

  .page .stream-item p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  @media (min-width: 768px) {
    .page .stream-item p {
      font-size: var(--text-base);
    }
  }

  /* ============================================
     STATS SECTION
     ============================================ */
  .page .stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #065f46 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  .page .stats-header {
    text-align: center;
  }

  .page .stats-header h2 {
    color: var(--color-bg-white);
    margin-bottom: 1rem;
  }

  .page .stats-header p {
    color: #cbd5e1;
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .page .stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all var(--transition-base);
  }

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

  .page .stat-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }

  .page .stat-value {
    color: #fbbf24;
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .page .stat-value {
      font-size: var(--text-5xl);
    }
  }

  .page .stat-description {
    color: #e2e8f0;
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .page .stat-description {
      font-size: var(--text-base);
    }
  }

  /* ============================================
     CTA SECTION
     ============================================ */
  .page .cta-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  .page .cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
  }

  @media (min-width: 768px) {
    .page .cta-box {
      padding: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .page .cta-box {
      padding: 4rem;
    }
  }

  .page .cta-box h2 {
    color: var(--color-bg-white);
    margin-bottom: 1rem;
  }

  .page .cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--text-lg);
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .page .cta-box p {
      margin-bottom: 2.5rem;
    }
  }

  .page .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .page .cta-buttons {
      flex-direction: row;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 2rem;
    }
  }

  .page .cta-buttons .btn {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
  }

  .page .cta-buttons .btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
  }

  .page .cta-buttons .btn-outline-light {
    background-color: transparent;
    border-color: var(--color-bg-white);
    color: var(--color-bg-white);
  }

  .page .cta-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-bg-white);
  }

  .page .cta-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
  }

  /* ============================================
     CONTACT SECTION
     ============================================ */
  .page .contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

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

  .page .contact-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
  }

  .page .contact-header p {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

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

  .page .contact-benefit {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .page .contact-benefit {
      flex-direction: row;
      gap: 1rem;
    }
  }

  .page .contact-benefit i {
    color: var(--color-accent);
    font-size: var(--text-xl);
    flex-shrink: 0;
  }

  .page .contact-benefit h4 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
  }

  .page .contact-benefit p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  @media (min-width: 768px) {
    .page .contact-benefit p {
      font-size: var(--text-base);
    }
  }

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

  @media (min-width: 768px) {
    .page .contact-form {
      gap: 1.75rem;
    }
  }

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

  .page .form-group label {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
  }

  @media (min-width: 768px) {
    .page .form-group label {
      font-size: var(--text-base);
    }
  }

  .page .form-group input,
  .page .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    transition: all var(--transition-base);
  }

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

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

  .page .form-privacy {
    color: var(--color-text-muted);
    font-size: var(--text-xs);
  }

  @media (min-width: 768px) {
    .page .form-privacy {
      font-size: var(--text-sm);
    }
  }

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

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

  .page .form-submit {
    align-self: flex-start;
  }

  /* ============================================
     COOKIE BANNER
     ============================================ */
  .page .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
  }

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

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

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

  .page .cookie-text p {
    font-size: var(--text-sm);
    color: #cbd5e1;
  }

  @media (min-width: 768px) {
    .page .cookie-text p {
      font-size: var(--text-base);
    }
  }

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

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

  .page .btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: var(--text-sm);
  }

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

  /* ============================================
     UTILITY CLASSES
     ============================================ */
  .page .btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
  }

  .page .btn-secondary:hover {
    background-color: #047857;
  }

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

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

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

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

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

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

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

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

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

  .footer-content {
    display: block;
  }

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

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

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

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

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 540px;
  }

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

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

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

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

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

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

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

  .footer-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

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

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

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

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

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
  }

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

  .footer-legal-link:hover {
    color: var(--color-accent);
    padding-left: 0.25rem;
  }

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

  /* Copyright Section */
  .footer-copyright {
    padding-top: 2rem;
  }

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

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
  }

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

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

/* Category Page Styles */
/* Category Slug: income-growth-strategies */
/* CSS Isolation for Income Growth Strategies Category */

/* ===== HERO SECTION ===== */
.category-page-income-growth-strategies .category-hero-income-growth-strategies {
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

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

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

@media (min-width: 768px) {
  .category-page-income-growth-strategies .hero-content-income-growth-strategies {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .hero-content-income-growth-strategies {
    gap: 4rem;
  }
}

.category-page-income-growth-strategies .hero-text-income-growth-strategies h1 {
  color: var(--color-bg-white);
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .hero-text-income-growth-strategies h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .hero-text-income-growth-strategies h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
  }
}

.category-page-income-growth-strategies .hero-text-income-growth-strategies p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .hero-text-income-growth-strategies p {
    font-size: 1.05rem;
  }
}

.category-page-income-growth-strategies .hero-visual-income-growth-strategies {
  display: none;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .hero-visual-income-growth-strategies {
    display: block;
  }
}

.category-page-income-growth-strategies .hero-image-income-growth-strategies {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== POSTS GRID SECTION ===== */
.category-page-income-growth-strategies .posts-grid-section-income-growth-strategies {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .posts-grid-section-income-growth-strategies {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .posts-grid-section-income-growth-strategies {
    padding: 6rem 0;
  }
}

.category-page-income-growth-strategies .posts-grid-income-growth-strategies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

/* ===== CARD STYLING ===== */
.category-page-income-growth-strategies .card-income-growth-strategies {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  padding: 0;
}

.category-page-income-growth-strategies .card-income-growth-strategies:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.category-page-income-growth-strategies .card-income-growth-strategies img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-page-income-growth-strategies .card-income-growth-strategies h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  padding: 1.5rem 1.5rem 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .card-income-growth-strategies h3 {
    font-size: 1.5rem;
    padding: 1.75rem 1.75rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .card-income-growth-strategies h3 {
    font-size: 1.625rem;
    padding: 2rem 2rem 0;
  }
}

.category-page-income-growth-strategies .card-income-growth-strategies p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  padding: 1rem 1.5rem 0;
  flex-grow: 1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .card-income-growth-strategies p {
    font-size: 0.9375rem;
    padding: 1.125rem 1.75rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .card-income-growth-strategies p {
    font-size: 1rem;
    padding: 1.25rem 2rem 0;
  }
}

.category-page-income-growth-strategies .card-income-growth-strategies .btn {
  margin: 1.25rem 1.5rem 1.5rem;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .card-income-growth-strategies .btn {
    margin: 1.5rem 1.75rem;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .card-income-growth-strategies .btn {
    margin: 1.75rem 2rem 2rem;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

/* ===== ADDITIONAL SECTION 1: STRATEGIES ===== */
.category-page-income-growth-strategies .additional-section-one-income-growth-strategies {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .additional-section-one-income-growth-strategies {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .additional-section-one-income-growth-strategies {
    padding: 6rem 0;
  }
}

.category-page-income-growth-strategies .additional-content-one-income-growth-strategies h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .additional-content-one-income-growth-strategies h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .additional-content-one-income-growth-strategies h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.category-page-income-growth-strategies .strategies-list-income-growth-strategies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.category-page-income-growth-strategies .strategy-item-income-growth-strategies {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-page-income-growth-strategies .strategy-icon-income-growth-strategies {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .strategy-icon-income-growth-strategies {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

.category-page-income-growth-strategies .strategy-text-income-growth-strategies h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .strategy-text-income-growth-strategies h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .strategy-text-income-growth-strategies h3 {
    font-size: 1.375rem;
  }
}

.category-page-income-growth-strategies .strategy-text-income-growth-strategies p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .strategy-text-income-growth-strategies p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .strategy-text-income-growth-strategies p {
    font-size: 1rem;
  }
}

/* ===== ADDITIONAL SECTION 2: INSIGHTS ===== */
.category-page-income-growth-strategies .additional-section-two-income-growth-strategies {
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e8f5 100%);
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .additional-section-two-income-growth-strategies {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .additional-section-two-income-growth-strategies {
    padding: 6rem 0;
  }
}

.category-page-income-growth-strategies .additional-content-two-income-growth-strategies h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .additional-content-two-income-growth-strategies h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .additional-content-two-income-growth-strategies h2 {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.category-page-income-growth-strategies .insights-grid-income-growth-strategies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .insights-grid-income-growth-strategies {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .insights-grid-income-growth-strategies {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.category-page-income-growth-strategies .insight-card-income-growth-strategies {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .insight-card-income-growth-strategies {
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .insight-card-income-growth-strategies {
    padding: 2rem;
  }
}

.category-page-income-growth-strategies .insight-card-income-growth-strategies h3 {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .insight-card-income-growth-strategies h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.category-page-income-growth-strategies .insight-card-income-growth-strategies p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-income-growth-strategies .insight-card-income-growth-strategies p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-income-growth-strategies .insight-card-income-growth-strategies p {
    font-size: 1rem;
  }
}

/* Post Page 1 Styles */
/* ========================================
   Career Advancement Salary Growth Post
   Complete CSS Isolation & Styling
   ======================================== */

/* Breadcrumbs Navigation */
.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs a {
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs span {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-breadcrumbs {
    padding: 1.25rem 0;
  }
}

/* Hero Section */
.post-career-advancement-salary-growth .career-advancement-salary-growth-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-hero {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-hero-content {
  position: relative;
  z-index: 1;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-hero-title {
  color: var(--color-bg-white);
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-hero-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-hero-title {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-lead {
  color: #e0e0e0;
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-lead {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-read-time {
  color: #d1d5db;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-read-time i {
  font-size: 0.875rem;
}

/* Intro Section */
.post-career-advancement-salary-growth .career-advancement-salary-growth-intro {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-intro {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-intro-content {
  max-width: 900px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-section-title {
  color: var(--color-text-dark);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-intro-text {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-intro-text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
  }
}

/* Section 1 - Build Brand */
.post-career-advancement-salary-growth .career-advancement-salary-growth-section-1 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-1 {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-content-1 {
    gap: var(--space-3xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-text-block {
  order: 2;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-text-block {
    order: 1;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-body-text {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-body-text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-list li {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  padding-left: 1.75rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-list li {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-list li strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-bold);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-section-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: 1;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image {
    order: 2;
  }
}

/* Section 2 - Skill Development */
.post-career-advancement-salary-growth .career-advancement-salary-growth-section-2 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-2 {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-content-2 {
  max-width: 900px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-subsection-title {
  color: var(--color-text-dark);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-subsection-title {
    font-size: var(--text-3xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
  }
}

/* Section 3 - Negotiation */
.post-career-advancement-salary-growth .career-advancement-salary-growth-section-3 {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-3 {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-content-3 {
  max-width: 900px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-box {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-title {
  color: var(--color-primary-dark);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-title i {
  font-size: 1.25rem;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-text {
  color: var(--color-primary-dark);
  font-size: var(--text-base);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-highlight-text {
    font-size: var(--text-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  counter-reset: item;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list {
    margin: var(--space-xl) 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list li {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  padding-left: 2.5rem;
  position: relative;
  counter-increment: item;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list li {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-sm);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-numbered-list li strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-bold);
}

/* Section 4 - Promotions */
.post-career-advancement-salary-growth .career-advancement-salary-growth-section-4 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-4 {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-content-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-content-4 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-content-4 {
    gap: var(--space-3xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-section-image-left {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: 1;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image-left {
    order: 0;
  }
}

/* Section 5 - Career Transitions */
.post-career-advancement-salary-growth .career-advancement-salary-growth-section-5 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-5 {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-content-5 {
  max-width: 1000px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-card {
  background-color: var(--color-bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-card {
    padding: var(--space-lg);
    gap: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-title {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-title {
    font-size: var(--text-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-tactic-text {
    font-size: var(--text-base);
  }
}

/* Conclusion Section */
.post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion-content {
  max-width: 900px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion-text {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion-text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-action-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-action-steps {
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-step {
    gap: var(--space-lg);
    padding: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-step-number {
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    font-size: var(--text-xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-step-content {
  flex: 1;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-step-title {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-step-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-step-content p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-step-content p {
    font-size: var(--text-base);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion-final {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-border);
  font-style: italic;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-conclusion-final {
    font-size: var(--text-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
  }
}

/* Related Posts Section */
.post-career-advancement-salary-growth .career-advancement-salary-growth-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related {
    padding: 6rem 0;
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-content {
  max-width: 1200px;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-title {
  color: var(--color-text-dark);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-2xl);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-content {
    padding: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-title {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-description {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-card-description {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-related-link {
    font-size: var(--text-base);
  }
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.post-career-advancement-salary-growth .career-advancement-salary-growth-related-link:hover i {
  transform: translateX(4px);
}

/* Responsive Image Adjustments */
@media (min-width: 768px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image,
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image-left {
    max-height: 450px;
  }
}

@media (min-width: 1024px) {
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image,
  .post-career-advancement-salary-growth .career-advancement-salary-growth-section-image-left {
    max-height: 500px;
  }
}

/* Post Page 2 Styles */
/* ============================================
   POST: Building a Profitable Freelance Career
   Unique Class Isolation with profitable-freelance-career- prefix
   ============================================ */

.post-profitable-freelance-career {
  background-color: var(--color-bg-white);
}

/* Breadcrumbs Navigation */
.post-profitable-freelance-career .profitable-freelance-career-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-breadcrumbs {
    padding: 1.5rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-profitable-freelance-career .profitable-freelance-career-breadcrumb-link {
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-breadcrumb-link {
    font-size: var(--text-base);
  }
}

.post-profitable-freelance-career .profitable-freelance-career-breadcrumb-link:hover {
  color: var(--color-primary-dark);
}

.post-profitable-freelance-career .profitable-freelance-career-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-breadcrumb-separator {
    font-size: var(--text-base);
  }
}

.post-profitable-freelance-career .profitable-freelance-career-breadcrumb-current {
  color: var(--color-text-dark);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-breadcrumb-current {
    font-size: var(--text-base);
  }
}

/* Hero Section */
.post-profitable-freelance-career .profitable-freelance-career-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-hero {
    padding: 8rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-hero-content {
    gap: 2rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-hero-title {
    font-size: 3.5rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-lead {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-lead {
    font-size: 1.125rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1rem;
}

.post-profitable-freelance-career .profitable-freelance-career-read-time {
  color: #b0b0b0;
  font-size: var(--text-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-read-time {
    font-size: var(--text-base);
  }
}

/* Why Freelancing Section */
.post-profitable-freelance-career .profitable-freelance-career-why-freelance {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-why-freelance {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-why-freelance {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-why-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-why-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-why-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-why-text {
    gap: 2rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-section-title {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-section-title {
    font-size: 2.5rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-section-intro {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-section-intro {
    font-size: 1.125rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-section-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-section-text {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-benefit-list {
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-benefit-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.post-profitable-freelance-career .profitable-freelance-career-benefit-icon {
  color: var(--color-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.post-profitable-freelance-career .profitable-freelance-career-benefit-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-benefit-text {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-why-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-why-image {
    max-height: 400px;
  }
}

/* Finding Your Niche Section */
.post-profitable-freelance-career .profitable-freelance-career-niche {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-niche {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-niche {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-niche-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-niche-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-niche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-niche-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-niche-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-niche-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

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

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

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-card-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
}

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

.post-profitable-freelance-career .profitable-freelance-career-card-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

/* Pricing Strategy Section */
.post-profitable-freelance-career .profitable-freelance-career-pricing {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-pricing-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-pricing-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing-image {
    max-height: 400px;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-pricing-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing-text {
    gap: 2rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-subsection-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-subsection-title {
    font-size: 1.5rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-numbered-list {
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.post-profitable-freelance-career .profitable-freelance-career-list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-list-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-list-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding-top: 0.25rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-list-text {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-pricing-highlight {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing-highlight {
    padding: 2rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-highlight-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-highlight-text {
    font-size: 1rem;
  }
}

/* Client Management Section */
.post-profitable-freelance-career .profitable-freelance-career-clients {
  background: linear-gradient(135deg, #f8fafc 0%, #ecf0f1 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-clients {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-clients {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-clients-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-clients-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-clients-strategy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-clients-strategy {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-clients-strategy {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-profitable-freelance-career .profitable-freelance-career-strategy-box {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-strategy-box {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-strategy-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-strategy-title {
    font-size: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-strategy-title i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-strategy-title i {
    font-size: 1.75rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-strategy-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-strategy-text {
    font-size: 1rem;
  }
}

/* Marketing Section */
.post-profitable-freelance-career .profitable-freelance-career-marketing {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-marketing {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-marketing {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-marketing-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-marketing-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-marketing-tactics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-marketing-tactics {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-marketing-tactics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-profitable-freelance-career .profitable-freelance-career-tactic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-tactic {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-tactic-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-tactic-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-tactic-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-tactic-title {
    font-size: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-tactic-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-tactic-description {
    font-size: 1rem;
  }
}

/* Systems & Scaling Section */
.post-profitable-freelance-career .profitable-freelance-career-systems {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-systems-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-systems-box {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems-box {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-systems-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems-title {
    font-size: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-systems-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-systems-description {
    font-size: 1rem;
  }
}

/* Conclusion Section */
.post-profitable-freelance-career .profitable-freelance-career-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-conclusion {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-conclusion-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-conclusion-intro {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-conclusion-intro {
    font-size: 1.125rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-key-takeaways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-key-takeaways {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-key-takeaways {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-profitable-freelance-career .profitable-freelance-career-takeaway {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-takeaway {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-takeaway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-takeaway-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-takeaway-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-takeaway-text {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-conclusion-text {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  background-color: var(--color-primary-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-conclusion-text {
    font-size: 1.125rem;
    padding: 2rem;
  }
}

/* Related Posts Section */
.post-profitable-freelance-career .profitable-freelance-career-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-related {
    padding: 6rem 0;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-content {
    gap: 3rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-title {
  color: var(--color-text-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-title {
    font-size: 2.5rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-subtitle {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-subtitle {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-profitable-freelance-career .profitable-freelance-career-related-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.post-profitable-freelance-career .profitable-freelance-career-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-profitable-freelance-career .profitable-freelance-career-related-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-body {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-card-title {
    font-size: 1.25rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-card-description {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

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

.post-profitable-freelance-career .profitable-freelance-career-related-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-profitable-freelance-career .profitable-freelance-career-related-link {
    font-size: 1rem;
  }
}

.post-profitable-freelance-career .profitable-freelance-career-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

/* Responsive adjustments for image placement */
@media (max-width: 1023px) {
  .post-profitable-freelance-career .profitable-freelance-career-pricing-image-side {
    order: -1;
  }
}

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

    /* Breadcrumbs */
    .post-high-demand-skills-training .high-demand-skills-training-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      overflow: hidden;
    }

    .post-high-demand-skills-training .high-demand-skills-training-breadcrumbs .container {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .post-high-demand-skills-training .high-demand-skills-training-breadcrumbs a {
      color: var(--color-primary);
      font-size: var(--text-sm);
      font-weight: var(--font-weight-medium);
      transition: color var(--transition-base);
    }

    .post-high-demand-skills-training .high-demand-skills-training-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-high-demand-skills-training .high-demand-skills-training-breadcrumbs span {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    /* Hero Section */
    .post-high-demand-skills-training .high-demand-skills-training-hero {
      background-color: #1a1f2e;
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero-content {
        gap: 2rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-hero h1 {
      color: #ffffff;
      font-size: 2.25rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-hero-lead {
      color: #cbd5e1;
      font-size: var(--text-base);
      line-height: 1.8;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-hero-lead {
        font-size: var(--text-lg);
      }
    }

    /* Content Sections */
    .post-high-demand-skills-training .high-demand-skills-training-section-1 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-1 {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-1-content {
        gap: 3rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-1 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-1 h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-1 p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-1 p {
        font-size: var(--text-base);
      }
    }

    /* Section 2 */
    .post-high-demand-skills-training .high-demand-skills-training-section-2 {
      background-color: var(--color-primary-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-2 {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-2 h2 {
      color: var(--color-primary-dark);
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-2 h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-2 p {
      color: #1e3a8a;
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-2 p {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-skills-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

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

    .post-high-demand-skills-training .high-demand-skills-training-skill-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-skill-card {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-skill-card h4 {
      color: var(--color-primary-dark);
      font-size: var(--text-lg);
    }

    .post-high-demand-skills-training .high-demand-skills-training-skill-card p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      margin: 0;
    }

    /* Section 3 */
    .post-high-demand-skills-training .high-demand-skills-training-section-3 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3 {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-3-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3-text {
        flex: 1;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-3 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3 h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-3 p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3 p {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-tips-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
    }

    .post-high-demand-skills-training .high-demand-skills-training-tips-list li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-tips-list li {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-tips-list li::before {
      content: '✓';
      color: var(--color-accent);
      font-weight: var(--font-weight-bold);
      font-size: 1.25rem;
      flex-shrink: 0;
      line-height: 1.4;
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-3-image {
      width: 100%;
      max-width: 400px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-3-image {
        max-width: 100%;
        flex: 1;
      }
    }

    /* Section 4 */
    .post-high-demand-skills-training .high-demand-skills-training-section-4 {
      background-color: #f0f9ff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-4 {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-4 h2 {
      color: var(--color-primary-dark);
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-4 h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-4 p {
      color: #1e3a8a;
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-4 p {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-certification-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-certification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-cert-item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-cert-item {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-cert-item h4 {
      color: var(--color-primary);
      font-size: var(--text-lg);
    }

    .post-high-demand-skills-training .high-demand-skills-training-cert-item .cert-duration {
      color: var(--color-accent);
      font-weight: var(--font-weight-medium);
      font-size: var(--text-sm);
    }

    .post-high-demand-skills-training .high-demand-skills-training-cert-item p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      margin: 0;
    }

    /* Section 5 */
    .post-high-demand-skills-training .high-demand-skills-training-section-5 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5 {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-5-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-5-image {
      width: 100%;
      max-width: 400px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5-image {
        max-width: 100%;
        flex: 1;
        order: 2;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-5-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5-text {
        flex: 1;
        order: 1;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-5 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5 h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-section-5 p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-section-5 p {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-strategy-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
    }

    .post-high-demand-skills-training .high-demand-skills-training-strategy-list li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-strategy-list li {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-strategy-list li::before {
      content: '→';
      color: var(--color-primary);
      font-weight: var(--font-weight-bold);
      font-size: 1.25rem;
      flex-shrink: 0;
      line-height: 1.4;
    }

    /* Conclusion Section */
    .post-high-demand-skills-training .high-demand-skills-training-conclusion {
      background: linear-gradient(135deg, #0f172a 0%, #1a1f2e 100%);
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-conclusion {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-high-demand-skills-training .high-demand-skills-training-conclusion h2 {
      color: #ffffff;
      font-size: var(--text-2xl);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-conclusion h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-conclusion p {
      color: #cbd5e1;
      font-size: var(--text-sm);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-conclusion p {
        font-size: var(--text-base);
      }
    }

    /* Related Posts Section */
    .post-high-demand-skills-training .high-demand-skills-training-related {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-related {
        padding: 6rem 0;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-high-demand-skills-training .high-demand-skills-training-related h2 {
      color: var(--color-text-dark);
      font-size: var(--text-2xl);
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related h2 {
        font-size: var(--text-3xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-high-demand-skills-training .high-demand-skills-training-related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      transition: all var(--transition-base);
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related-card-body {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card h3 {
      color: var(--color-text-dark);
      font-size: var(--text-lg);
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related-card h3 {
        font-size: var(--text-xl);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-high-demand-skills-training .high-demand-skills-training-related-card p {
        font-size: var(--text-base);
      }
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card-link {
      color: var(--color-primary);
      font-weight: var(--font-weight-medium);
      font-size: var(--text-sm);
      transition: color var(--transition-base);
    }

    .post-high-demand-skills-training .high-demand-skills-training-related-card-link:hover {
      color: var(--color-primary-dark);
    }

/* Post Page 4 Styles */
/* ============================================
   POST: Creating Passive Income Streams
   Unique prefix isolation: passive-income-opportunities-
   ============================================ */

/* Breadcrumbs Navigation */
.post-passive-income-opportunities .passive-income-opportunities-breadcrumbs {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-breadcrumbs {
    padding: 1.5rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-breadcrumbs-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-breadcrumbs-content {
    font-size: var(--text-base);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.post-passive-income-opportunities .passive-income-opportunities-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-passive-income-opportunities .passive-income-opportunities-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-breadcrumbs span:last-child {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-medium);
}

/* Hero Section */
.post-passive-income-opportunities .passive-income-opportunities-hero {
  background-color: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  background-color: #1a2a4a;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-hero {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-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-passive-income-opportunities .passive-income-opportunities-hero-content {
  position: relative;
  z-index: 1;
}

.post-passive-income-opportunities .passive-income-opportunities-hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-hero h1 {
    font-size: 3.75rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-lead {
  color: #e0e0e0;
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-lead {
    font-size: var(--text-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-meta {
  display: flex;
  gap: var(--space-md);
  color: #b0b0b0;
  font-size: var(--text-sm);
}

.post-passive-income-opportunities .passive-income-opportunities-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Introduction Section */
.post-passive-income-opportunities .passive-income-opportunities-intro {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-intro {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-intro-text h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-intro-text h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-intro-text p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-intro-text p {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-passive-income-opportunities .passive-income-opportunities-benefits-list li {
  color: var(--color-text-dark);
  padding-left: 2rem;
  position: relative;
  font-size: var(--text-base);
}

.post-passive-income-opportunities .passive-income-opportunities-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-intro-content img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Investment Section */
.post-passive-income-opportunities .passive-income-opportunities-investments {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investments {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-investments {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investments-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investments-content h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investments-content > p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investments-content > p {
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investment-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investment-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-investment-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investment-card {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investment-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

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

.post-passive-income-opportunities .passive-income-opportunities-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-investment-card h3 {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
}

.post-passive-income-opportunities .passive-income-opportunities-investment-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investment-card p {
    font-size: var(--text-base);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investment-tip {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-investment-tip {
    padding: 2rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-investment-tip i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-investment-tip > div {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Digital Section */
.post-passive-income-opportunities .passive-income-opportunities-digital {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-digital-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-digital-content img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: -1;
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital-content img {
    order: 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-digital-text h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital-text h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-digital-text > p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-digital-text > p {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-digital-text h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  font-size: var(--text-xl);
}

.post-passive-income-opportunities .passive-income-opportunities-numbered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-numbered-list {
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-numbered-list li {
  color: var(--color-text-dark);
  padding-left: 2rem;
  position: relative;
  font-size: var(--text-base);
  line-height: 1.7;
}

.post-passive-income-opportunities .passive-income-opportunities-numbered-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  background-color: var(--color-primary);
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.875rem;
}

.post-passive-income-opportunities .passive-income-opportunities-numbered-list {
  counter-reset: list-counter;
}

/* Real Estate Section */
.post-passive-income-opportunities .passive-income-opportunities-realestate {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate-content h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-content > p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate-content > p {
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-item {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-realestate-item {
    padding: 2rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-item h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-item p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.post-passive-income-opportunities .passive-income-opportunities-realestate-content > img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

/* Hybrid Section */
.post-passive-income-opportunities .passive-income-opportunities-hybrid {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-hybrid-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid-content h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-hybrid-content > p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid-content > p {
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-hybrid-strategies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid-strategies {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-hybrid-strategies {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-box {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-box {
    padding: 2rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-box h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-box i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-box p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-box p {
    font-size: var(--text-base);
  }
}

/* Strategy Section */
.post-passive-income-opportunities .passive-income-opportunities-strategy {
  background-color: #e8f0f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-content h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-content > p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-content > p {
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-strategy-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-strategy-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-step {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-step {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-passive-income-opportunities .passive-income-opportunities-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-passive-income-opportunities .passive-income-opportunities-step h3 {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
}

.post-passive-income-opportunities .passive-income-opportunities-step p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.post-passive-income-opportunities .passive-income-opportunities-warning {
  background-color: #fef3c7;
  border-left: 4px solid var(--color-warning);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-warning {
    padding: 2rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-warning i {
  color: var(--color-warning);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-passive-income-opportunities .passive-income-opportunities-warning > div {
  color: var(--color-text-dark);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Conclusion Section */
.post-passive-income-opportunities .passive-income-opportunities-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-conclusion {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-conclusion-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-conclusion-content h2 {
    margin-bottom: var(--space-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-conclusion-content p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-conclusion-content p {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-key-takeaways {
  background-color: #f0fdf4;
  border-left: 4px solid var(--color-success);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-key-takeaways {
    padding: 2rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-key-takeaways h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.post-passive-income-opportunities .passive-income-opportunities-key-takeaways ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-key-takeaways ul {
    gap: var(--space-md);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-key-takeaways li {
  color: var(--color-text-dark);
  padding-left: 1.75rem;
  position: relative;
  font-size: var(--text-base);
  line-height: 1.6;
}

.post-passive-income-opportunities .passive-income-opportunities-key-takeaways li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Related Posts Section */
.post-passive-income-opportunities .passive-income-opportunities-related {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-passive-income-opportunities .passive-income-opportunities-related {
    padding: 6rem 0;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-related-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-related-content h2 {
    margin-bottom: var(--space-md);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-related-description {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-related-description {
    font-size: var(--text-base);
    margin-bottom: var(--space-xl);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-passive-income-opportunities .passive-income-opportunities-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.post-passive-income-opportunities .passive-income-opportunities-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.post-passive-income-opportunities .passive-income-opportunities-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-passive-income-opportunities .passive-income-opportunities-related-card:hover .passive-income-opportunities-related-image img {
  transform: scale(1.05);
}

.post-passive-income-opportunities .passive-income-opportunities-related-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-related-info {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-passive-income-opportunities .passive-income-opportunities-related-card h3 {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
  margin: 0;
}

.post-passive-income-opportunities .passive-income-opportunities-related-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-related-card p {
    font-size: var(--text-base);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-read-more {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-passive-income-opportunities .passive-income-opportunities-read-more {
    font-size: var(--text-base);
  }
}

.post-passive-income-opportunities .passive-income-opportunities-related-card:hover .passive-income-opportunities-read-more {
  color: var(--color-primary-dark);
}

/* Post Page 5 Styles */
/* Post Isolation - Side Business Startup Guide */
    .post-side-business-startup-guide {
      width: 100%;
    }

    /* Breadcrumbs Navigation */
    .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs .container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs a {
      color: var(--color-primary);
      font-size: var(--text-sm);
      font-weight: var(--font-weight-medium);
      transition: color var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs a {
        font-size: var(--text-base);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs a:hover {
      color: var(--color-primary-dark);
    }

    .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs span {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-breadcrumbs span {
        font-size: var(--text-base);
      }
    }

    /* Hero Section */
    .post-side-business-startup-guide .side-business-startup-guide-hero {
      background-color: var(--color-bg-dark);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero-content {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero-content {
        gap: 2.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-hero h1 {
      color: var(--color-bg-white);
      font-size: var(--text-4xl);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero h1 {
        font-size: var(--text-5xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero h1 {
        font-size: var(--text-6xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-hero-lead {
      color: #d1d5db;
      font-size: var(--text-base);
      line-height: 1.8;
      font-weight: var(--font-weight-regular);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero-lead {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      color: #9ca3af;
      font-size: var(--text-sm);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-hero-meta {
        flex-direction: row;
        gap: 1.5rem;
        font-size: var(--text-base);
      }
    }

    /* Content Section 1 - Introduction */
    .post-side-business-startup-guide .side-business-startup-guide-section-1 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1 {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1-content {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-1 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1 h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1 h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-1 p {
      color: var(--color-text-muted);
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-1 p {
        font-size: var(--text-lg);
      }
    }

    /* Content Section 2 - Planning & Research */
    .post-side-business-startup-guide .side-business-startup-guide-section-2 {
      background-color: var(--color-primary-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2-content {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2 h2 {
      color: var(--color-primary-dark);
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2 p {
      color: #0c4a6e;
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 p {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2 ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding-left: 0;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 ul {
        gap: 1.25rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2 li {
      color: #0c4a6e;
      font-size: var(--text-base);
      line-height: 1.8;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 li {
        font-size: var(--text-lg);
        gap: 1rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-2 li:before {
      content: "✓";
      color: var(--color-primary);
      font-weight: var(--font-weight-bold);
      flex-shrink: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-2 li:before {
        font-size: 1.5rem;
      }
    }

    /* Content Section 3 - Legal & Tax */
    .post-side-business-startup-guide .side-business-startup-guide-section-3 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3 {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3-content {
        gap: 2.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3-text {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-3xl);
      grid-column: 1 / -1;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3 h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3 h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3 p {
      color: var(--color-text-muted);
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-3 p {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-3-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Content Section 4 - Funding & Resources */
    .post-side-business-startup-guide .side-business-startup-guide-section-4 {
      background-color: #f0fdf4;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4-content {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4 h2 {
      color: #166534;
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4 p {
      color: #3f6741;
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 p {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4 ol {
      list-style: decimal;
      padding-left: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 ol {
        padding-left: 2rem;
        gap: 1.25rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4 li {
      color: #3f6741;
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-4 li {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-4 strong {
      color: #166534;
      font-weight: var(--font-weight-bold);
    }

    /* Content Section 5 - Marketing & Growth */
    .post-side-business-startup-guide .side-business-startup-guide-section-5 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5 {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-5-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5-content {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-5 h2 {
      color: var(--color-text-dark);
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5 h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5 h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-section-5 p {
      color: var(--color-text-muted);
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-section-5 p {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-tips-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-tips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-tips-grid {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-tip-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.25rem;
      background-color: #f3f4f6;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-tip-card {
        gap: 1rem;
        padding: 1.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-tip-card h4 {
      color: var(--color-primary-dark);
      font-size: var(--text-base);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-tip-card h4 {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-tip-card p {
      color: #4b5563;
      font-size: var(--text-sm);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-tip-card p {
        font-size: var(--text-base);
      }
    }

    /* Conclusion Section */
    .post-side-business-startup-guide .side-business-startup-guide-conclusion {
      background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1e3a8a 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion-content {
        gap: 2rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-conclusion h2 {
      color: var(--color-bg-white);
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-conclusion p {
      color: #e0e7ff;
      font-size: var(--text-base);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-conclusion p {
        font-size: var(--text-lg);
      }
    }

    /* Related Posts Section */
    .post-side-business-startup-guide .side-business-startup-guide-related {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-related {
        padding: 6rem 0;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-content {
        gap: 2.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related h2 {
      color: var(--color-text-dark);
      font-size: var(--text-3xl);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related h2 {
        font-size: var(--text-4xl);
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-related h2 {
        font-size: var(--text-5xl);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-card {
        gap: 1.25rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-image {
      width: 100%;
      height: 200px;
      background-color: #e5e7eb;
      overflow: hidden;
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-card-body {
        gap: 1rem;
        padding: 1.25rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-card h3 {
      color: var(--color-text-dark);
      font-size: var(--text-base);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-card h3 {
        font-size: var(--text-lg);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-card p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-card p {
        font-size: var(--text-base);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-size: var(--text-sm);
      font-weight: var(--font-weight-medium);
      text-decoration: none;
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-related-link {
        font-size: var(--text-base);
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-related-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

    /* Cookie Banner */
    .post-side-business-startup-guide .side-business-startup-guide-cookie-banner {
      background-color: #1f2937;
      color: #f3f4f6;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
      border-top: 1px solid #374151;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-cookie-banner {
        padding: 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-text {
      font-size: var(--text-sm);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-cookie-text {
        font-size: var(--text-base);
        flex: 1;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .post-side-business-startup-guide .side-business-startup-guide-cookie-actions {
        justify-content: flex-end;
        flex-wrap: nowrap;
      }
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-accept {
      background-color: var(--color-primary);
      color: var(--color-bg-white);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      cursor: pointer;
      border: none;
      transition: background-color var(--transition-base);
      text-decoration: none;
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-accept:hover {
      background-color: var(--color-primary-dark);
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-decline {
      background-color: transparent;
      color: #9ca3af;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-md);
      border: 1px solid #4b5563;
      font-size: var(--text-sm);
      cursor: pointer;
      transition: all var(--transition-base);
      text-decoration: none;
    }

    .post-side-business-startup-guide .side-business-startup-guide-cookie-decline:hover {
      border-color: #9ca3af;
      color: #e5e7eb;
    }

/* Privacy Page Styles */
/* Privacy Page Styles */
    .privacy-page {
      background-color: var(--color-bg-white);
      overflow: hidden;
    }

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

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

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

    .privacy-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }

    .privacy-hero-content h1 {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-text-light);
      line-height: 1.2;
      margin: 0;
    }

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

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

    .privacy-hero-content .last-updated {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      color: var(--color-text-muted);
      margin: 0;
    }

    @media (min-width: 768px) {
      .privacy-hero-content .last-updated {
        font-size: 1rem;
      }
    }

    /* Content Section */
    .privacy-content-section {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

    .privacy-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .privacy-content-wrapper {
        gap: 4rem;
      }
    }

    @media (min-width: 1024px) {
      .privacy-content-wrapper {
        gap: 5rem;
      }
    }

    .privacy-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .privacy-section h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-primary);
      line-height: 1.3;
      margin: 0;
    }

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

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

    .privacy-section p {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-text-dark);
      line-height: 1.8;
      margin: 0;
    }

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

    .privacy-section ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .privacy-section ul {
        gap: 1rem;
      }
    }

    .privacy-section li {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-text-dark);
      line-height: 1.8;
      padding-left: 1.5rem;
      position: relative;
    }

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

    .privacy-section li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: var(--font-weight-bold);
    }

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

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

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

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

    .privacy-contact-content h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-primary);
      line-height: 1.3;
      margin: 0;
    }

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

    @media (min-width: 1024px) {
      .privacy-contact-content h2 {
        font-size: 2.25rem;
      }
    }

    .privacy-contact-content p {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-text-dark);
      line-height: 1.8;
      margin: 0;
    }

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

    .privacy-contact-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }

    @media (min-width: 768px) {
      .privacy-contact-info {
        gap: 1.5rem;
        margin-top: 1.5rem;
      }
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-item-label {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-primary);
    }

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

    .contact-item-value {
      font-family: var(--font-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-regular);
      color: var(--color-text-dark);
    }

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

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

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

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

    /* Divider */
    .privacy-divider {
      width: 100%;
      height: 1px;
      background-color: var(--color-border);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .privacy-divider {
        margin: 3rem 0;
      }
    }

    @media (min-width: 1024px) {
      .privacy-divider {
        margin: 4rem 0;
      }
    }

/* Thank You Page Styles */
/* ========================================
     THANK YOU PAGE STYLES
     ======================================== */

  /* Hero Section */
  .thank-hero-section {
    background-color: var(--color-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

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

  .thank-icon {
    font-size: 3.5rem;
    color: var(--color-bg-white);
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

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

  .thank-hero-section h1 {
    color: var(--color-bg-white);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: var(--text-5xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: var(--text-6xl);
    }
  }

  .thank-lead {
    color: var(--color-bg-white);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: var(--text-xl);
    }
  }

  .thank-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-subtitle {
      font-size: var(--text-lg);
    }
  }

  /* Next Section */
  .thank-next-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  @media (min-width: 768px) {
    .thank-next-content {
      gap: 3rem;
    }
  }

  .thank-next-section h2 {
    color: var(--color-text-dark);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    text-align: center;
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .thank-next-section h2 {
      font-size: var(--text-4xl);
    }
  }

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

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

  .thank-step {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
  }

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

  .thank-step:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
  }

  .thank-step h3 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-step h3 {
      font-size: var(--text-xl);
    }
  }

  .thank-step p {
    color: var(--color-text-muted);
    font-size: var(--text-base);
    margin: 0;
    line-height: 1.6;
  }

  /* CTA Section */
  .thank-cta-section {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  @media (min-width: 768px) {
    .thank-cta-content {
      gap: 2rem;
    }
  }

  .thank-cta-section h2 {
    color: var(--color-text-light);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .thank-cta-section h2 {
      font-size: var(--text-4xl);
    }
  }

  .thank-cta-section p {
    color: rgba(241, 245, 249, 0.85);
    font-size: var(--text-base);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-cta-section p {
      font-size: var(--text-lg);
    }
  }

  /* Features Section */
  .thank-features-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  @media (min-width: 768px) {
    .thank-features-content {
      gap: 3rem;
    }
  }

  .thank-features-section h2 {
    color: var(--color-text-dark);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    text-align: center;
    font-family: var(--font-display);
  }

  @media (min-width: 768px) {
    .thank-features-section h2 {
      font-size: var(--text-4xl);
    }
  }

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

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

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

  .feature-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
  }

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

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

  .feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .feature-card h3 {
    color: var(--color-text-dark);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    margin: 0;
  }

  @media (min-width: 768px) {
    .feature-card h3 {
      font-size: var(--text-xl);
    }
  }

  .feature-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .feature-card p {
      font-size: var(--text-base);
    }
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    cursor: pointer;
  }

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

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
  }

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

  .btn-primary:active {
    transform: scale(0.98);
  }

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

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

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

  /* Animations */
  @keyframes bounce-in {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

/* 404 Page Styles */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-accent: #059669;
  --color-accent-light: #d1fae5;
  --color-bg-dark: #0f172a;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-light: #f1f5f9;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

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

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

.main {
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

.error-hero-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2847 100%);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.error-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

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

.error-illustration {
  position: relative;
  flex: 0 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

@media (min-width: 768px) {
  .error-illustration {
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .error-illustration {
    min-height: 500px;
  }
}

.illustration-404 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
}

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

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

.digit {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
  animation: pulse-digit 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .digit {
    font-size: 8rem;
  }
}

@media (min-width: 1024px) {
  .digit {
    font-size: 10rem;
  }
}

.digit-1 {
  animation-delay: 0s;
}

.digit-2 {
  animation-delay: 0.5s;
}

@keyframes pulse-digit {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}

.illustration-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

@media (min-width: 768px) {
  .illustration-center {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 1024px) {
  .illustration-center {
    width: 180px;
    height: 180px;
  }
}

.coin-stack {
  display: flex;
  flex-direction: column;
  gap: -10px;
  align-items: center;
  justify-content: center;
}

.coin {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
  box-shadow: var(--shadow-lg), 0 8px 16px rgba(5, 150, 105, 0.4);
  position: relative;
  margin: -8px 0;
  animation: float-coin 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .coin {
    width: 75px;
    height: 75px;
  }
}

@media (min-width: 1024px) {
  .coin {
    width: 90px;
    height: 90px;
  }
}

.coin:nth-child(1) {
  animation-delay: 0s;
  transform: translateY(-20px);
}

.coin:nth-child(2) {
  animation-delay: 0.3s;
  z-index: 2;
}

.coin:nth-child(3) {
  animation-delay: 0.6s;
  transform: translateY(20px);
}

.coin::before {
  content: '₹';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--color-bg-white);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .coin::before {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .coin::before {
    font-size: 2.5rem;
  }
}

@keyframes float-coin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
  font-size: 1.5rem;
  opacity: 0.9;
  box-shadow: var(--shadow-md);
  animation: float-around 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .float-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .float-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

.icon-1 {
  top: 10%;
  left: 5%;
  background-color: var(--color-warning);
  animation-delay: 0s;
}

.icon-2 {
  top: 15%;
  right: 10%;
  background-color: var(--color-success);
  animation-delay: 1.5s;
}

.icon-3 {
  bottom: 20%;
  left: 15%;
  background-color: var(--color-accent);
  animation-delay: 3s;
}

.icon-4 {
  bottom: 15%;
  right: 5%;
  background-color: var(--color-primary);
  animation-delay: 4.5s;
}

@keyframes float-around {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(0, -30px);
  }
  75% {
    transform: translate(-20px, -20px);
  }
}

.error-content {
  flex: 0 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .error-content {
    gap: 2.5rem;
  }
}

.error-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-white);
  line-height: 1.2;
}

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

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

.error-subtitle {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 500px;
}

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

@media (min-width: 1024px) {
  .error-subtitle {
    font-size: 1.125rem;
  }
}

.error-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .error-suggestions {
    gap: 1rem;
  }
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

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

.suggestion-item i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .suggestion-item i {
    font-size: 1.125rem;
  }
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .error-actions {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

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

@media (min-width: 1024px) {
  .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
  }
}

/* ============================================
   ERROR ALTERNATIVES SECTION
   ============================================ */

.error-alternatives-section {
  background-color: var(--color-bg-light);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

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

@media (min-width: 768px) {
  .error-alternatives-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-alternatives-content {
    gap: 3rem;
  }
}

.error-alternatives-section h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.2;
}

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

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

.section-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

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

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

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

.alternative-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
}

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

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

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.75rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .card-icon {
    width: 80px;
    height: 80px;
    font-size: 2.25rem;
  }
}

.alternative-card h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
}

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

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

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

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

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

/* ============================================
   ERROR HELP SECTION
   ============================================ */

.error-help-section {
  background-color: var(--color-bg-white);
  overflow: hidden;
  padding: 3rem 0;
}

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

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

.error-help-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .error-help-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-help-content {
    gap: 3rem;
  }
}

.error-help-section h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.2;
}

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

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

.error-help-section > .container > .error-help-content > p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .error-help-section > .container > .error-help-content > p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .error-help-section > .container > .error-help-content > p {
    font-size: 1.125rem;
  }
}

.help-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
}

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

@media (min-width: 1024px) {
  .help-features {
    gap: 2.5rem;
  }
}

.help-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

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

@media (min-width: 1024px) {
  .help-feature {
    gap: 2.5rem;
  }
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg-white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

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

@media (min-width: 1024px) {
  .feature-number {
    min-width: 70px;
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .feature-text h4 {
    font-size: 1.25rem;
  }
}

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

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

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

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .digit,
  .coin,
  .float-icon,
  .btn {
    animation: none;
    transition: none;
  }
}

@media (max-width: 319px) {
  .error-title {
    font-size: 1.75rem;
  }
  
  .digit {
    font-size: 4rem;
  }
  
  .btn {
    font-size: 0.75rem;
    padding: 0.625rem 1.25rem;
  }
}